-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
use.js
444 lines (325 loc) · 9.16 KB
/
use.js
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 t from 'tst'
import { use } from '..'
t('use: elements callback', async t => {
let ellog = []
let proplog = []
let container = document.body.appendChild(document.createElement('div'))
use('x', el => {
ellog.push(el.tagName.toLowerCase())
})
container.appendChild(document.createElement('x'))
await Promise.resolve()
t.is(ellog, ['x'], 'simple creation')
container.appendChild(document.createElement('x'))
container.appendChild(document.createElement('x'))
await Promise.resolve()
t.is(ellog, ['x', 'x', 'x'], 'create multiple')
use('x', el => {
proplog.push(1)
})
container.appendChild(document.createElement('x'))
await Promise.resolve()
t.is(ellog, ['x', 'x', 'x', 'x'], 'additional aspect')
t.is(proplog, [1], 'additional aspect')
document.body.removeChild(container)
})
t('use: pre-existing els', async t => {
let log = []
let container = document.body.appendChild(document.createElement('div'))
container.appendChild(document.createElement('x'))
container.appendChild(document.createElement('x'))
use('x', el => {
log.push(el.tagName.toLowerCase())
})
await Promise.resolve()
t.is(log, ['x', 'x'], 'simple creation')
document.body.removeChild(container)
})
t('use: elements async gen', async t => {
let log = []
let container = document.body.appendChild(document.createElement('div'))
;(async () => {
for await (const el of use('x')) {
log.push(el.tagName.toLowerCase())
}
})()
container.appendChild(document.createElement('x'))
await Promise.resolve().then()
t.is(log, ['x'], 'simple creation')
container.appendChild(document.createElement('x'))
container.appendChild(document.createElement('x'))
await Promise.resolve().then().then()
t.is(log, ['x', 'x', 'x'], 'create multiple')
const log2 = []
use('x', el => {
log2.push(1)
})
container.appendChild(document.createElement('x'))
await Promise.resolve().then()
t.is(log, ['x', 'x', 'x', 'x'], 'additional aspect')
t.is(log2, [1], 'additional aspect')
document.body.removeChild(container)
})
t.todo('use: pass props', async t => {
let log = []
let el = document.createElement('div')
use(el, (el, props) => {
log.push(props.x)
}, {x: 1})
t.is(log, [1])
})
t.todo('use: observe selector', async t => {
let log = []
let unuse = use('.x', el => {
log.push(el)
})
let el = document.createElement('a')
el.classList.add('x')
document.body.appendChild(el)
await ''
t.is(log, [el])
document.body.removeChild(el)
await ''
unuse()
})
t.todo('use: returned result replaces the target', async t => {
let container = document.createElement('div')
container.innerHTML = '<div class="foo"></div>'
document.body.appendChild(container)
let unuse = use('.foo', el => {
return [html`<foo/>`, 'bar']
})
let els = await unuse
t.is(container.innerHTML, '<foo></foo>bar')
els.forEach(el => el.remove())
unuse()
})
t.todo('use: aspects, assigned through parent wrapper', async t => {
// some wrappers over same elements can be created in different ways
// but effects must be bound to final elements
let a = document.createElement('a')
let frag = document.createDocumentFragment()
frag.appendChild(a)
let $a1 = $(a)
let $a2 = $([a])
let $a3 = $(frag)
let $a4 = $(frag.childNodes)
let $a5 = $(frag.querySelector('*'))
let log = []
await $a3.use(([ el ]) => {
t.is(el, a)
log.push('a3')
})
t.is(log, ['a3'])
t.is($a1[0], a)
t.is($a2[0], a)
t.is($a3[0], a)
t.is($a4[0], a)
t.is($a5[0], a)
})
t.todo('use: aspects must be called in order', async t => {
let log = []
let a = document.createElement('a')
await $(a).use([() => log.push(1), () => log.push(2), () => log.push(3)])
t.deepEqual(log, [1,2,3])
})
t.todo('use: duplicates are ignored', async t => {
let log = []
await $(document.createElement('a')).use([fn, fn, fn])
function fn () {
log.push(1)
}
t.is(log, [1])
await $(document.createElement('a')).use([fn, fn, fn])
t.is(log, [1, 1])
})
t.todo('use: aspects must not be called multiple times, unless target state changes', async t => {
let log = []
let $a = $`<a/>`
await $a.use(fn)
t.is(log, ['x'])
await $a.use(fn)
t.is(log, ['x'])
await $a.use(fn, fn)
t.is(log, ['x'])
await $a.update()
t.is(log, ['x', 'x'])
function fn(el) {log.push('x')}
})
t.todo('use: same aspect different targets', async t => {
let log = []
function fx(el) {
log.push(el.tagName)
return () => log.push('destroy ' + el.tagName)
}
let $el = $(document.createElement('a')).use(fx)
await $el
t.is($el[0].tagName, log[0])
t.is(log, ['A'])
$el[0].innerHTML = '<span></span>'
await $($el[0].firstChild).use(fx)
t.deepEqual(log, ['A', 'SPAN'])
})
t.todo('use: Same target different aspects', async t => {
let log = []
let a = document.createElement('a')
document.body.appendChild(a)
let afx, bfx
await $('a').use(afx = () => (log.push('a'), () => log.push('de a')))
t.deepEqual(log, ['a'])
await $('a').use(bfx = () => (log.push('b'), () => log.push('de b')))
t.deepEqual(log, ['a', 'b'])
document.body.removeChild(a)
})
t.todo('use: same aspect same target', async t => {
let log = []
let a = document.createElement('a')
document.body.appendChild(a)
let fx = () => (log.push('a'), () => log.push('z'))
await $(a).use(fx)
t.deepEqual(log, ['a'])
await $(a).use(fx)
t.deepEqual(log, ['a'])
await $('a').use(fx)
t.deepEqual(log, ['a'])
document.body.removeChild(a)
})
t.todo('use: subaspects init themselves independent of parent aspects', async t => {
let log = []
let a = document.body.appendChild(document.createElement('a'))
let b = a.appendChild(document.createElement('b'))
let c = b.appendChild(document.createElement('c'))
await $('a').use(el => {
log.push('a')
$('b').use(el => {
log.push('b')
$('c').use(el => {
log.push('c')
return () => log.push('-c')
})
return () => log.push('-b')
})
return () => log.push('-a')
})
t.deepEqual(log, ['a', 'b', 'c'])
$(a).dispose()
t.deepEqual(log, ['a', 'b', 'c', '-c', '-b', '-a'])
document.body.removeChild(a)
})
t.todo('use: generators aspects')
t.todo('use: async aspects')
t.todo('use: promise (suspense)', t => {
$('div', import('url'))
})
t.todo('use: hyperscript case', t => {
$('div', () => {
})
})
t.todo('use: new custom element', t => {
$('custom-element', () => {
})
})
t.todo('use: aspects must be called in order', async t => {
let log = []
let a = {}
await spect(a).use([() => log.push(1), () => log.push(2), () => log.push(3)])
t.deepEqual(log, [1, 2, 3])
})
t.todo('use: duplicates are ignored', async t => {
let log = []
await spect({}).use([fn, fn, fn])
function fn() {
log.push(1)
}
t.is(log, [1])
await spect({}).use([fn, fn, fn])
t.is(log, [1, 1])
})
t.todo('use: aspects must not be called multiple times, unless target state changes', async t => {
let log = []
let $a = spect({})
await $a.use(fn)
t.is(log, ['x'])
await $a.use(fn)
t.is(log, ['x'])
await $a.use([fn, fn])
t.is(log, ['x'])
await $a.update()
t.is(log, ['x', 'x'])
function fn(el) { log.push('x') }
})
t.skip('use: same aspect different targets', t => {
let log = []
function fx([el]) {
log.push(el.tagName)
// return () => log.push('destroy ' + el.tagName)
}
let $el = spect({ tagName: 'A' }).use(fx)
t.is($el.target.tagName, log[0])
t.is(log, ['A'])
$el.target.innerHTML = '<span></span>'
$($el.target.firstChild).use(fx)
t.deepEqual(log, ['A', 'SPAN'])
})
t.todo('use: Same target different aspects', async t => {
let log = []
let a = {}
let afx, bfx
await spect(a).use([afx = () => (log.push('a'), () => log.push('de a'))])
t.deepEqual(log, ['a'])
await spect(a).use([bfx = () => (log.push('b'), () => log.push('de b'))])
t.deepEqual(log, ['a', 'b'])
})
t.todo('use: same aspect same target', async t => {
let log = []
let a = {}
let fx = () => (log.push('a'), () => log.push('z'))
await spect(a).use(fx)
t.deepEqual(log, ['a'])
await spect(a).use(fx)
t.deepEqual(log, ['a'])
await spect(a).use(fx)
t.deepEqual(log, ['a'])
})
t.todo('use: subaspects init themselves independent of parent aspects', async t => {
let log = []
let a = { b: { c: {} } }
let b = a.b
let c = b.c
await spect(a).use(el => {
log.push('a')
spect(b).use(el => {
log.push('b')
spect(c).use(el => {
log.push('c')
// return () => log.push('-c')
})
// return () => log.push('-b')
})
// return () => log.push('-a')
})
t.deepEqual(log, ['a', 'b', 'c'])
// $.destroy(a)
// t.deepEqual(log, ['a', 'b', 'c', '-c', '-b', '-a'])
})
t.todo('use: generators aspects')
t.todo('use: async aspects', t => {
let a = spect({})
a.use(async function a() {
t.is(a, current.fn)
await Promise.resolve().then()
t.is(a, current.fn)
})
})
t.skip('use: promise', async t => {
let to = new Promise(ok => setTimeout(ok, 100))
to.then()
spect({}).use(to)
})
t.todo('fx: global effect is triggered after current callstack', async t => {
let log = []
spect({}).fx(() => log.push('a'))
t.is(log, [])
await 0
t.is(log, ['a'])
})