-
Notifications
You must be signed in to change notification settings - Fork 801
/
Copy pathcreate-grid.js
529 lines (460 loc) · 16.5 KB
/
create-grid.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
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
import isVisibleOnScreen from './is-visible-on-screen';
import { getBoundingRect } from '../math/get-bounding-rect';
import { isPointInRect } from '../math/is-point-in-rect';
import VirtualNode from '../../core/base/virtual-node/virtual-node';
import { getNodeFromTree, getScroll, isShadowRoot } from '../../core/utils';
import constants from '../../core/constants';
import cache from '../../core/base/cache';
import assert from '../../core/utils/assert';
import getOverflowHiddenAncestors from './get-overflow-hidden-ancestors';
import { getIntersectionRect } from '../math';
const ROOT_LEVEL = 0;
const DEFAULT_LEVEL = 0.1;
const FLOAT_LEVEL = 0.2;
const POSITION_LEVEL = 0.3;
let nodeIndex = 0;
/**
* Setup the 2d grid and add every element to it, even elements not
* included in the flat tree
* @returns gridSize
*/
export default function createGrid(
root = document.body,
rootGrid,
parentVNode = null
) {
// Prevent multiple calls per run
if (cache.get('gridCreated') && !parentVNode) {
return constants.gridSize;
}
cache.set('gridCreated', true);
// by not starting at the htmlElement we don't have to pass a custom
// filter function into the treeWalker to filter out head elements,
// which would be called for every node
if (!parentVNode) {
let vNode = getNodeFromTree(document.documentElement);
if (!vNode) {
vNode = new VirtualNode(document.documentElement);
}
nodeIndex = 0;
vNode._stackingOrder = [
createStackingContext(ROOT_LEVEL, nodeIndex++, null)
];
rootGrid ??= new Grid();
addNodeToGrid(rootGrid, vNode);
if (getScroll(vNode.actualNode)) {
const subGrid = new Grid(vNode);
vNode._subGrid = subGrid;
}
}
// IE11 requires the first 3 parameters
// @see https://developer.mozilla.org/en-US/docs/Web/API/Document/createTreeWalker
const treeWalker = document.createTreeWalker(
root,
window.NodeFilter.SHOW_ELEMENT,
null,
false
);
let node = parentVNode ? treeWalker.nextNode() : treeWalker.currentNode;
while (node) {
let vNode = getNodeFromTree(node);
if (vNode && vNode.parent) {
parentVNode = vNode.parent;
}
// Elements with an assigned slot need to be a child of the slot element
else if (node.assignedSlot) {
parentVNode = getNodeFromTree(node.assignedSlot);
}
// An SVG in IE11 does not have a parentElement but instead has a
// parentNode. but parentNode could be a shadow root so we need to
// verify it's in the tree first
else if (node.parentElement) {
parentVNode = getNodeFromTree(node.parentElement);
} else if (node.parentNode && getNodeFromTree(node.parentNode)) {
parentVNode = getNodeFromTree(node.parentNode);
}
if (!vNode) {
vNode = new axe.VirtualNode(node, parentVNode);
}
vNode._stackingOrder = createStackingOrder(vNode, parentVNode, nodeIndex++);
const scrollRegionParent = findScrollRegionParent(vNode, parentVNode);
const grid = scrollRegionParent ? scrollRegionParent._subGrid : rootGrid;
if (getScroll(vNode.actualNode)) {
const subGrid = new Grid(vNode);
vNode._subGrid = subGrid;
}
// filter out any elements with 0 width or height
// (we don't do this before so we can calculate stacking context
// of parents with 0 width/height)
const rect = vNode.boundingClientRect;
if (rect.width !== 0 && rect.height !== 0 && isVisibleOnScreen(node)) {
addNodeToGrid(grid, vNode);
}
// add shadow root elements to the grid
if (isShadowRoot(node)) {
createGrid(node.shadowRoot, grid, vNode);
}
node = treeWalker.nextNode();
}
return constants.gridSize;
}
/**
* Determine if node produces a stacking context.
* References:
* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
* https://github.com/gwwar/z-context/blob/master/devtools/index.js
* @param {VirtualNode} vNode
* @return {Boolean}
*/
function isStackingContext(vNode, parentVNode) {
const position = vNode.getComputedStylePropertyValue('position');
const zIndex = vNode.getComputedStylePropertyValue('z-index');
// the root element (HTML) is skipped since we always start with a
// stacking order of [0]
// position: fixed or sticky
if (position === 'fixed' || position === 'sticky') {
return true;
}
// positioned (absolutely or relatively) with a z-index value other than "auto",
if (zIndex !== 'auto' && position !== 'static') {
return true;
}
// elements with an opacity value less than 1.
// See https://www.w3.org/TR/css-color-3/#transparency
if (vNode.getComputedStylePropertyValue('opacity') !== '1') {
return true;
}
// elements with a transform value other than "none"
const transform =
vNode.getComputedStylePropertyValue('-webkit-transform') ||
vNode.getComputedStylePropertyValue('-ms-transform') ||
vNode.getComputedStylePropertyValue('transform') ||
'none';
if (transform !== 'none') {
return true;
}
// elements with a mix-blend-mode value other than "normal"
const mixBlendMode = vNode.getComputedStylePropertyValue('mix-blend-mode');
if (mixBlendMode && mixBlendMode !== 'normal') {
return true;
}
// elements with a filter value other than "none"
const filter = vNode.getComputedStylePropertyValue('filter');
if (filter && filter !== 'none') {
return true;
}
// elements with a perspective value other than "none"
const perspective = vNode.getComputedStylePropertyValue('perspective');
if (perspective && perspective !== 'none') {
return true;
}
// element with a clip-path value other than "none"
const clipPath = vNode.getComputedStylePropertyValue('clip-path');
if (clipPath && clipPath !== 'none') {
return true;
}
// element with a mask value other than "none"
const mask =
vNode.getComputedStylePropertyValue('-webkit-mask') ||
vNode.getComputedStylePropertyValue('mask') ||
'none';
if (mask !== 'none') {
return true;
}
// element with a mask-image value other than "none"
const maskImage =
vNode.getComputedStylePropertyValue('-webkit-mask-image') ||
vNode.getComputedStylePropertyValue('mask-image') ||
'none';
if (maskImage !== 'none') {
return true;
}
// element with a mask-border value other than "none"
const maskBorder =
vNode.getComputedStylePropertyValue('-webkit-mask-border') ||
vNode.getComputedStylePropertyValue('mask-border') ||
'none';
if (maskBorder !== 'none') {
return true;
}
// elements with isolation set to "isolate"
if (vNode.getComputedStylePropertyValue('isolation') === 'isolate') {
return true;
}
// transform or opacity in will-change even if you don't specify values for these attributes directly
const willChange = vNode.getComputedStylePropertyValue('will-change');
if (willChange === 'transform' || willChange === 'opacity') {
return true;
}
// elements with -webkit-overflow-scrolling set to "touch"
if (
vNode.getComputedStylePropertyValue('-webkit-overflow-scrolling') ===
'touch'
) {
return true;
}
// element with a contain value of "layout" or "paint" or a composite value
// that includes either of them (i.e. contain: strict, contain: content).
const contain = vNode.getComputedStylePropertyValue('contain');
if (['layout', 'paint', 'strict', 'content'].includes(contain)) {
return true;
}
// a flex item or gird item with a z-index value other than "auto", that is the parent element display: flex|inline-flex|grid|inline-grid,
if (zIndex !== 'auto' && isFlexOrGridContainer(parentVNode)) {
return true;
}
return false;
}
/**
* Determine if element is a flex or grid container.
* @param {VirtualNode} vNode
* @return {Boolean}
*/
function isFlexOrGridContainer(vNode) {
if (!vNode) {
return false;
}
const display = vNode.getComputedStylePropertyValue('display');
return ['flex', 'inline-flex', 'grid', 'inline-grid'].includes(display);
}
/**
* Determine the stacking order of an element. The stacking order is an array of
* stacking contexts in ancestor order.
* @param {VirtualNode} vNode
* @param {VirtualNode} parentVNode
* @param {Number} treeOrder
* @return {Number[]}
*/
function createStackingOrder(vNode, parentVNode, treeOrder) {
const stackingOrder = parentVNode._stackingOrder.slice();
// if an element creates a stacking context, find the first
// true stack (not a "fake" stack created from positioned or
// floated elements without a z-index) and create a new stack at
// that point (step #5 and step #8)
// @see https://www.w3.org/Style/css2-updates/css2/zindex.html
if (isStackingContext(vNode, parentVNode)) {
const index = stackingOrder.findIndex(isFakeStackingContext);
if (index !== -1) {
stackingOrder.splice(index, stackingOrder.length - index);
}
}
const stackLevel = getStackLevel(vNode, parentVNode);
if (stackLevel !== null) {
stackingOrder.push(createStackingContext(stackLevel, treeOrder, vNode));
}
return stackingOrder;
}
/**
* Create a stacking context, keeping track of the stack level, tree order, and virtual
* node container.
* @see https://www.w3.org/Style/css2-updates/css2/zindex.html
* @see https://www.w3.org/Style/css2-updates/css2/visuren.html#layers
* @param {Number} stackLevel - The stack level of the stacking context
* @param {Number} treeOrder - The elements depth-first traversal order
* @param {VirtualNode} vNode - The virtual node that is the container for the stacking context
*/
function createStackingContext(stackLevel, treeOrder, vNode) {
return {
stackLevel,
treeOrder,
vNode
};
}
function isFakeStackingContext(stackingContext) {
const { stackLevel, vNode } = stackingContext;
// elements with opacity < 1 must be treated as their own stacking context,
// even if drawn POSITION_LEVEL layer order.
// See https://www.w3.org/TR/css-color-3/#transparency
if (vNode && vNode.getComputedStylePropertyValue('opacity') !== '1') {
return false;
}
if ([ROOT_LEVEL, FLOAT_LEVEL, POSITION_LEVEL].includes(stackLevel)) {
return true;
}
return false;
}
/**
* Calculate the level of the stacking context.
* @param {VirtualNode} vNode - The virtual node container of the stacking context
* @param {VirtualNode} parentVNode - The parent virtual node of the vNode
* @return {Number|null}
*/
function getStackLevel(vNode, parentVNode) {
const zIndex = getRealZIndex(vNode, parentVNode);
if (!['auto', '0'].includes(zIndex)) {
return parseInt(zIndex);
}
// if a positioned element has z-index: auto or 0 (step #8), or if
// a non-positioned floating element (step #5), treat it as its
// own stacking context
// @see https://www.w3.org/Style/css2-updates/css2/zindex.html
// Put positioned elements above floated elements
if (vNode.getComputedStylePropertyValue('position') !== 'static') {
return POSITION_LEVEL;
}
// From https://www.w3.org/TR/css-color-3/#transparency:
//
// > If an element with opacity less than 1 is not positioned, then it is
// > painted on the same layer, within its parent stacking context, as positioned
// > elements with stack level 0.
if (vNode.getComputedStylePropertyValue('opacity') !== '1') {
return POSITION_LEVEL;
}
// Put floated elements above z-index: 0
// (step #5 floating get sorted below step #8 positioned)
if (vNode.getComputedStylePropertyValue('float') !== 'none') {
return FLOAT_LEVEL;
}
if (isStackingContext(vNode, parentVNode)) {
return DEFAULT_LEVEL;
}
return null;
}
/**
* Calculate the z-index value of a node taking into account when doesn't apply.
* @param {VirtualNode} vNode - The virtual node to get z-index of
* @param {VirtualNode} parentVNode - The parent virtual node of the vNode
* @return {Number|'auto'}
*/
function getRealZIndex(vNode, parentVNode) {
const position = vNode.getComputedStylePropertyValue('position');
if (position === 'static' && !isFlexOrGridContainer(parentVNode)) {
// z-index is ignored on position:static, except if on a flex or grid
// @see https://www.w3.org/TR/css-flexbox-1/#painting
// @see https://www.w3.org/TR/css-grid-1/#z-order
return 'auto';
}
return vNode.getComputedStylePropertyValue('z-index');
}
/**
* Return the parent node that is a scroll region.
* @param {VirtualNode}
* @return {VirtualNode|null}
*/
function findScrollRegionParent(vNode, parentVNode) {
let scrollRegionParent = null;
const checkedNodes = [vNode];
while (parentVNode) {
if (getScroll(parentVNode.actualNode)) {
scrollRegionParent = parentVNode;
break;
}
if (parentVNode._scrollRegionParent) {
scrollRegionParent = parentVNode._scrollRegionParent;
break;
}
checkedNodes.push(parentVNode);
parentVNode = getNodeFromTree(
parentVNode.actualNode.parentElement || parentVNode.actualNode.parentNode
);
}
// cache result of parent scroll region so we don't have to look up the entire
// tree again for a child node
checkedNodes.forEach(
virtualNode => (virtualNode._scrollRegionParent = scrollRegionParent)
);
return scrollRegionParent;
}
/**
* Add a node to every cell of the grid it intersects with.
* @param {Grid}
* @param {VirtualNode}
*/
function addNodeToGrid(grid, vNode) {
const overflowHiddenNodes = getOverflowHiddenAncestors(vNode);
vNode.clientRects.forEach(clientRect => {
// ignore any rects that are outside the bounds of overflow hidden ancestors
const visibleRect = overflowHiddenNodes.reduce((rect, overflowNode) => {
return rect && getIntersectionRect(rect, overflowNode.boundingClientRect);
}, clientRect);
if (!visibleRect) {
return;
}
// save a reference to where this element is in the grid so we
// can find it even if it's in a subgrid
vNode._grid ??= grid;
const gridRect = grid.getGridPositionOfRect(visibleRect);
grid.loopGridPosition(gridRect, gridCell => {
if (!gridCell.includes(vNode)) {
gridCell.push(vNode);
}
});
});
}
class Grid {
constructor(container = null) {
this.container = container;
this.cells = [];
}
/**
* Convert x or y coordinate from rect, to a position in the grid
* @param {number}
* @returns {number}
*/
toGridIndex(num) {
return Math.floor(num / constants.gridSize);
}
/**
* Return an an array of nodes available at a particular grid coordinate
* @param {DOMPoint} gridPosition
* @returns {Array<AbstractVirtualNode>}
*/
getCellFromPoint({ x, y }) {
assert(this.boundaries, 'Grid does not have cells added');
const rowIndex = this.toGridIndex(y);
const colIndex = this.toGridIndex(x);
assert(
isPointInRect({ y: rowIndex, x: colIndex }, this.boundaries),
'Element midpoint exceeds the grid bounds'
);
const row = this.cells[rowIndex - this.cells._negativeIndex] ?? [];
return row[colIndex - row._negativeIndex] ?? [];
}
/**
* Loop over all cells within the gridPosition rect
* @param {DOMRect} gridPosition
* @param {Function} callback
*/
loopGridPosition(gridPosition, callback) {
const { left, right, top, bottom } = gridPosition;
if (this.boundaries) {
gridPosition = getBoundingRect(this.boundaries, gridPosition);
}
this.boundaries = gridPosition;
loopNegativeIndexMatrix(this.cells, top, bottom, (gridRow, row) => {
loopNegativeIndexMatrix(gridRow, left, right, (gridCell, col) => {
callback(gridCell, { row, col });
});
});
}
/**
* Scale the rect to the position within the grid
* @param {DOMRect} clientOrBoundingRect
* @param {number} margin Offset outside the rect, default 0
* @returns {DOMRect} gridPosition
*/
getGridPositionOfRect({ top, right, bottom, left }, margin = 0) {
top = this.toGridIndex(top - margin);
right = this.toGridIndex(right + margin - 1);
bottom = this.toGridIndex(bottom + margin - 1);
left = this.toGridIndex(left - margin);
return new window.DOMRect(left, top, right - left, bottom - top);
}
}
// handle negative row/col values
function loopNegativeIndexMatrix(matrix, start, end, callback) {
matrix._negativeIndex ??= 0;
// Shift the array when start is negative
if (start < matrix._negativeIndex) {
for (let i = 0; i < matrix._negativeIndex - start; i++) {
matrix.splice(0, 0, []);
}
matrix._negativeIndex = start;
}
const startOffset = start - matrix._negativeIndex;
const endOffset = end - matrix._negativeIndex;
for (let index = startOffset; index <= endOffset; index++) {
matrix[index] ??= [];
callback(matrix[index], index + matrix._negativeIndex);
}
}