aboutsummaryrefslogtreecommitdiff
path: root/ext/js/dom/selector-observer.js
blob: 032805e8befaaf1438cdad79b2fe32ee002a7cd3 (plain)
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
/*
 * Copyright (C) 2023-2024  Yomitan Authors
 * Copyright (C) 2020-2022  Yomichan Authors
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

/**
 * Class which is used to observe elements matching a selector in specific element.
 * @template [T=unknown]
 */
export class SelectorObserver {
    /**
     * Creates a new instance.
     * @param {import('selector-observer').ConstructorDetails<T>} details The configuration for the object.
     */
    constructor({
        selector,
        ignoreSelector = null,
        onAdded = null,
        onRemoved = null,
        onChildrenUpdated = null,
        isStale = null
    }) {
        /** @type {string} */
        this._selector = selector;
        /** @type {?string} */
        this._ignoreSelector = ignoreSelector;
        /** @type {?import('selector-observer').OnAddedCallback<T>} */
        this._onAdded = onAdded;
        /** @type {?import('selector-observer').OnRemovedCallback<T>} */
        this._onRemoved = onRemoved;
        /** @type {?import('selector-observer').OnChildrenUpdatedCallback<T>} */
        this._onChildrenUpdated = onChildrenUpdated;
        /** @type {?import('selector-observer').IsStaleCallback<T>} */
        this._isStale = isStale;
        /** @type {?Element} */
        this._observingElement = null;
        /** @type {MutationObserver} */
        this._mutationObserver = new MutationObserver(this._onMutation.bind(this));
        /** @type {Map<Node, import('selector-observer').Observer<T>>} */
        this._elementMap = new Map(); // Map([element => observer]...)
        /** @type {Map<Node, Set<import('selector-observer').Observer<T>>>} */
        this._elementAncestorMap = new Map(); // Map([element => Set([observer]...)]...)
        /** @type {boolean} */
        this._isObserving = false;
    }

    /**
     * Returns whether or not an element is currently being observed.
     * @returns {boolean} `true` if an element is being observed, `false` otherwise.
     */
    get isObserving() {
        return this._observingElement !== null;
    }

    /**
     * Starts DOM mutation observing the target element.
     * @param {Element} element The element to observe changes in.
     * @param {boolean} [attributes] A boolean for whether or not attribute changes should be observed.
     * @throws {Error} An error if element is null.
     * @throws {Error} An error if an element is already being observed.
     */
    observe(element, attributes = false) {
        if (element === null) {
            throw new Error('Invalid element');
        }
        if (this.isObserving) {
            throw new Error('Instance is already observing an element');
        }

        this._observingElement = element;
        this._mutationObserver.observe(element, {
            attributes: !!attributes,
            childList: true,
            subtree: true
        });

        const {parentNode} = element;
        this._onMutation([{
            type: 'childList',
            target: parentNode !== null ? parentNode : element,
            addedNodes: [element],
            removedNodes: []
        }]);
    }

    /**
     * Stops observing the target element.
     */
    disconnect() {
        if (!this.isObserving) { return; }

        this._mutationObserver.disconnect();
        this._observingElement = null;

        for (const observer of this._elementMap.values()) {
            this._removeObserver(observer);
        }
    }

    /**
     * Returns an iterable list of [element, data] pairs.
     * @yields {[element: Element, data: T]} A sequence of [element, data] pairs.
     * @returns {Generator<[element: Element, data: T], void, unknown>}
     */
    *entries() {
        for (const {element, data} of this._elementMap.values()) {
            yield [element, data];
        }
    }

    /**
     * Returns an iterable list of data for every element.
     * @yields {T} A sequence of data values.
     * @returns {Generator<T, void, unknown>}
     */
    *datas() {
        for (const {data} of this._elementMap.values()) {
            yield data;
        }
    }

    // Private

    /**
     * @param {(MutationRecord|import('selector-observer').MutationRecordLike)[]} mutationList
     */
    _onMutation(mutationList) {
        for (const mutation of mutationList) {
            switch (mutation.type) {
                case 'childList':
                    this._onChildListMutation(mutation);
                    break;
                case 'attributes':
                    this._onAttributeMutation(mutation);
                    break;
            }
        }
    }

    /**
     * @param {MutationRecord|import('selector-observer').MutationRecordLike} record
     */
    _onChildListMutation({addedNodes, removedNodes, target}) {
        const selector = this._selector;
        const ELEMENT_NODE = Node.ELEMENT_NODE;

        for (const node of removedNodes) {
            const observers = this._elementAncestorMap.get(node);
            if (typeof observers === 'undefined') { continue; }
            for (const observer of observers) {
                this._removeObserver(observer);
            }
        }

        for (const node of addedNodes) {
            if (node.nodeType !== ELEMENT_NODE) { continue; }
            if (/** @type {Element} */ (node).matches(selector)) {
                this._createObserver(/** @type {Element} */ (node));
            }
            for (const childNode of /** @type {Element} */ (node).querySelectorAll(selector)) {
                this._createObserver(childNode);
            }
        }

        if (
            this._onChildrenUpdated !== null &&
            (removedNodes.length > 0 || addedNodes.length > 0)
        ) {
            for (let node = /** @type {?Node} */ (target); node !== null; node = node.parentNode) {
                const observer = this._elementMap.get(node);
                if (typeof observer !== 'undefined') {
                    this._onObserverChildrenUpdated(observer);
                }
            }
        }
    }

    /**
     * @param {MutationRecord|import('selector-observer').MutationRecordLike} record
     */
    _onAttributeMutation({target}) {
        const selector = this._selector;
        const observers = this._elementAncestorMap.get(/** @type {Element} */ (target));
        if (typeof observers !== 'undefined') {
            for (const observer of observers) {
                const element = observer.element;
                if (
                    !element.matches(selector) ||
                    this._shouldIgnoreElement(element) ||
                    this._isObserverStale(observer)
                ) {
                    this._removeObserver(observer);
                }
            }
        }

        if (/** @type {Element} */ (target).matches(selector)) {
            this._createObserver(/** @type {Element} */ (target));
        }
    }

    /**
     * @param {Element} element
     */
    _createObserver(element) {
        if (this._elementMap.has(element) || this._shouldIgnoreElement(element) || this._onAdded === null) { return; }

        const data = this._onAdded(element);
        if (typeof data === 'undefined') { return; }
        const ancestors = this._getAncestors(element);
        const observer = {element, ancestors, data};

        this._elementMap.set(element, observer);

        for (const ancestor of ancestors) {
            let observers = this._elementAncestorMap.get(ancestor);
            if (typeof observers === 'undefined') {
                observers = new Set();
                this._elementAncestorMap.set(ancestor, observers);
            }
            observers.add(observer);
        }
    }

    /**
     * @param {import('selector-observer').Observer<T>} observer
     */
    _removeObserver(observer) {
        const {element, ancestors, data} = observer;

        this._elementMap.delete(element);

        for (const ancestor of ancestors) {
            const observers = this._elementAncestorMap.get(ancestor);
            if (typeof observers === 'undefined') { continue; }

            observers.delete(observer);
            if (observers.size === 0) {
                this._elementAncestorMap.delete(ancestor);
            }
        }

        if (this._onRemoved !== null) {
            this._onRemoved(element, data);
        }
    }

    /**
     * @param {import('selector-observer').Observer<T>} observer
     */
    _onObserverChildrenUpdated(observer) {
        if (this._onChildrenUpdated === null) { return; }
        this._onChildrenUpdated(observer.element, observer.data);
    }

    /**
     * @param {import('selector-observer').Observer<T>} observer
     * @returns {boolean}
     */
    _isObserverStale(observer) {
        return (this._isStale !== null && this._isStale(observer.element, observer.data));
    }

    /**
     * @param {Element} element
     * @returns {boolean}
     */
    _shouldIgnoreElement(element) {
        return (this._ignoreSelector !== null && element.matches(this._ignoreSelector));
    }

    /**
     * @param {Node} node
     * @returns {Node[]}
     */
    _getAncestors(node) {
        const root = this._observingElement;
        const results = [];
        let n = /** @type {?Node} */ (node);
        while (n !== null) {
            results.push(n);
            if (n === root) { break; }
            n = n.parentNode;
        }
        return results;
    }
}