-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathindex.test.jsx
388 lines (304 loc) · 9.74 KB
/
index.test.jsx
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
import { assert } from '@open-wc/testing';
import { h, createContext } from 'preact';
import { useContext } from 'preact/hooks';
import { act } from 'preact/test-utils';
import registerElement from './index';
describe('web components', () => {
/** @type {HTMLDivElement} */
let root;
beforeEach(() => {
root = document.createElement('div');
document.body.appendChild(root);
});
afterEach(() => {
document.body.removeChild(root);
});
function Clock({ time }) {
return <span>{time}</span>;
}
registerElement(Clock, 'x-clock', ['time', 'custom-date']);
it('renders ok, updates on attr change', () => {
const el = document.createElement('x-clock');
el.setAttribute('time', '10:28:57 PM');
root.appendChild(el);
assert.equal(
root.innerHTML,
'<x-clock time="10:28:57 PM"><span>10:28:57 PM</span></x-clock>'
);
el.setAttribute('time', '11:01:10 AM');
assert.equal(
root.innerHTML,
'<x-clock time="11:01:10 AM"><span>11:01:10 AM</span></x-clock>'
);
});
describe('DOM properties', () => {
it('passes property changes to props', () => {
const el = document.createElement('x-clock');
el.time = '10:28:57 PM';
assert.equal(el.time, '10:28:57 PM');
root.appendChild(el);
assert.equal(
root.innerHTML,
'<x-clock time="10:28:57 PM"><span>10:28:57 PM</span></x-clock>'
);
el.time = '11:01:10 AM';
assert.equal(el.time, '11:01:10 AM');
assert.equal(
root.innerHTML,
'<x-clock time="11:01:10 AM"><span>11:01:10 AM</span></x-clock>'
);
});
function DummyButton({ onClick, text = 'click' }) {
return <button onClick={onClick}>{text}</button>;
}
registerElement(DummyButton, 'x-dummy-button', ['onClick', 'text']);
it('passes simple properties changes to props', () => {
const el = document.createElement('x-dummy-button');
el.text = 'foo';
assert.equal(el.text, 'foo');
root.appendChild(el);
assert.equal(
root.innerHTML,
'<x-dummy-button text="foo"><button>foo</button></x-dummy-button>'
);
// Update
el.text = 'bar';
assert.equal(
root.innerHTML,
'<x-dummy-button text="bar"><button>bar</button></x-dummy-button>'
);
});
it('passes complex properties changes to props', () => {
const el = document.createElement('x-dummy-button');
let clicks = 0;
const onClick = () => clicks++;
el.onClick = onClick;
assert.equal(el.onClick, onClick);
root.appendChild(el);
assert.equal(
root.innerHTML,
'<x-dummy-button><button>click</button></x-dummy-button>'
);
act(() => {
el.querySelector('button').click();
});
assert.equal(clicks, 1);
// Update
let other = 0;
el.onClick = () => other++;
act(() => {
el.querySelector('button').click();
});
assert.equal(other, 1);
});
});
function Foo({ text, children }) {
return (
<span class="wrapper">
<div class="children">{children}</div>
<div class="slotted">{text}</div>
</span>
);
}
registerElement(Foo, 'x-foo', [], { shadow: true });
it('renders slots as props with shadow DOM', () => {
const el = document.createElement('x-foo');
// <span slot="text">here is a slot</span>
const slot = document.createElement('span');
slot.textContent = 'here is a slot';
slot.slot = 'text';
el.appendChild(slot);
// <div>no slot</div>
const noSlot = document.createElement('div');
noSlot.textContent = 'no slot';
el.appendChild(noSlot);
el.appendChild(slot);
root.appendChild(el);
assert.equal(
root.innerHTML,
'<x-foo><div>no slot</div><span slot="text">here is a slot</span></x-foo>'
);
const shadowHTML = document.querySelector('x-foo').shadowRoot.innerHTML;
assert.equal(
shadowHTML,
'<span class="wrapper"><div class="children"><slot><div>no slot</div></slot></div><div class="slotted"><slot name="text"><span>here is a slot</span></slot></div></span>'
);
});
const kebabName = 'custom-date-long-name';
const camelName = 'customDateLongName';
const lowerName = camelName.toLowerCase();
function PropNameTransform(props) {
return (
<span>
{props[kebabName]} {props[lowerName]} {props[camelName]}
</span>
);
}
registerElement(PropNameTransform, 'x-prop-name-transform', [
kebabName,
camelName,
]);
it('handles kebab-case attributes with passthrough', () => {
const el = document.createElement('x-prop-name-transform');
el.setAttribute(kebabName, '11/11/2011');
el.setAttribute(camelName, 'pretended to be camel');
root.appendChild(el);
assert.equal(
root.innerHTML,
`<x-prop-name-transform ${kebabName}="11/11/2011" ${lowerName}="pretended to be camel"><span>11/11/2011 pretended to be camel 11/11/2011</span></x-prop-name-transform>`
);
el.setAttribute(kebabName, '01/01/2001');
assert.equal(
root.innerHTML,
`<x-prop-name-transform ${kebabName}="01/01/2001" ${lowerName}="pretended to be camel"><span>01/01/2001 pretended to be camel 01/01/2001</span></x-prop-name-transform>`
);
});
const Theme = createContext('light');
function DisplayTheme() {
const theme = useContext(Theme);
return <p>Active theme: {theme}</p>;
}
registerElement(DisplayTheme, 'x-display-theme', [], { shadow: true });
function Parent({ children, theme = 'dark' }) {
return (
<Theme.Provider value={theme}>
<div class="children">{children}</div>
</Theme.Provider>
);
}
registerElement(Parent, 'x-parent', ['theme'], { shadow: true });
it('passes context over custom element boundaries', async () => {
const el = document.createElement('x-parent');
const noSlot = document.createElement('x-display-theme');
el.appendChild(noSlot);
root.appendChild(el);
assert.equal(
root.innerHTML,
'<x-parent><x-display-theme></x-display-theme></x-parent>'
);
const getShadowHTML = () =>
document.querySelector('x-display-theme').shadowRoot.innerHTML;
assert.equal(getShadowHTML(), '<p>Active theme: dark</p>');
// Trigger context update
act(() => {
el.setAttribute('theme', 'sunny');
});
assert.equal(getShadowHTML(), '<p>Active theme: sunny</p>');
});
function Thing() {
return <span>Hello world!</span>;
}
const styleElem = document.createElement('style');
styleElem.innerHTML = 'span { color: red; }';
document.head.appendChild(styleElem);
registerElement(Thing, 'x-thing', undefined, {
shadow: true,
injectGlobalStyles: true,
});
describe('Global style injections from document.head', () => {
it('injects style-tags', () => {
const el = document.createElement('x-thing');
root.appendChild(el);
assert.equal(
document.querySelector('x-thing').shadowRoot.innerHTML,
'<span>Hello world!</span><style>span { color: red; }</style>'
);
const computedStyle = window
.getComputedStyle(
document.querySelector('x-thing').shadowRoot.querySelector('span'),
null
)
.getPropertyValue('color');
assert.equal(computedStyle, 'rgb(255, 0, 0)');
// assert.equal(
// root.innerHTML,
// '<x-thing><span>Hello world!</span></x-thing>'
// );
styleElem.parentElement.removeChild(styleElem);
});
it('injects link-tags of rel="stylesheet"', async () => {
const blob = new Blob([], { type: 'text/css' });
let linkElementLoaded;
let deferred;
let promise = new Promise((resolve) => {
deferred = resolve;
});
const linkElem = document.createElement('link');
linkElem.rel = 'stylesheet';
linkElem.href = window.URL.createObjectURL(blob);
linkElem.onload = () => {
linkElementLoaded = true;
deferred();
};
document.head.appendChild(linkElem);
const el = document.createElement('x-thing');
root.appendChild(el);
assert.equal(
document.querySelector('x-thing').shadowRoot.innerHTML,
`<span>Hello world!</span><link rel="stylesheet" href="${linkElem.href}">`
);
await promise;
assert.isTrue(linkElementLoaded);
linkElem.parentElement.removeChild(linkElem);
});
it('injects link-tags of rel="preload"', async () => {
const blob = new Blob([], { type: 'text/css' });
let linkElementLoaded;
let deferred;
let promise = new Promise((resolve) => {
deferred = resolve;
});
const linkElem = document.createElement('link');
linkElem.rel = 'preload';
linkElem.as = 'style';
linkElem.href = window.URL.createObjectURL(blob);
linkElem.onload = () => {
linkElementLoaded = true;
deferred();
};
document.head.appendChild(linkElem);
const el = document.createElement('x-thing');
root.appendChild(el);
assert.equal(
document.querySelector('x-thing').shadowRoot.innerHTML,
`<span>Hello world!</span><link rel="preload" as="style" href="${linkElem.href}">`
);
await promise;
assert.isTrue(linkElementLoaded);
linkElem.parentElement.removeChild(linkElem);
});
it('injects style-tags that is added after custom element is loaded', async () => {
const el = document.createElement('x-thing');
root.appendChild(el);
assert.equal(
document.querySelector('x-thing').shadowRoot.innerHTML,
'<span>Hello world!</span>'
);
const computedStyle = window
.getComputedStyle(
document.querySelector('x-thing').shadowRoot.querySelector('span'),
null
)
.getPropertyValue('color');
assert.equal(computedStyle, 'rgb(0, 0, 0)');
const styleElem = document.createElement('style');
styleElem.innerHTML = 'span { color: red; }';
// wait for the element to be added
await new Promise((resolve) => {
new MutationObserver((mutations, observer) => {
resolve();
observer.disconnect();
}).observe(document.querySelector('x-thing').shadowRoot, {
childList: true,
subtree: true,
});
document.head.appendChild(styleElem);
});
assert.equal(
document.querySelector('x-thing').shadowRoot.innerHTML,
'<span>Hello world!</span><style>span { color: red; }</style>'
);
styleElem.parentElement.removeChild(styleElem);
});
});
});