Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 238ad37

Browse files
committed
feat(button): added storybook for button
1 parent d71582e commit 238ad37

File tree

6 files changed

+114
-24
lines changed

6 files changed

+114
-24
lines changed

src/App.vue

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
align-items="center"
1010
bg="gray.50"
1111
>
12-
<Button @click="alert" mx="3" disabled variant-color="green">Solid</Button>
13-
<Button variant="outline" mx="3" variant-color="green">Outlined</Button>
14-
<Button variant="ghost" mx="3" variant-color="green">Ghost</Button>
15-
<Button variant="flat" mx="3" variant-color="green">Flat</Button>
16-
<Button variant="link" mx="3" variant-color="green">Link</Button>
12+
<Button mx="3" variant-color="blue">Solid</Button>
13+
<Button variant="outline" mx="3" variant-color="blue">Outlined</Button>
14+
<Button variant="ghost" mx="3" variant-color="blue">Ghost</Button>
15+
<Button variant="flat" mx="3" variant-color="blue">Flat</Button>
16+
<Button variant="link" mx="3" variant-color="blue">Link</Button>
1717
</Box>
1818
</theme-provider>
1919
</template>

src/components/Box/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ const clamp = props => {
3636
}
3737

3838
const decorate = props => {
39-
console.log({ textDecoration: props.textDecoration, textDecor: props.textDecor })
4039
if (props.textDecoration || props.textDecor) {
4140
return {
4241
'text-decoration': `${props.textDecoration || props.textDecor}`
@@ -70,7 +69,6 @@ const Box = styled('div', {
7069
...baseProps
7170
})`
7271
${props => {
73-
console.log(props)
7472
const sanitizedProps = cleanProps(props)
7573
return system(sanitizedProps)
7674
}}

src/components/Button/button.styles.js

+43-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,47 @@ const baseStyles = {
1313
outline: 'none'
1414
}
1515

16+
/**
17+
* @description Determine whether button should ripple
18+
* @param {Object} props - Props object
19+
* @returns {Object} Ripple styles object
20+
*/
21+
const ripple = (props) => {
22+
console.log(props)
23+
if (props.ripple) {
24+
return {
25+
position: 'relative',
26+
overflow: 'hidden',
27+
transform: 'translate3d(0, 0, 0)',
28+
_after: {
29+
content: '',
30+
display: 'block',
31+
position: 'absolute',
32+
width: '100%',
33+
height: '100%',
34+
top: '0',
35+
left: '0',
36+
pointerEvents: 'none',
37+
backgroundImage: 'radial-gradient(circle, rgb(255, 255, 255) 10%, transparent 10.01%)',
38+
backgroundRepeat: 'no-repeat',
39+
backgroundPosition: '50%',
40+
transform: 'scale(10, 10)',
41+
opacity: '0',
42+
transition: 'transform .5s, opacity 1s'
43+
},
44+
_active: {
45+
_after: {
46+
transform: 'scale(0, 0)',
47+
opacity: '.2',
48+
transition: '0s'
49+
}
50+
}
51+
}
52+
} else {
53+
return {}
54+
}
55+
}
56+
1657
/**
1758
* Size values
1859
*/
@@ -223,7 +264,8 @@ const createButtonStyles = (props) => {
223264
...baseStyles,
224265
...focusStyles,
225266
...sizeProps(props),
226-
...getVariantStyles(props)
267+
...getVariantStyles(props),
268+
...ripple(props)
227269
}
228270
}
229271

src/components/Button/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default {
6868
default: false
6969
},
7070
ripple: {
71-
type: Boolean,
71+
type: [String, Boolean],
7272
default: true
7373
},
7474
...styleProps
@@ -78,6 +78,7 @@ export default {
7878
color: this.variantColor || this.cast,
7979
variant: this.variant,
8080
theme: this.$theme,
81+
ripple: this.ripple,
8182
colorMode: this.$colorMode,
8283
size: this.size || 'md'
8384
})

stories/1-Box.stories.js

+16-13
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,21 @@ storiesOf('UI | Box', module)
77
.add('Box', () => ({
88
components: { Box },
99
template: `
10-
<Box
11-
:w="['auto']"
12-
px="5"
13-
py="5"
14-
shadow="lg"
15-
my="5"
16-
mb="5"
17-
rounded="sm"
18-
background-color="blue.200"
19-
color="blue.700"
20-
>
21-
This is box component
22-
</Box>
10+
<div>
11+
<Box
12+
:w="['auto']"
13+
px="5"
14+
py="5"
15+
shadow="lg"
16+
my="5"
17+
mb="5"
18+
rounded="sm"
19+
font-family="body"
20+
background-color="blue.200"
21+
color="blue.700"
22+
>
23+
This is box component
24+
</Box>
25+
</div>
2326
`
2427
}))

stories/3-Button.stories.js

+48-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ import Button from '../src/components/Button'
55

66
storiesOf('UI | Button', module)
77
.addDecorator(centered)
8-
.add('Primary', () => ({
8+
.add('Unstyled', () => ({
9+
components: { Button },
10+
template: `
11+
<div>
12+
<Button @click="action">Solid</Button>
13+
<Button variant="outline" @click="action">Outlined</Button>
14+
<Button variant="ghost" @click="action">Ghost</Button>
15+
<Button variant="flat" @click="action">Flat</Button>
16+
<Button variant="link" @click="action">Link</Button>
17+
</div>
18+
`,
19+
methods: { action: action('Button Clicked') }
20+
}))
21+
.add('Variant Colors | Blue', () => ({
922
components: { Button },
1023
template: `
1124
<div>
@@ -16,5 +29,38 @@ storiesOf('UI | Button', module)
1629
<Button variant="link" variant-color="blue" @click="action">Link</Button>
1730
</div>
1831
`,
19-
methods: { action: action('clicked') }
32+
methods: { action: action('Button Clicked') }
33+
}))
34+
.add('Sizes', () => ({
35+
components: { Button },
36+
template: `
37+
<div>
38+
<Button @click="action" variant-color="blue" size="lg">Large</Button>
39+
<Button variant-color="blue" size="md" @click="action">Medium</Button>
40+
<Button variant-color="blue" size="sm" @click="action">Small</Button>
41+
</div>
42+
`,
43+
methods: { action: action('Button Clicked') }
44+
}))
45+
.add('Rounded', () => ({
46+
components: { Button },
47+
template: `
48+
<div>
49+
<Button @click="action" rounded="none" variant-color="indigo">No rounded</Button>
50+
<Button @click="action" rounded="sm" variant-color="indigo">Small rounded</Button>
51+
<Button @click="action" rounded="md" variant-color="indigo">Medium rounded</Button>
52+
<Button @click="action" rounded="lg" variant-color="indigo">Large rounded</Button>
53+
<Button @click="action" rounded="full" variant-color="indigo">Full rounded</Button>
54+
</div>
55+
`,
56+
methods: { action: action('Button Clicked') }
57+
}))
58+
.add('Ripple', () => ({
59+
components: { Button },
60+
template: `
61+
<div>
62+
<Button @click="action" ripple variant-color="orange">No rounded</Button>
63+
</div>
64+
`,
65+
methods: { action: action('Button Clicked') }
2066
}))

0 commit comments

Comments
 (0)