@@ -21,8 +21,6 @@ export class CustomElementManifestViewer extends LitElement {
21
21
22
22
@state ( ) propertyKnobs ?: Record < string , unknown > = { } ;
23
23
24
- @state ( ) cssPropertiesKnobs ?: Record < string , unknown > = { } ;
25
-
26
24
@state ( ) slotKnobs : Record < string , Record < string , string > > = { } ;
27
25
28
26
@state ( ) selectedSlots : Record < string , string > = { } ;
@@ -37,8 +35,17 @@ export class CustomElementManifestViewer extends LitElement {
37
35
38
36
private renderSlots ( ) {
39
37
let content = Object . keys ( this . slotKnobs ) . length > 0 ? '\n' : '' ;
40
- Object . entries ( this . slotKnobs ) ?. forEach ( ( [ key , value ] ) => {
41
- content += ` ${ Object . values ( value ) . includes ( this . selectedSlots [ key ] ) ? this . selectedSlots [ key ] : Object . values ( value ) [ 0 ] } \n` ;
38
+ Object . entries ( this . slotKnobs ) ?. forEach ( ( [ key ] ) => {
39
+ if ( ! this . selectedSlots [ key ] ) {
40
+ this . selectedSlots [ key ] = Object . values ( this . slotKnobs [ key ] ) [ 0 ] ;
41
+ }
42
+
43
+ let slotContent = this . selectedSlots [ key ] ;
44
+
45
+ if ( key === 'default' ) {
46
+ slotContent = slotContent . replace ( ` slot="${ key } "` , '' ) ;
47
+ }
48
+ content += ` ${ slotContent } \n` ;
42
49
} ) ;
43
50
return content ;
44
51
}
@@ -61,6 +68,27 @@ export class CustomElementManifestViewer extends LitElement {
61
68
}
62
69
}
63
70
71
+ private setSlotKnobs ( ) {
72
+ const slot = this . querySelectorAll < HTMLSlotElement > ( `[slot]` ) ;
73
+ this . slotKnobs = produce ( this . slotKnobs , ( draft ) => {
74
+ slot . forEach ( ( slot ) => {
75
+ if ( slot . getAttribute ( 'data-knob-type' ) === 'slot' ) {
76
+ const slotCategory = slot . getAttribute ( 'slot' ) ;
77
+ const slotName = slot . getAttribute ( 'title' ) ;
78
+ if ( draft && slotName && slotCategory ) {
79
+ if ( ! draft [ slotCategory ] ) {
80
+ draft [ slotCategory ] = { } ;
81
+ }
82
+ draft [ slotCategory ] [ slotName ] = slot . outerHTML . replace (
83
+ / \s ( d a t a - k n o b - t y p e | t i t l e | s t y l e ) = " [ ^ " ] * " / g,
84
+ '' ,
85
+ ) ;
86
+ }
87
+ }
88
+ } ) ;
89
+ } ) ;
90
+ }
91
+
64
92
async connectedCallback ( ) {
65
93
super . connectedCallback ( ) ;
66
94
const manifest = await fetchManifest ( this . src ) ;
@@ -80,39 +108,19 @@ export class CustomElementManifestViewer extends LitElement {
80
108
} ,
81
109
) ;
82
110
} ) ;
83
- this . cssPropertiesKnobs = produce ( this . cssPropertiesKnobs , ( draft ) => {
84
- this . customElement ?. cssProperties ?. forEach ( ( member ) => {
85
- if ( draft ) draft [ member . name ] = member . default ;
86
- } ) ;
87
- } ) ;
88
111
}
89
112
90
113
this . highlighter = await getHighlighter ( {
91
114
themes : [ 'github-dark-default' ] ,
92
115
langs : [ 'html' ] ,
93
116
} ) ;
117
+
118
+ this . setSlotKnobs ( ) ;
119
+ this . updateCodeSample ( ) ;
94
120
}
95
121
96
122
updated ( ) {
97
- const slot = this . querySelectorAll < HTMLSlotElement > ( `[slot]` ) ;
98
- this . slotKnobs = produce ( this . slotKnobs , ( draft ) => {
99
- slot . forEach ( ( slot ) => {
100
- if ( slot . getAttribute ( 'data-knob-type' ) === 'slot' ) {
101
- const slotCategory = slot . getAttribute ( 'slot' ) ;
102
- const slotName = slot . getAttribute ( 'title' ) ;
103
- if ( draft && slotName && slotCategory ) {
104
- if ( ! draft [ slotCategory ] ) {
105
- draft [ slotCategory ] = { } ;
106
- }
107
- draft [ slotCategory ] [ slotName ] = slot . outerHTML . replace (
108
- / \s ( d a t a - k n o b - t y p e | t i t l e | s t y l e ) = " [ ^ " ] * " / g,
109
- '' ,
110
- ) ;
111
- }
112
- }
113
- } ) ;
114
- } ) ;
115
-
123
+ this . setSlotKnobs ( ) ;
116
124
this . updateCodeSample ( ) ;
117
125
}
118
126
@@ -171,23 +179,26 @@ export class CustomElementManifestViewer extends LitElement {
171
179
}
172
180
173
181
private renderSlotsKnobs ( ) {
174
- return html `
175
- < b > Slots</ b >
176
- ${ Object . entries ( this . slotKnobs ) . map ( ( [ slot ] ) => {
177
- const type = Object . keys ( this . slotKnobs ?. [ slot ] || { } ) . join ( '|' ) ;
178
- return renderKnob ( {
179
- name : slot ,
180
- type : type ,
181
- // @ts -expect-error
182
- onChange : ( e : Event ) => {
183
- const input = e . target as HTMLInputElement ;
184
- const value = input . value ;
185
- this . handleChangeSlotKnob ( slot , value ) ;
186
- } ,
187
- defaultValue : this . selectedSlots [ slot ] ,
188
- } ) ;
189
- } ) }
190
- ` ;
182
+ if ( Object . keys ( this . slotKnobs ) . length > 0 )
183
+ return html `
184
+ < b > Slots</ b >
185
+ ${ Object . entries ( this . slotKnobs ) . map ( ( [ slot ] ) => {
186
+ const type = Object . keys ( this . slotKnobs ?. [ slot ] || { } ) . join ( '|' ) ;
187
+ return renderKnob ( {
188
+ name : slot ,
189
+ type : type ,
190
+ // @ts -expect-error
191
+ onChange : ( e : Event ) => {
192
+ const input = e . target as HTMLInputElement ;
193
+ const value = input . value ;
194
+ this . handleChangeSlotKnob ( slot , value ) ;
195
+ } ,
196
+ defaultValue : Object . keys ( this . slotKnobs [ slot ] ) [ 0 ] ,
197
+ // defaultValue: Object.values(this.slotKnobs[slot])[0],
198
+ } ) ;
199
+ } ) }
200
+ ` ;
201
+ return nothing ;
191
202
}
192
203
193
204
render ( ) {
0 commit comments