Skip to content

Commit 2341529

Browse files
committed
fix: change manifest imports
1 parent b90c1e2 commit 2341529

File tree

3 files changed

+58
-60
lines changed

3 files changed

+58
-60
lines changed

src/custom-element-manifest-viewer/custom-element-manifest-viewer.ts

+56-45
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ export class CustomElementManifestViewer extends LitElement {
2121

2222
@state() propertyKnobs?: Record<string, unknown> = {};
2323

24-
@state() cssPropertiesKnobs?: Record<string, unknown> = {};
25-
2624
@state() slotKnobs: Record<string, Record<string, string>> = {};
2725

2826
@state() selectedSlots: Record<string, string> = {};
@@ -37,8 +35,17 @@ export class CustomElementManifestViewer extends LitElement {
3735

3836
private renderSlots() {
3937
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`;
4249
});
4350
return content;
4451
}
@@ -61,6 +68,27 @@ export class CustomElementManifestViewer extends LitElement {
6168
}
6269
}
6370

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(data-knob-type|title|style)="[^"]*"/g,
84+
'',
85+
);
86+
}
87+
}
88+
});
89+
});
90+
}
91+
6492
async connectedCallback() {
6593
super.connectedCallback();
6694
const manifest = await fetchManifest(this.src);
@@ -80,39 +108,19 @@ export class CustomElementManifestViewer extends LitElement {
80108
},
81109
);
82110
});
83-
this.cssPropertiesKnobs = produce(this.cssPropertiesKnobs, (draft) => {
84-
this.customElement?.cssProperties?.forEach((member) => {
85-
if (draft) draft[member.name] = member.default;
86-
});
87-
});
88111
}
89112

90113
this.highlighter = await getHighlighter({
91114
themes: ['github-dark-default'],
92115
langs: ['html'],
93116
});
117+
118+
this.setSlotKnobs();
119+
this.updateCodeSample();
94120
}
95121

96122
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(data-knob-type|title|style)="[^"]*"/g,
109-
'',
110-
);
111-
}
112-
}
113-
});
114-
});
115-
123+
this.setSlotKnobs();
116124
this.updateCodeSample();
117125
}
118126

@@ -171,23 +179,26 @@ export class CustomElementManifestViewer extends LitElement {
171179
}
172180

173181
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;
191202
}
192203

193204
render() {

src/custom-element-manifest-viewer/utils.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export function renderKnob({
8181
}
8282
if (type?.includes('|')) {
8383
const options = type?.split('|')?.map((option) => removeQuotes(option));
84+
8485
return html`
8586
<code part="label">${removeBackticks(name)}</code>
8687
<select
@@ -90,10 +91,7 @@ export function renderKnob({
9091
>
9192
${options.map(
9293
(option) =>
93-
html` <option
94-
selected=${option === defaultValue}
95-
value=${option}
96-
>
94+
html` <option ?selected=${option === defaultValue} value=${option}>
9795
<code>${option}</code>
9896
</option>`,
9997
)}

src/utils/utils.ts

-11
This file was deleted.

0 commit comments

Comments
 (0)