๐Ÿ“ฆ leonardomso / 33-js-concepts

๐Ÿ“„ mutation-observer.dom.test.js ยท 666 lines
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666/**
 * @vitest-environment jsdom
 */
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest'

// ============================================================
// MUTATIONOBSERVER TESTS
// From mutation-observer.mdx
// ============================================================

describe('MutationObserver', () => {
  let container
  let observer

  beforeEach(() => {
    container = document.createElement('div')
    container.id = 'test-container'
    document.body.appendChild(container)
  })

  afterEach(() => {
    if (observer) {
      observer.disconnect()
      observer = null
    }
    document.body.innerHTML = ''
    vi.restoreAllMocks()
  })

  // ============================================================
  // CREATING A MUTATIONOBSERVER
  // From mutation-observer.mdx lines 75-120
  // ============================================================

  describe('Creating a MutationObserver', () => {
    // From lines 75-85: Basic observer creation
    it('should create observer with callback', () => {
      const callback = vi.fn()
      observer = new MutationObserver(callback)
      
      expect(observer).toBeInstanceOf(MutationObserver)
    })

    // From lines 90-98: Observer receives mutations array
    it('should call callback with mutations array when changes occur', async () => {
      const mutations = []
      
      observer = new MutationObserver((mutationList) => {
        mutations.push(...mutationList)
      })
      
      observer.observe(container, { childList: true })
      
      container.appendChild(document.createElement('span'))
      
      // Wait for microtask
      await Promise.resolve()
      
      expect(mutations.length).toBe(1)
      expect(mutations[0].type).toBe('childList')
    })

    // From lines 100-115: Processing mutation types
    it('should report correct mutation type for childList changes', async () => {
      let mutationType = null
      
      observer = new MutationObserver((mutations) => {
        mutationType = mutations[0].type
      })
      
      observer.observe(container, { childList: true })
      container.appendChild(document.createElement('div'))
      
      await Promise.resolve()
      
      expect(mutationType).toBe('childList')
    })

    it('should report correct mutation type for attribute changes', async () => {
      let mutationType = null
      let attributeName = null
      
      observer = new MutationObserver((mutations) => {
        mutationType = mutations[0].type
        attributeName = mutations[0].attributeName
      })
      
      observer.observe(container, { attributes: true })
      container.setAttribute('data-test', 'value')
      
      await Promise.resolve()
      
      expect(mutationType).toBe('attributes')
      expect(attributeName).toBe('data-test')
    })
  })

  // ============================================================
  // CONFIGURATION OPTIONS
  // From mutation-observer.mdx lines 130-220
  // ============================================================

  describe('Configuration Options', () => {
    // From lines 140-155: childList option
    describe('childList option', () => {
      it('should detect added nodes', async () => {
        const addedNodes = []
        
        observer = new MutationObserver((mutations) => {
          for (const mutation of mutations) {
            addedNodes.push(...mutation.addedNodes)
          }
        })
        
        observer.observe(container, { childList: true })
        
        const newElement = document.createElement('span')
        container.appendChild(newElement)
        
        await Promise.resolve()
        
        expect(addedNodes).toContain(newElement)
      })

      it('should detect removed nodes', async () => {
        const child = document.createElement('span')
        container.appendChild(child)
        
        const removedNodes = []
        
        observer = new MutationObserver((mutations) => {
          for (const mutation of mutations) {
            removedNodes.push(...mutation.removedNodes)
          }
        })
        
        observer.observe(container, { childList: true })
        container.removeChild(child)
        
        await Promise.resolve()
        
        expect(removedNodes).toContain(child)
      })

      it('should detect innerHTML changes', async () => {
        let mutationCount = 0
        
        observer = new MutationObserver((mutations) => {
          mutationCount = mutations.length
        })
        
        observer.observe(container, { childList: true })
        container.innerHTML = '<p>New content</p>'
        
        await Promise.resolve()
        
        expect(mutationCount).toBeGreaterThan(0)
      })
    })

    // From lines 160-180: attributes option
    describe('attributes option', () => {
      it('should detect setAttribute changes', async () => {
        let changedAttribute = null
        
        observer = new MutationObserver((mutations) => {
          changedAttribute = mutations[0].attributeName
        })
        
        observer.observe(container, { attributes: true })
        container.setAttribute('data-active', 'true')
        
        await Promise.resolve()
        
        expect(changedAttribute).toBe('data-active')
      })

      it('should detect classList changes', async () => {
        let changedAttribute = null
        
        observer = new MutationObserver((mutations) => {
          changedAttribute = mutations[0].attributeName
        })
        
        observer.observe(container, { attributes: true })
        container.classList.add('highlight')
        
        await Promise.resolve()
        
        expect(changedAttribute).toBe('class')
      })

      it('should detect id changes', async () => {
        let changedAttribute = null
        
        observer = new MutationObserver((mutations) => {
          changedAttribute = mutations[0].attributeName
        })
        
        observer.observe(container, { attributes: true })
        container.id = 'new-id'
        
        await Promise.resolve()
        
        expect(changedAttribute).toBe('id')
      })
    })

    // From lines 185-200: attributeFilter option
    describe('attributeFilter option', () => {
      it('should only observe specified attributes', async () => {
        const observedAttributes = []
        
        observer = new MutationObserver((mutations) => {
          for (const mutation of mutations) {
            observedAttributes.push(mutation.attributeName)
          }
        })
        
        observer.observe(container, {
          attributes: true,
          attributeFilter: ['class', 'data-state']
        })
        
        container.classList.toggle('active')
        container.dataset.state = 'loading'
        container.setAttribute('title', 'Hello') // Should NOT be observed
        
        await Promise.resolve()
        
        expect(observedAttributes).toContain('class')
        expect(observedAttributes).toContain('data-state')
        expect(observedAttributes).not.toContain('title')
      })
    })

    // From lines 205-220: attributeOldValue option
    describe('attributeOldValue option', () => {
      it('should include old value when attributeOldValue is true', async () => {
        container.setAttribute('data-value', 'original')
        
        let oldValue = null
        let newValue = null
        
        observer = new MutationObserver((mutations) => {
          oldValue = mutations[0].oldValue
          newValue = mutations[0].target.getAttribute(mutations[0].attributeName)
        })
        
        observer.observe(container, {
          attributes: true,
          attributeOldValue: true
        })
        
        container.setAttribute('data-value', 'updated')
        
        await Promise.resolve()
        
        expect(oldValue).toBe('original')
        expect(newValue).toBe('updated')
      })
    })
  })

  // ============================================================
  // SUBTREE OPTION
  // From mutation-observer.mdx lines 280-320
  // ============================================================

  describe('Subtree Option', () => {
    // From lines 285-300: Without subtree
    it('should only observe direct children without subtree option', async () => {
      const child = document.createElement('div')
      const grandchild = document.createElement('span')
      child.appendChild(grandchild)
      container.appendChild(child)
      
      const mutations = []
      
      observer = new MutationObserver((mutationList) => {
        mutations.push(...mutationList)
      })
      
      // Observe WITHOUT subtree
      observer.observe(container, { childList: true })
      
      // Add to grandchild - should NOT trigger
      grandchild.appendChild(document.createElement('p'))
      
      await Promise.resolve()
      
      // No mutations expected since we're not watching subtree
      expect(mutations.length).toBe(0)
    })

    // From lines 305-320: With subtree
    it('should observe all descendants with subtree option', async () => {
      const child = document.createElement('div')
      const grandchild = document.createElement('span')
      child.appendChild(grandchild)
      container.appendChild(child)
      
      const mutations = []
      
      observer = new MutationObserver((mutationList) => {
        mutations.push(...mutationList)
      })
      
      // Observe WITH subtree
      observer.observe(container, { childList: true, subtree: true })
      
      // Add to grandchild - SHOULD trigger
      grandchild.appendChild(document.createElement('p'))
      
      await Promise.resolve()
      
      expect(mutations.length).toBe(1)
      expect(mutations[0].target).toBe(grandchild)
    })
  })

  // ============================================================
  // MUTATIONRECORD PROPERTIES
  // From mutation-observer.mdx lines 230-275
  // ============================================================

  describe('MutationRecord Properties', () => {
    // From lines 240-260: addedNodes and removedNodes
    it('should provide addedNodes in mutation record', async () => {
      let record = null
      
      observer = new MutationObserver((mutations) => {
        record = mutations[0]
      })
      
      observer.observe(container, { childList: true })
      
      const newElement = document.createElement('p')
      container.appendChild(newElement)
      
      await Promise.resolve()
      
      expect(record.addedNodes.length).toBe(1)
      expect(record.addedNodes[0]).toBe(newElement)
      expect(record.removedNodes.length).toBe(0)
    })

    it('should provide removedNodes in mutation record', async () => {
      const child = document.createElement('p')
      container.appendChild(child)
      
      let record = null
      
      observer = new MutationObserver((mutations) => {
        record = mutations[0]
      })
      
      observer.observe(container, { childList: true })
      container.removeChild(child)
      
      await Promise.resolve()
      
      expect(record.removedNodes.length).toBe(1)
      expect(record.removedNodes[0]).toBe(child)
      expect(record.addedNodes.length).toBe(0)
    })

    // From lines 265-275: target property
    it('should provide target element in mutation record', async () => {
      let target = null
      
      observer = new MutationObserver((mutations) => {
        target = mutations[0].target
      })
      
      observer.observe(container, { attributes: true })
      container.setAttribute('data-test', 'value')
      
      await Promise.resolve()
      
      expect(target).toBe(container)
    })
  })

  // ============================================================
  // DISCONNECTING AND CLEANUP
  // From mutation-observer.mdx lines 330-380
  // ============================================================

  describe('Disconnecting and Cleanup', () => {
    // From lines 335-345: disconnect() method
    it('should stop observing after disconnect()', async () => {
      let mutationCount = 0
      
      observer = new MutationObserver(() => {
        mutationCount++
      })
      
      observer.observe(container, { childList: true })
      
      // First change - should be observed
      container.appendChild(document.createElement('span'))
      await Promise.resolve()
      expect(mutationCount).toBe(1)
      
      // Disconnect
      observer.disconnect()
      
      // Second change - should NOT be observed
      container.appendChild(document.createElement('span'))
      await Promise.resolve()
      expect(mutationCount).toBe(1) // Still 1, not 2
    })

    // From lines 350-365: takeRecords() method
    it('should return pending mutations with takeRecords()', async () => {
      const callbackMutations = []
      
      observer = new MutationObserver((mutations) => {
        callbackMutations.push(...mutations)
      })
      
      observer.observe(container, { childList: true })
      
      // Make changes
      container.appendChild(document.createElement('span'))
      container.appendChild(document.createElement('div'))
      
      // Get pending mutations before they're delivered to callback
      const pendingMutations = observer.takeRecords()
      
      // These mutations are now "taken" and won't be delivered to callback
      await Promise.resolve()
      
      expect(pendingMutations.length).toBe(2)
      expect(callbackMutations.length).toBe(0) // Callback never received them
    })
  })

  // ============================================================
  // FILTERING NODE TYPES
  // From mutation-observer.mdx lines 440-470 (Common Mistakes)
  // ============================================================

  describe('Filtering Node Types', () => {
    // From lines 445-465: Filter for elements only
    it('should include text nodes in addedNodes', async () => {
      const addedNodes = []
      
      observer = new MutationObserver((mutations) => {
        for (const mutation of mutations) {
          addedNodes.push(...mutation.addedNodes)
        }
      })
      
      observer.observe(container, { childList: true })
      
      // This adds a text node, not an element
      container.textContent = 'Hello'
      
      await Promise.resolve()
      
      // Should have a text node
      const hasTextNode = addedNodes.some(node => node.nodeType === Node.TEXT_NODE)
      expect(hasTextNode).toBe(true)
    })

    it('should be able to filter for elements only', async () => {
      const addedElements = []
      
      observer = new MutationObserver((mutations) => {
        for (const mutation of mutations) {
          for (const node of mutation.addedNodes) {
            if (node.nodeType === Node.ELEMENT_NODE) {
              addedElements.push(node)
            }
          }
        }
      })
      
      observer.observe(container, { childList: true })
      
      // Add text node (should be ignored)
      container.appendChild(document.createTextNode('Hello'))
      // Add element (should be captured)
      const elem = document.createElement('span')
      container.appendChild(elem)
      
      await Promise.resolve()
      
      expect(addedElements.length).toBe(1)
      expect(addedElements[0]).toBe(elem)
    })
  })

  // ============================================================
  // CHARACTERDATA MUTATIONS
  // From mutation-observer.mdx lines 110-115
  // ============================================================

  describe('characterData Mutations', () => {
    it('should detect text content changes in text nodes', async () => {
      const textNode = document.createTextNode('Initial text')
      container.appendChild(textNode)
      
      let mutationType = null
      let oldValue = null
      
      observer = new MutationObserver((mutations) => {
        mutationType = mutations[0].type
        oldValue = mutations[0].oldValue
      })
      
      observer.observe(container, {
        characterData: true,
        subtree: true,
        characterDataOldValue: true
      })
      
      textNode.textContent = 'Updated text'
      
      await Promise.resolve()
      
      expect(mutationType).toBe('characterData')
      expect(oldValue).toBe('Initial text')
    })
  })

  // ============================================================
  // REAL-WORLD USE CASES
  // From mutation-observer.mdx lines 400-440
  // ============================================================

  describe('Real-World Use Cases', () => {
    // From lines 405-420: Lazy loading images pattern
    it('should detect images added to DOM for lazy loading', async () => {
      const loadedImages = []
      
      function loadImage(img) {
        if (img.dataset.src) {
          img.src = img.dataset.src
          img.removeAttribute('data-src')
          loadedImages.push(img)
        }
      }
      
      observer = new MutationObserver((mutations) => {
        for (const mutation of mutations) {
          for (const node of mutation.addedNodes) {
            if (node.nodeType !== Node.ELEMENT_NODE) continue
            
            if (node.matches && node.matches('img[data-src]')) {
              loadImage(node)
            }
            
            if (node.querySelectorAll) {
              node.querySelectorAll('img[data-src]').forEach(loadImage)
            }
          }
        }
      })
      
      observer.observe(container, { childList: true, subtree: true })
      
      // Add image with data-src
      const img = document.createElement('img')
      img.dataset.src = 'https://example.com/image.jpg'
      container.appendChild(img)
      
      await Promise.resolve()
      
      expect(loadedImages.length).toBe(1)
      expect(img.src).toBe('https://example.com/image.jpg')
      expect(img.dataset.src).toBeUndefined()
    })

    // From lines 430-445: Removing unwanted elements
    it('should detect and remove unwanted elements', async () => {
      const removedElements = []
      
      observer = new MutationObserver((mutations) => {
        for (const mutation of mutations) {
          for (const node of mutation.addedNodes) {
            if (node.nodeType !== Node.ELEMENT_NODE) continue
            
            if (node.matches && node.matches('.ad-banner')) {
              node.remove()
              removedElements.push(node)
            }
          }
        }
      })
      
      observer.observe(container, { childList: true, subtree: true })
      
      // Simulate ad being injected
      const ad = document.createElement('div')
      ad.className = 'ad-banner'
      container.appendChild(ad)
      
      await Promise.resolve()
      
      expect(removedElements.length).toBe(1)
      expect(container.querySelector('.ad-banner')).toBeNull()
    })

    // From lines 450-465: Tracking class changes
    it('should detect class changes on elements', async () => {
      const element = document.createElement('div')
      element.id = 'panel'
      container.appendChild(element)
      
      let isExpanded = false
      
      observer = new MutationObserver((mutations) => {
        for (const mutation of mutations) {
          if (mutation.attributeName === 'class') {
            isExpanded = mutation.target.classList.contains('expanded')
          }
        }
      })
      
      observer.observe(element, {
        attributes: true,
        attributeFilter: ['class']
      })
      
      element.classList.add('expanded')
      
      await Promise.resolve()
      
      expect(isExpanded).toBe(true)
    })
  })

  // ============================================================
  // MICROTASK TIMING
  // From mutation-observer.mdx lines 385-400
  // ============================================================

  describe('Microtask Timing', () => {
    it('should batch multiple changes into single callback', async () => {
      let callbackCount = 0
      let totalMutations = 0
      
      observer = new MutationObserver((mutations) => {
        callbackCount++
        totalMutations += mutations.length
      })
      
      observer.observe(container, { childList: true })
      
      // Make multiple changes synchronously
      container.appendChild(document.createElement('div'))
      container.appendChild(document.createElement('span'))
      container.appendChild(document.createElement('p'))
      
      await Promise.resolve()
      
      // Should be batched into single callback
      expect(callbackCount).toBe(1)
      expect(totalMutations).toBe(3)
    })
  })
})