-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathindex.test.jsx
301 lines (239 loc) · 8.11 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
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>'
);
});
function NullProps({ size = 'md' }) {
return <div>{size.toUpperCase()}</div>;
}
registerElement(NullProps, 'x-null-props', ['size'], { shadow: true });
// #50
it('remove attributes without crashing', () => {
const el = document.createElement('x-null-props');
assert.doesNotThrow(() => (el.size = 'foo'));
root.appendChild(el);
assert.doesNotThrow(() => el.removeAttribute('size'));
});
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 });
registerElement(DisplayTheme, 'x-display-theme-no-shadow', [], {
shadow: false,
});
function Parent({ children, theme = 'dark' }) {
return (
<Theme.Provider value={theme}>
<div class="children">{children}</div>
</Theme.Provider>
);
}
registerElement(Parent, 'x-parent', ['theme'], { shadow: true });
registerElement(Parent, 'x-parent-no-shadow', ['theme'], { shadow: false });
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>');
});
it('passes context over custom element boundaries (no shadow)', async () => {
const el = document.createElement('x-parent-no-shadow');
const noSlot = document.createElement('x-display-theme-no-shadow');
el.appendChild(noSlot);
root.appendChild(el);
assert.equal(
root.innerHTML,
'<x-parent-no-shadow><div class="children"><x-display-theme-no-shadow><p>Active theme: dark</p></x-display-theme-no-shadow></div></x-parent-no-shadow>'
);
const getDisplayThemeHTML = () =>
document.querySelector('x-display-theme-no-shadow').innerHTML;
assert.equal(getDisplayThemeHTML(), '<p>Active theme: dark</p>');
// Trigger context update
act(() => {
el.setAttribute('theme', 'sunny');
});
assert.equal(getDisplayThemeHTML(), '<p>Active theme: sunny</p>');
});
function NoShadow({ children }) {
return <div class="children">{children}</div>;
}
registerElement(NoShadow, 'x-no-shadow-parent', [], { shadow: false });
registerElement(NoShadow, 'x-no-shadow-children', [], { shadow: false });
it('correctly draws children without shadow', async () => {
const el = document.createElement('x-no-shadow-parent');
const elementChildren = document.createElement('x-no-shadow-children');
const spanChildren = document.createElement('span');
spanChildren.innerHTML = 'hello world';
elementChildren.appendChild(spanChildren);
el.appendChild(elementChildren);
root.appendChild(el);
assert.equal(
root.innerHTML,
'<x-no-shadow-parent><div class="children"><x-no-shadow-children><div class="children"><span>hello world</span></div></x-no-shadow-children></div></x-no-shadow-parent>'
);
});
});