forked from alexnitta/get-parent-block-formatting-contexts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetParentBlockFormattingContexts.js
More file actions
205 lines (160 loc) · 5.63 KB
/
getParentBlockFormattingContexts.js
File metadata and controls
205 lines (160 loc) · 5.63 KB
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
const testParentPropertyValue = (element, propertyName, propertyValueTest) => {
if (element.parentElement) {
const parentElementStyle = window.getComputedStyle(element.parentElement);
return propertyValueTest(parentElementStyle.getPropertyValue(propertyName));
}
return false;
};
const testPropertyValue = (element, propertyName, propertyValueTest) => {
const elementStyle = window.getComputedStyle(element);
return propertyValueTest(elementStyle.getPropertyValue(propertyName));
};
const blockLevelElementTags = [
"ADDRESS",
"ARTICLE",
"ASIDE",
"BLOCKQUOTE",
"DETAILS",
"DIALOG",
"DD",
"DIV",
"DL",
"DT",
"FIELDSET",
"FIGCAPTION",
"FIGURE",
"FOOTER",
"FORM",
"H1",
"H2",
"H3",
"H4",
"H5",
"H6",
"HEADER",
"HGROUP",
"HR",
"LI",
"MAIN",
"NAV",
"OL",
"P",
"PRE",
"SECTION",
"TABLE",
"UL",
];
const isBlockLevelElement = element => blockLevelElementTags.indexOf(element.tagName) !== -1;
const isRoot = element => element.tagName === 'HTML';
const hasFloat = element =>
testPropertyValue(element, 'float', value => value !== 'none');
const positionAbsolute = element =>
testPropertyValue(element, 'position', value => value === 'absolute');
const positionFixed = element =>
testPropertyValue(element, 'position', value => value === 'fixed');
const displayInlineBlock = element =>
testPropertyValue(element, 'display', value => value === 'inline-block');
const displayTableCell = element =>
testPropertyValue(element, 'display', value => value === 'table-cell');
const displayTableCaption = element =>
testPropertyValue(element, 'display', value => value === 'table-caption');
const displayTable = element =>
testPropertyValue(element, 'display', value => value === 'table');
const displayTableRow = element =>
testPropertyValue(element, 'display', value => value === 'table-row');
const displayTableRowGroup = element =>
testPropertyValue(element, 'display', value => value === 'table-row-group');
const displayTableHeaderGroup = element =>
testPropertyValue(element, 'display', value => value === 'table-header-group');
const displayTableFooterGroup = element =>
testPropertyValue(element, 'display', value => value === 'table-footer-group');
const displayInlineTable = element =>
testPropertyValue(element, 'display', value => value === 'table-inline-table');
const blockElementWithoutOverflowVisible = element => {
return isBlockLevelElement(element) &&
testPropertyValue(element, 'overflow', value => value !== 'visible');
}
const displayFlowRoot = element =>
testPropertyValue(element, 'display', value => value === 'flow-root');
const containLayout = element =>
testPropertyValue(element, 'contain', value => value === 'layout');
const containContent = element =>
testPropertyValue(element, 'contain', value => value === 'content');
const containPaint = element =>
testPropertyValue(element, 'contain', value => value === 'paint');
const flexItem = element =>
testParentPropertyValue(element, 'display', value => value === 'flex');
const inlineFlexItem = element =>
testParentPropertyValue(element, 'display', value => value === 'inline-flex');
const gridItem = element =>
testParentPropertyValue(element, 'display', value => value === 'grid');
const inlineGridItem = element =>
testParentPropertyValue(element, 'display', value => value === 'inline-grid');
const multicolContainerByColumnCount = element =>
testParentPropertyValue(element, 'column-count', value => value !== 'auto');
const multicolContainerByColumnWidth = element =>
testParentPropertyValue(element, 'column-width', value => value !== 'auto');
const columnSpanAll = element =>
testParentPropertyValue(element, 'column-span', value => value === 'all');
const rules = {
isRoot,
hasFloat,
positionAbsolute,
positionFixed,
displayInlineBlock,
displayTableCell,
displayTableCaption,
displayTable,
displayTableRow,
displayTableRowGroup,
displayTableHeaderGroup,
displayTableFooterGroup,
displayInlineTable,
blockElementWithoutOverflowVisible,
displayFlowRoot,
containLayout,
containContent,
containPaint,
flexItem,
inlineFlexItem,
gridItem,
inlineGridItem,
multicolContainerByColumnCount,
multicolContainerByColumnWidth,
columnSpanAll,
};
const checkIfElementEstablishesNewBlockFormattingContext = element => {
const newBFCReasons = [];
for (const ruleKey in rules) {
const rule = rules[ruleKey];
if (rule(element)) {
newBFCReasons.push(ruleKey);
}
}
const newBFC = newBFCReasons.length > 0;
return { newBFC, newBFCReasons };
};
const getParentBlockFormattingContexts = selector => {
const startElement = document.querySelector(selector);
if (!startElement) {
throw new Error('No element found - check your query selector argument.');
}
const walkUpDOMAndGetBlockFormattingContexts = (element, result = []) => {
const { id, className, tagName } = element;
const { newBFC, newBFCReasons } =
checkIfElementEstablishesNewBlockFormattingContext(element);
const elementResult = {
id,
className,
tagName,
newBFC,
newBFCReasons,
};
result.unshift(elementResult);
if (element.parentElement) {
return walkUpDOMAndGetBlockFormattingContexts(element.parentElement, result);
}
return result;
};
return walkUpDOMAndGetBlockFormattingContexts(startElement);
};