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

Commit 4f45c59

Browse files
committed
feat(storybook): setup storybook for styled components
1 parent d9f2fa0 commit 4f45c59

File tree

4 files changed

+43
-13
lines changed

4 files changed

+43
-13
lines changed

.storybook/config.js

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
import { configure } from '@storybook/vue';
1+
import { configure, addDecorator } from '@storybook/vue';
2+
import ThemeProvider from '../src/components/ThemeProvider'
3+
import theme from '../src/lib/theme'
4+
5+
addDecorator(() => ({
6+
template: `
7+
<ThemeProvider :theme="theme" color-mode="light">
8+
<story/>
9+
</ThemeProvider>
10+
`,
11+
data() {
12+
return {
13+
theme
14+
}
15+
},
16+
components: { ThemeProvider }
17+
}));
218

319
// automatically import all files ending in *.stories.js
420
configure(require.context('../stories', true, /\.stories\.js$/), module);

src/App.vue

+2-12
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,9 @@
1616
background-color="blue.200"
1717
color="blue.700"
1818
>
19-
This is the new box component
19+
This is box component
2020
</Box>
21-
<Box
22-
@click="increment"
23-
w="auto"
24-
background-color="indigo.700"
25-
shadow="md"
26-
px="4"
27-
py="4"
28-
rounded="lg"
29-
d="flex"
30-
color="indigo.100"
31-
>
21+
<Box>
3222
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Debitis incidunt dolor impedit facilis doloribus accusamus aspernatur autem amet voluptate aliquid asperiores, repellendus tempora reiciendis. Aliquid sunt quasi rem magnam, voluptate cumque libero necessitatibus ut minima numquam fugiat? Blanditiis unde earum sint labore quidem quod adipisci quae incidunt dolorum rerum, laboriosam ipsa consectetur, laborum dolore porro quaerat debitis iusto qui pariatur dicta! Quo ab exercitationem possimus, facere vero perferendis quam illum expedita dolores qui tenetur voluptatem sequi eos reprehenderit ut excepturi, ratione nostrum dolor officia labore quis? Dolor, beatae! Eaque autem vero libero. Veritatis placeat blanditiis error, deleniti autem ab quaerat?
3323
</Box>
3424
</theme-provider>

stories/1-Box.stories.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { storiesOf } from '@storybook/vue'
2+
import centered from '@storybook/addon-centered/vue'
3+
import Box from '../src/components/Box'
4+
5+
storiesOf('UI | Box', module)
6+
.addDecorator(centered)
7+
.add('Base Box', () => ({
8+
components: { Box },
9+
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>
23+
`
24+
}))
File renamed without changes.

0 commit comments

Comments
 (0)