-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcode-configurator.ts
More file actions
444 lines (380 loc) · 12.1 KB
/
code-configurator.ts
File metadata and controls
444 lines (380 loc) · 12.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import '@material/mwc-button';
import { highlight, languages } from '@reallyland/esm';
import type { TemplateResult } from 'lit';
import { html, LitElement, nothing } from 'lit';
import { property } from 'lit/decorators.js';
import { unsafeHTML } from 'lit/directives/unsafe-html.js';
import { parts } from './constants.js';
import { contentCopied, contentCopy } from './icons.js';
import { codeConfigurationStyles, prismVscodeStyles } from './styles.js';
import type {
CodeConfiguratorCustomEventPropertyChangeDetail,
PropertyValue,
} from './types.js';
function toFunctionType(type?: string) {
switch (type) {
case 'boolean':
return Boolean;
case 'number':
return Number;
case 'string':
default:
return String;
}
}
function toInputType(type?: string) {
switch (type) {
case 'boolean':
return 'checkbox';
case 'number':
return 'number';
case 'string':
default:
return 'text';
}
}
function toPropertiesAttr(properties: PropertyValue[]) {
const mapped = properties
.reduce<string[]>((p, n) => {
const { name, type = 'string', value } = n;
const fnType = toFunctionType(type);
const val = fnType(value);
if ((type === 'string' && !val) || (type === 'boolean' && !val)) return p;
const attrName = name.toLowerCase();
p.push(type === 'boolean' ? attrName : `${attrName}="${String(val)}"`);
return p;
}, [])
.filter(Boolean)
.join('\n ');
return mapped ? `\n ${mapped}\n` : '';
}
function toCSSProperties(cssProperties: PropertyValue[]) {
return cssProperties
.reduce<string[]>((p, n) => {
const { name, value } = n;
if (!value) return p;
p.push(` ${name}: ${value as string};\n`);
return p;
}, [])
.join('');
}
function renderCode(code: string, grammar: string, language: string) {
return unsafeHTML(highlight(code, languages[grammar], language));
}
export class CodeConfigurator extends LitElement {
public static override styles = [codeConfigurationStyles, prismVscodeStyles];
@property({
type: Array,
converter: {
fromAttribute(value: string): PropertyValue[] {
try {
return JSON.parse(value) as PropertyValue[];
} catch {
return [];
}
},
},
})
public get cssProperties(): PropertyValue[] {
return this._cssProperties;
}
public set cssProperties(properties: PropertyValue[]) {
this._cssProperties = Array.isArray(properties)
? properties
: this._cssProperties;
this.requestUpdate('cssProperties');
}
@property({
type: Array,
converter: {
fromAttribute(value: string): PropertyValue[] {
try {
return JSON.parse(value) as PropertyValue[];
} catch {
return [];
}
},
},
})
public get properties(): PropertyValue[] {
return this._properties;
}
public set properties(properties: PropertyValue[]) {
this._properties = Array.isArray(properties)
? properties
: this._properties;
this.requestUpdate('properties');
}
@property({ type: String })
public customElement?: string;
@property({ type: Boolean })
private _propsCopied = false;
@property({ type: Boolean })
private _cssPropsCopied = false;
private _cssProperties: PropertyValue[] = [];
private copiedDuration = 3e3;
private _properties: PropertyValue[] = [];
private _slottedElements?: HTMLElement[];
private get _slot(): HTMLSlotElement {
return this.shadowRoot?.querySelector<HTMLSlotElement>(
'slot'
) as HTMLSlotElement;
}
protected override updated(): void {
if (this.customElement) {
const slottedElements = this._slottedElements;
if (slottedElements) {
const properties = this._properties;
const cssProperties = this._cssProperties;
properties.forEach((n) => {
slottedElements.forEach((o) => {
Object.assign(o, {
[n.name]: n.value,
});
});
});
cssProperties.forEach((n) => {
slottedElements.forEach((o) => {
o.style.setProperty(n.name, n.value as string);
});
});
} else void this._updateSlotted();
}
}
protected override render(): TemplateResult {
const elName = this.customElement;
const properties = this._properties;
const cssProperties = this._cssProperties;
return html`
<div part=${parts.slot}>
<slot
@slotchange=${this._updateSlotted}
class=slot
></slot>
</div>
<div part=${parts.content}>${
elName
? this._renderProperties(elName, properties, cssProperties)
: nothing
}</div>
`;
}
private async _updateSlotted() {
const slotted = this._slot;
const customElementName = this.customElement;
if (
slotted &&
typeof customElementName === 'string' &&
customElementName.length > 0
) {
const assignedNodes = Array.from(slotted.assignedNodes()).filter(
(n) => n.nodeType === Node.ELEMENT_NODE
) as LitElement[];
const matchedCustomElements = assignedNodes.reduce<LitElement[]>(
(p, n) => {
if (n.localName === customElementName) {
p.push(n);
} else if (n?.querySelectorAll) {
const allCustomElements = Array.from(
n.querySelectorAll<LitElement>(customElementName)
);
p.push(...allCustomElements);
}
return p;
},
[]
);
const hasMatchedCustomElements = matchedCustomElements.length > 0;
this._slottedElements = hasMatchedCustomElements
? matchedCustomElements
: [];
if (hasMatchedCustomElements) {
/**
* Call `.requestUpdate()` on all slotted `LitElement`s then call `.requestUpdate()` of
* this element. This is to fix some of the slotted elements not being updated/ rendered
* correctly.
*/
const elementsUpdateComplete = matchedCustomElements.map((n) =>
n?.updateComplete?.then(() => n?.requestUpdate())
);
await Promise.all(elementsUpdateComplete);
}
this.requestUpdate();
}
}
private _renderProperties(
elName: string,
properties: PropertyValue[],
cssProperties: PropertyValue[]
) {
const propsContent = toPropertiesAttr(properties);
const cssPropsContent = toCSSProperties(cssProperties);
const idPrefix = Math.random().toString(32).slice(-7);
const cssPropertiesId = `cssPropertiesFor${idPrefix}`;
const propertiesId = `propertiesFor${idPrefix}`;
return html`
<div class=all-properties-container part=${parts.allPropertiesConfigurator}>
${
propsContent
? html`<section part=${parts.propertiesConfigurator}>
<h2 class=properties>Properties</h2>
<div class=configurators part=${
parts.configurators
}>${this._renderPropertiesConfigurator(properties)}</div>
</section>`
: nothing
}
${
cssPropsContent
? html`<section part=${parts.cssPropertiesConfigurator}>
<h2 class=css-properties>CSS Properties</h2>
<div class=configurators part=${
parts.configurators
}>${this._renderPropertiesConfigurator(cssProperties, true)}</div>
</section>`
: nothing
}
</div>
<div class=all-code-snippets-container part=${parts.allCodeSnippets}>
${propsContent && cssPropsContent ? html`<h2>Code snippet</h2>` : nothing}
${
propsContent
? html`<section part=${parts.propertiesCodeSnippet}>
<h3 class=properties>Properties</h3>
<div class=code-container>
<mwc-button class=copy-btn for=${propertiesId} aria-label="Copy properties" @click=${
this._copyCode
}>
${this._propsCopied ? contentCopied : contentCopy}
<span class=copy-text>${this._propsCopied ? 'Copied' : 'Copy'}</span>
</mwc-button>
<pre class=language-html id=${propertiesId}>${renderCode(
`<${elName}${propsContent}></${elName}>`,
'html',
'html'
)}</pre>
</div>
</section>`
: nothing
}
${
cssPropsContent
? html`<section part=${parts.cssPropertiesCodeSnippet}>
<h3 class=css-properties>CSS Properties</h3>
<div class=code-container>
<mwc-button class=copy-btn for=${cssPropertiesId} aria-label="Copy CSS properties" @click=${
this._copyCode
}>
${this._cssPropsCopied ? contentCopied : contentCopy}
<span class=copy-text>${this._cssPropsCopied ? 'Copied' : 'Copy'}</span>
</mwc-button>
<pre class=language-css id=${cssPropertiesId}>${renderCode(
`${elName} {\n${cssPropsContent}}`,
'css',
'css'
)}</pre>
</div>
</section>`
: nothing
}
</div>
`;
}
private _renderPropertiesConfigurator(
properties: PropertyValue[],
isCSS = false
) {
const content = properties.map((n) => {
const { name, options, type, value } = n;
const valueStr = value as string;
const elementId = `${options ? 'select' : 'input'}_${type}_${name}`;
const element = options
? html`<select
.value=${valueStr}
@input=${(ev: Event) => this._updateProps(ev, isCSS)}
id=${elementId}
name=${name}
part=${parts.select}
>${options.map(
(o) =>
html`<option value="${o.value}" ?selected="${o.value === value}">${
o.label
}</option>`
)}</select>`
: html`<input
?checked=${type === 'boolean' && Boolean(valueStr)}
@input=${(ev: Event) => this._updateProps(ev, isCSS)}
id=${elementId}
name=${name}
part=${parts.input}
type=${toInputType(type)}
value=${valueStr}
/>`;
return html`<div class=configurator>
<label for=${elementId}>${name}</label>
${element}
</div>`;
});
return content;
}
private _updateProps(ev: Event, isCSS: boolean) {
const currentTarget = ev.currentTarget as
| HTMLInputElement
| HTMLSelectElement;
const propertyName = currentTarget.getAttribute('name') as string;
const properties = isCSS ? this._cssProperties : this._properties;
const val =
currentTarget.tagName === 'INPUT' && currentTarget.type === 'checkbox'
? (currentTarget as HTMLInputElement).checked
: currentTarget.value;
const updatedProperties = properties.map((n) => {
if (n.name === propertyName) {
return { ...n, value: toFunctionType(n.type)(val) };
}
return n;
});
const propName = isCSS ? 'cssProperties' : 'properties';
this[propName] = updatedProperties;
this.requestUpdate(propName);
this.dispatchEvent(
new CustomEvent<CodeConfiguratorCustomEventPropertyChangeDetail>(
'property-changed',
{
bubbles: true,
detail: {
eventFrom: ev.currentTarget as HTMLElement,
isCSS,
propertyName,
propertyValue: toFunctionType(
properties.find((n) => n.name === propertyName)?.type
)(val),
},
composed: true,
}
)
);
}
private _copyCode(ev: Event) {
const currentTarget = ev.currentTarget as HTMLElement;
const attrFor = currentTarget.getAttribute('for');
const copiedProp = attrFor?.startsWith('propertiesFor')
? '_propsCopied'
: '_cssPropsCopied';
if (this[copiedProp]) return;
const copyNode = this.shadowRoot?.querySelector<HTMLElement>(
`#${attrFor}`
) as HTMLElement;
const selection = getSelection();
const range = document.createRange();
selection?.removeAllRanges();
range.selectNodeContents(copyNode);
selection?.addRange(range);
document.execCommand('copy');
selection?.removeAllRanges();
this.dispatchEvent(new CustomEvent('content-copied'));
this[copiedProp] = true;
window.setTimeout(() => {
this[copiedProp] = false;
}, this.copiedDuration);
}
}