1
- import { html , TemplateResult } from ' lit' ;
2
- import ' ./index.js' ;
3
- import { Meta } from ' @storybook/web-components' ;
1
+ import { html , TemplateResult } from " lit" ;
2
+ import " ./index.js" ;
3
+ import { Meta } from " @storybook/web-components" ;
4
4
5
5
import "@tapsioss/web-components/dist/avatar" ;
6
6
import "@tapsioss/web-components/dist/badge" ;
@@ -30,18 +30,21 @@ import "@tapsioss/web-components/dist/toast";
30
30
import "@tapsioss/web-components/dist/tooltip" ;
31
31
import "@tapsioss/web-components/dist/button" ;
32
32
import "@tapsioss/web-components/dist/styles/theme.css" ;
33
+ import { themes } from "./constants" ;
34
+ import type { Theme } from "./types" ;
33
35
34
- const isDev = process . env . NODE_ENV === ' development' ;
36
+ const isDev = process . env . NODE_ENV === " development" ;
35
37
36
- const manifestSource = isDev ? '../sample-custom-elements.json' : '../custom-element-manifest-viewer/sample-custom-elements.json'
38
+ const manifestSource = isDev ? "../sample-custom-elements.json" : "../custom-element-manifest-viewer/sample-custom-elements.json" ;
39
+ const configSource = isDev ? "../custom-elements-config.json" : "../custom-element-manifest-viewer/custom-elements-config.json" ;
37
40
38
41
export default {
39
- title : ' custom-element-manifest-viewer' ,
40
- component : ' custom-element-manifest-viewer' ,
42
+ title : " custom-element-manifest-viewer" ,
43
+ component : " custom-element-manifest-viewer" ,
41
44
argTypes : {
42
- ' tagName' : {
43
- description : ' target tag name' ,
44
- control : { type : ' select' } ,
45
+ " tagName" : {
46
+ description : " target tag name" ,
47
+ control : { type : " select" } ,
45
48
options : [
46
49
"tap-avatar" ,
47
50
"tap-badge" ,
@@ -75,10 +78,15 @@ export default {
75
78
"tap-textarea" ,
76
79
"tap-toast" ,
77
80
"tap-tooltip" ,
78
- "tap-button" ,
81
+ "tap-button"
79
82
]
80
83
} ,
81
- } ,
84
+ "theme" : {
85
+ description : "code preview theme" ,
86
+ control : { type : "select" } ,
87
+ options : themes
88
+ }
89
+ }
82
90
} as Meta ;
83
91
84
92
interface Story < T > {
@@ -89,57 +97,31 @@ interface Story<T> {
89
97
}
90
98
91
99
interface ArgTypes {
92
- src : string ;
100
+ manifest : string ;
93
101
tagName : string ;
102
+ theme : Theme ;
94
103
}
95
104
96
- const Template : Story < ArgTypes > = ( { tagName} ) => html `
97
- < custom-element-manifest-viewer tag-name =${ tagName } src =${ manifestSource } >
105
+ const Template : Story < ArgTypes > = ( { tagName, theme } ) => html `
106
+ < custom-element-manifest-viewer config = ${ configSource } tag-name =${ tagName } .theme= ${ theme } manifest =${ manifestSource } >
98
107
</ custom-element-manifest-viewer >
99
108
` ;
100
109
101
110
export const Default = Template . bind ( { } ) ;
102
111
103
112
Default . args = {
104
- tagName : ' tap-avatar'
113
+ tagName : " tap-avatar"
105
114
} ;
106
115
107
116
// ---
108
117
109
- const Slots : Story < ArgTypes > = ( { tagName} ) => html `
110
- < custom-element-manifest-viewer tag-name ='tap-row ' src =${ manifestSource } >
111
- < template datatype ="slot " title ="checkbox ">
112
- < tap-checkbox slot ="leading "> </ tap-checkbox >
113
- </ template >
114
- < template datatype ="slot " title ="radio ">
115
- < tap-radio slot ="leading "> </ tap-radio >
116
- </ template >
117
- < template datatype ="slot " title ="avatar ">
118
- < tap-avatar slot ="leading " size ="small " image ="https://picsum.photos/100 "> </ tap-avatar >
119
- </ template >
120
- < template datatype ="slot " title ="button ">
121
- < tap-button slot ="trailing "> پرداخت</ tap-button >
122
- </ template >
123
- < template datatype ="slot " title ="badge ">
124
- < tap-badge slot ="trailing " value ="1 " variant ="error " type ="numeral "> </ tap-badge >
125
- </ template >
126
- < template datatype ="slot " title ="icon ">
127
- < tap-icon-default color ="black " slot ="trailing "> </ tap-icon-default >
128
- </ template >
129
- < template datatype ="slot " title ="price ">
130
- < p color ="black " slot ="trailing "> ۱۵۷٬۰۰۰ تومان</ p >
131
- </ template >
132
- < template datatype ="slot " title ="address ">
133
- < p color ="black " slot ="content "> انتخاب آدرس</ p >
134
- </ template >
135
- < template datatype ="slot " title ="text ">
136
- < p color ="black " slot ="content "> متن ساده</ p >
137
- </ template >
118
+ const Slots : Story < ArgTypes > = ( { tagName, theme } ) => html `
119
+ < custom-element-manifest-viewer config =${ configSource } tag-name ='tap-row' .theme=${ theme } manifest=${ manifestSource } >
138
120
</ custom-element-manifest-viewer >
139
-
121
+
140
122
< hr >
141
-
142
- < custom-element-manifest-viewer tag-name ='tap-button ' src =${ manifestSource } >
123
+
124
+ < custom-element-manifest-viewer config = ${ configSource } tag-name ='tap-button' manifest =${ manifestSource } >
143
125
< template datatype ="slot " title ="default ">
144
126
Click!
145
127
</ template >
@@ -149,13 +131,13 @@ const Slots: Story<ArgTypes> = ({ tagName}) => html`
149
131
export const CustomSlots = Slots . bind ( { } ) ;
150
132
151
133
CustomSlots . args = {
152
- tagName : ' tap-avatar'
134
+ tagName : " tap-avatar"
153
135
} ;
154
136
155
137
// ---
156
138
157
- const DefaultTemplate : Story < ArgTypes > = ( { tagName} ) => html `
158
- < custom-element-manifest-viewer tag-name ='tap-avatar ' src =${ manifestSource } >
139
+ const DefaultTemplate : Story < ArgTypes > = ( { tagName, theme } ) => html `
140
+ < custom-element-manifest-viewer config = ${ configSource } tag-name ='tap-avatar' .theme= ${ theme } manifest =${ manifestSource } >
159
141
< template datatype ="prop-default-value " title ="image ">
160
142
https://picsum.photos/200
161
143
</ template >
@@ -165,12 +147,12 @@ const DefaultTemplate: Story<ArgTypes> = ({ tagName}) => html`
165
147
export const DefaultValue = DefaultTemplate . bind ( { } ) ;
166
148
167
149
DefaultValue . args = {
168
- tagName : ' tap-avatar'
150
+ tagName : " tap-avatar"
169
151
} ;
170
152
171
153
// ---
172
154
173
- const Theme : Story < ArgTypes > = ( { tagName} ) => html `
155
+ const Theme : Story < ArgTypes > = ( { tagName, theme } ) => html `
174
156
< style >
175
157
custom-element-manifest-viewer ::part (container ) {
176
158
display : flex;
@@ -203,7 +185,7 @@ const Theme: Story<ArgTypes> = ({ tagName}) => html`
203
185
204
186
custom-element-manifest-viewer ::part (component-preview ) {
205
187
background-color : # fff ;
206
- background-image : linear-gradient (45deg , # eee 25% , transparent 25% , transparent 75% , # eee 75% , # eee ), linear-gradient (45deg , # eee 25% , transparent 25% , transparent 75% , # eee 75% , # eee );
188
+ background-image : linear-gradient (45deg , # eee 25% , transparent 25% , transparent 75% , # eee 75% , # eee ), linear-gradient (45deg , # eee 25% , transparent 25% , transparent 75% , # eee 75% , # eee );
207
189
background-size : 20px 20px ;
208
190
background-position : 0 0 , 10px 10px ;
209
191
color : black;
@@ -240,12 +222,13 @@ const Theme: Story<ArgTypes> = ({ tagName}) => html`
240
222
border-radius : 0 0 8px 8px ;
241
223
}
242
224
</ style >
243
- < custom-element-manifest-viewer tag-name =${ tagName } src =${ manifestSource } >
225
+ < custom-element-manifest-viewer config = ${ configSource } tag-name =${ tagName } .theme= ${ theme } manifest =${ manifestSource } >
244
226
</ custom-element-manifest-viewer >
245
227
` ;
246
228
247
229
export const UsingTheme = Theme . bind ( { } ) ;
248
230
249
231
UsingTheme . args = {
250
- tagName : 'tap-avatar'
232
+ tagName : "tap-avatar" ,
233
+ theme : 'github-dark'
251
234
} ;
0 commit comments