add BaseIcon stories

This commit is contained in:
Alina Beck 2019-11-20 19:19:30 +03:00
parent 03eb32131c
commit 1f3159db47
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,53 @@
import { storiesOf } from '@storybook/vue'
import helpers from '~/storybook/helpers'
import BaseIcon from './BaseIcon.vue'
import { iconNames } from '~/assets/_new/icons'
const wrapperStyles = `
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
`
const iconPresenterStyles = `
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
width: 20%;
max-width: 120px;
height: 120px;
padding: 12px;
margin-right: 20px;
margin-bottom: 20px;
background-color: white;
text-align: center;
`
const iconStyles = `
font-size: 20px;
`
storiesOf('BaseIcon', module)
.addDecorator(helpers.layout)
.add('pure icon', () => ({
components: { BaseIcon },
template: '<base-icon name="tree" />',
}))
.add('all icons', () => ({
components: { BaseIcon },
data() {
return { iconNames }
},
template: `
<div style="${wrapperStyles}">
<div v-for="name in iconNames" :key="name" style="${iconPresenterStyles}">
<base-icon :name="name" style="${iconStyles}" />
{{ name }}
</div>
</div>
`,
}))