@volverjs/ui-vue 0.0.5 → 0.0.6-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ <script setup lang="ts">
2
+ import { VvAvatarProps } from '@/components/VvAvatar'
3
+
4
+ const props = defineProps(VvAvatarProps)
5
+ const { modifiers } = toRefs(props)
6
+
7
+ // bem css classes
8
+ const bemCssClasses = useModifiers('vv-avatar', modifiers)
9
+ </script>
10
+
11
+ <template>
12
+ <span
13
+ :class="bemCssClasses"
14
+ :role="imgSrc ? undefined : 'img'"
15
+ :aria-label="imgSrc ? undefined : 'avatar'"
16
+ >
17
+ <slot name="default">
18
+ <img v-if="imgSrc" :src="imgSrc" alt="avatar" />
19
+ </slot>
20
+ </span>
21
+ </template>
@@ -0,0 +1,9 @@
1
+ import { ModifiersProps } from '@/props'
2
+
3
+ export const VvAvatarProps = {
4
+ ...ModifiersProps,
5
+ /**
6
+ * Image src for avatar
7
+ */
8
+ imgSrc: String,
9
+ }
@@ -0,0 +1,44 @@
1
+ import { VvAvatarProps } from '@/components/VvAvatar'
2
+ import { DefaultSlotArgTypes, ModifiersArgTypes } from '@/stories/argTypes'
3
+
4
+ export const defaultArgs = {
5
+ ...propsToObject(VvAvatarProps),
6
+ imgSrc: 'https://i.pravatar.cc/300',
7
+ }
8
+
9
+ export const argTypes = {
10
+ ...DefaultSlotArgTypes,
11
+ default: {
12
+ description: 'Content slot',
13
+ control: {
14
+ type: 'text',
15
+ },
16
+ table: {
17
+ category: 'Slots',
18
+ type: {
19
+ summary: 'html',
20
+ },
21
+ },
22
+ },
23
+ modifiers: {
24
+ ...ModifiersArgTypes.modifiers,
25
+ options: [
26
+ 'rounded',
27
+ 'square',
28
+ 'bordered',
29
+ 'ring',
30
+ 'circle',
31
+ 'lg',
32
+ 'md',
33
+ ],
34
+ },
35
+ imgSrc: {
36
+ type: {
37
+ summary: 'string',
38
+ },
39
+ control: {
40
+ type: 'text',
41
+ },
42
+ description: 'The image url',
43
+ },
44
+ }
@@ -0,0 +1,40 @@
1
+ import { Meta, Story, Canvas } from '@storybook/addon-docs'
2
+ import VvAvatar from '@/components/VvAvatar/VvAvatar.vue'
3
+ import { defaultArgs, argTypes } from './Avatar.settings'
4
+ import { defaultTest } from './Avatar.test'
5
+
6
+ <Meta
7
+ title="Components/Avatar"
8
+ component={VvAvatar}
9
+ args={defaultArgs}
10
+ argTypes={argTypes}
11
+ />
12
+
13
+ export const Template = (args) => ({
14
+ components: { VvAvatar },
15
+ setup() {
16
+ return { args }
17
+ },
18
+ template: /* html */ `
19
+ <div class="m-md">
20
+ <vv-avatar v-bind="args" data-testId="element">
21
+ <template v-if="args.default">{{ args.default }}</template>
22
+ </vv-avatar>
23
+ </div>`,
24
+ })
25
+
26
+ <Canvas>
27
+ <Story name="Default" play={defaultTest}>
28
+ {Template.bind()}
29
+ </Story>
30
+ </Canvas>
31
+
32
+ <Canvas>
33
+ <Story
34
+ name="Image"
35
+ play={defaultTest}
36
+ args={{ imgSrc: 'https://i.pravatar.cc/300' }}
37
+ >
38
+ {Template.bind({})}
39
+ </Story>
40
+ </Canvas>
@@ -0,0 +1,34 @@
1
+ import type { PlayAttributes } from '@/test/types'
2
+ import { expect } from '@/test/expect'
3
+ import { within } from '@storybook/testing-library'
4
+
5
+ export async function defaultTest({ canvasElement, args }: PlayAttributes) {
6
+ const element = (await within(canvasElement).findByTestId(
7
+ 'element',
8
+ )) as HTMLElement
9
+
10
+ // slot default
11
+ if (!args.default && !args.imgSrc) {
12
+ throw new Error('Default slot or imgSrc is required!')
13
+ }
14
+
15
+ const modifiers =
16
+ !args.modifiers || Array.isArray(args.modifiers)
17
+ ? args.modifiers
18
+ : [args.modifiers]
19
+
20
+ // modifiers
21
+ if (modifiers) {
22
+ for (const modifier of modifiers) {
23
+ expect(element).toHaveClass(`vv-avatar--${modifier}`)
24
+ }
25
+ }
26
+
27
+ // check img tag exist
28
+ if (args.imgSrc && !args.default) {
29
+ expect(element).toHaveImgChild('img')
30
+ }
31
+
32
+ // check accessibility
33
+ await expect(element).toHaveNoViolations()
34
+ }
@@ -0,0 +1,41 @@
1
+ import { Meta, Story, Canvas } from '@storybook/addon-docs'
2
+ import VvAvatar from '@/components/VvAvatar/VvAvatar.vue'
3
+ import VvBadge from '@/components/VvBadge/VvBadge.vue'
4
+ import { defaultArgs, argTypes } from './Avatar.settings'
5
+ import { defaultTest } from './Avatar.test'
6
+
7
+ <Meta
8
+ title="Components/Avatar/Badge"
9
+ component={VvAvatar}
10
+ args={defaultArgs}
11
+ argTypes={argTypes}
12
+ />
13
+
14
+ export const Template = (args) => ({
15
+ components: { VvAvatar, VvBadge },
16
+ setup() {
17
+ return { args }
18
+ },
19
+ template: /* html */ `
20
+ <div class="m-md">
21
+ <vv-avatar v-bind="args" data-testId="element">
22
+ {{ args.default }}
23
+ <sup>
24
+ <vv-badge :modifiers="['danger', 'rounded']">99+</vv-badge>
25
+ </sup>
26
+ </vv-avatar>
27
+ </div>`,
28
+ })
29
+
30
+ <Canvas>
31
+ <Story
32
+ name="Badge"
33
+ play={defaultTest}
34
+ args={{
35
+ default: 'MR',
36
+ modifiers: 'lg',
37
+ }}
38
+ >
39
+ {Template.bind()}
40
+ </Story>
41
+ </Canvas>
@@ -0,0 +1,87 @@
1
+ import { Meta, Story, Canvas } from '@storybook/addon-docs'
2
+ import VvAvatar from '@/components/VvAvatar/VvAvatar.vue'
3
+ import { defaultArgs, argTypes } from './Avatar.settings'
4
+ import { defaultTest } from './Avatar.test'
5
+ import { Template } from './Avatar.stories.mdx'
6
+
7
+ <Meta
8
+ title="Components/Avatar/Modifiers"
9
+ component={VvAvatar}
10
+ args={defaultArgs}
11
+ argTypes={argTypes}
12
+ />
13
+
14
+ <Canvas>
15
+ <Story name="Small" play={defaultTest} args={{ modifiers: '' }}>
16
+ {Template.bind({})}
17
+ </Story>
18
+ </Canvas>
19
+
20
+ <Canvas>
21
+ <Story name="Medium" play={defaultTest} args={{ modifiers: 'md' }}>
22
+ {Template.bind({})}
23
+ </Story>
24
+ </Canvas>
25
+
26
+ <Canvas>
27
+ <Story name="Large" play={defaultTest} args={{ modifiers: 'lg' }}>
28
+ {Template.bind({})}
29
+ </Story>
30
+ </Canvas>
31
+
32
+ <Canvas>
33
+ <Story
34
+ name="Rounded"
35
+ play={defaultTest}
36
+ args={{ modifiers: 'rounded', default: 'MR' }}
37
+ >
38
+ {Template.bind({})}
39
+ </Story>
40
+ </Canvas>
41
+
42
+ <Canvas>
43
+ <Story
44
+ name="Square"
45
+ play={defaultTest}
46
+ args={{ modifiers: ['square', 'md'] }}
47
+ >
48
+ {Template.bind({})}
49
+ </Story>
50
+ </Canvas>
51
+
52
+ <Canvas>
53
+ <Story
54
+ name="Bordered"
55
+ play={defaultTest}
56
+ args={{ modifiers: ['bordered', 'md'], default: 'MR' }}
57
+ >
58
+ {Template.bind({})}
59
+ </Story>
60
+ </Canvas>
61
+
62
+ <Canvas>
63
+ <Story
64
+ name="Ring"
65
+ play={defaultTest}
66
+ args={{ modifiers: ['ring', 'md'], default: 'MR' }}
67
+ >
68
+ {Template.bind({})}
69
+ </Story>
70
+ </Canvas>
71
+
72
+ <Canvas>
73
+ <Story
74
+ name="CustomColors"
75
+ play={defaultTest}
76
+ args={{ modifiers: ['accent', 'md'], default: 'MR' }}
77
+ argTypes={{
78
+ ...argTypes,
79
+ modifiers: {
80
+ ...argTypes.modifiers,
81
+ options: [...argTypes.modifiers.options, 'accent'],
82
+ },
83
+ }}
84
+ >
85
+ {Template.bind({})}
86
+ </Story>
87
+ </Canvas>
@@ -0,0 +1,29 @@
1
+ import { Meta, Story, Canvas } from '@storybook/addon-docs'
2
+ import VvAvatar from '@/components/VvAvatar/VvAvatar.vue'
3
+ import { defaultArgs, argTypes } from './Avatar.settings'
4
+ import { defaultTest } from './Avatar.test'
5
+ import { Template } from './Avatar.stories.mdx'
6
+
7
+ <Meta
8
+ title="Components/Avatar/Slots"
9
+ component={VvAvatar}
10
+ args={defaultArgs}
11
+ argTypes={argTypes}
12
+ />
13
+
14
+ <Canvas>
15
+ <Story
16
+ name="Default"
17
+ play={defaultTest}
18
+ args={{ default: 'MR' }}
19
+ argTypes={{
20
+ default: {
21
+ control: {
22
+ disable: true,
23
+ },
24
+ },
25
+ }}
26
+ >
27
+ {Template.bind({})}
28
+ </Story>
29
+ </Canvas>
@@ -21,6 +21,13 @@ declare global {
21
21
  expected?: HTMLElement,
22
22
  ) => CustomMatcherResult
23
23
  }
24
+ // eslint-disable-next-line
25
+ interface Matchers<R> {
26
+ toHaveImgChild: (
27
+ imgTag: string,
28
+ expected?: HTMLElement,
29
+ ) => CustomMatcherResult
30
+ }
24
31
  }
25
32
  }
26
33
 
@@ -68,6 +75,14 @@ expect.extend({
68
75
  `One of these classes doesn't exist: ${classes.join(', ')}`,
69
76
  }
70
77
  },
78
+ async toHaveImgChild(element: HTMLElement, imgTag: string) {
79
+ const img = element.getElementsByTagName(imgTag)
80
+ return {
81
+ pass: img.length === 1,
82
+ message: () =>
83
+ `${imgTag} not exist!`,
84
+ }
85
+ },
71
86
  })
72
87
 
73
88
  export { expect }