-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Expand file tree
/
Copy pathBrowserParserCss.ts
More file actions
286 lines (243 loc) · 8.82 KB
/
Copy pathBrowserParserCss.ts
File metadata and controls
286 lines (243 loc) · 8.82 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
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
import { keys } from 'underscore';
import { CssRuleJSON } from '../../css_composer/model/CssRule';
import { ObjectStrings } from '../../common';
/** @see https://developer.mozilla.org/en-US/docs/Web/API/CSSRule/type */
const CSS_RULE_TYPES = {
STYLE_RULE: 1,
CHARSET_RULE: 2,
IMPORT_RULE: 3,
MEDIA_RULE: 4,
FONT_FACE_RULE: 5,
PAGE_RULE: 6,
KEYFRAMES_RULE: 7,
KEYFRAME_RULE: 8,
NAMESPACE_RULE: 10,
COUNTER_STYLE_RULE: 11,
SUPPORTS_RULE: 12,
DOCUMENT_RULE: 13,
FONT_FEATURE_VALUES_RULE: 14,
VIEWPORT_RULE: 15,
REGION_STYLE_RULE: 16,
};
/** @see https://developer.mozilla.org/en-US/docs/Web/CSS/At-rule */
const AT_RULE_NAMES: ObjectStrings = {
[CSS_RULE_TYPES.MEDIA_RULE]: 'media',
[CSS_RULE_TYPES.FONT_FACE_RULE]: 'font-face',
[CSS_RULE_TYPES.PAGE_RULE]: 'page',
[CSS_RULE_TYPES.KEYFRAMES_RULE]: 'keyframes',
[CSS_RULE_TYPES.COUNTER_STYLE_RULE]: 'counter-style',
[CSS_RULE_TYPES.SUPPORTS_RULE]: 'supports',
[CSS_RULE_TYPES.DOCUMENT_RULE]: 'document',
[CSS_RULE_TYPES.FONT_FEATURE_VALUES_RULE]: 'font-feature-values',
[CSS_RULE_TYPES.VIEWPORT_RULE]: 'viewport',
};
const AT_RULE_KEYS = keys(AT_RULE_NAMES);
const SINGLE_AT_RULE_TYPES = [
CSS_RULE_TYPES.FONT_FACE_RULE,
CSS_RULE_TYPES.PAGE_RULE,
CSS_RULE_TYPES.COUNTER_STYLE_RULE,
CSS_RULE_TYPES.VIEWPORT_RULE,
];
const NESTABLE_AT_RULE_NAMES = AT_RULE_KEYS.filter((i) => SINGLE_AT_RULE_TYPES.indexOf(Number(i)) < 0)
.map((i) => AT_RULE_NAMES[i])
.concat(['container', 'layer']);
const SINGLE_AT_RULE_NAMES = SINGLE_AT_RULE_TYPES.map((n) => AT_RULE_NAMES[n]);
/**
* Parse selector string to array.
* Only classe based are valid as CSS rules inside editor, not valid
* selectors will be dropped as additional
* It's ok with the last part of the string as state (:hover, :active)
* @param {string} str Selectors string
* @return {Object}
* @example
* var res = parseSelector('.test1, .test1.test2, .test2 .test3');
* console.log(res);
* // { result: [['test1'], ['test1', 'test2']], add: ['.test2 .test3'] }
*/
export const parseSelector = (str = '') => {
const add: string[] = [];
const result: string[][] = [];
const sels = str.split(',');
// Will accept only concatenated classes and last
// class might be with state (eg. :hover) complex state (:hover:not(.active))
// as long as the state does not contain commas.
// Can also accept SINGLE ID selectors, eg. `#myid`, `#myid:hover`
// Composed are not valid: `#myid.some-class`, `#myid.some-class:hover
const checkForClass = /^(\.[\w\-]+)+((:{1,2}[\w\-]+)(\([^)]*\))?)*$/;
const checkForId = /^#[\w\-]+((:{1,2}[\w\-]+)(\([^)]*\))?)*$/;
for (let i = 0; i < sels.length; i++) {
const sel = sels[i].trim();
if (checkForClass.test(sel) || checkForId.test(sel)) {
const parts = sel.split(/\.(?![^()]*\))/).filter(Boolean);
result.push(parts);
} else {
add.push(sel);
}
}
return { result, add };
};
/**
* Parse style declarations of the node.
* @param {CSSRule} node
* @return {Object}
*/
export const parseStyle = (node: CSSStyleRule) => {
const stl = node.style;
const style: Record<string, string> = {};
for (var i = 0, len = stl.length; i < len; i++) {
const propName = stl[i];
const propValue = stl.getPropertyValue(propName);
const important = stl.getPropertyPriority(propName);
style[propName] = `${propValue}${important ? ` !${important}` : ''}`;
}
return style;
};
const getNestedRuleKey = (node: CSSRule) => {
const selectorText = (node as CSSStyleRule).selectorText?.trim();
if (selectorText) {
// CSSOM serializes nested relative selectors with the implied nesting
// selector inserted (eg. `& .child`), while the nested style object keeps
// only the original nested key (eg. `.child`).
return selectorText.replace(/^&(?:\s+)?/, '').trim();
}
const { cssText = '' } = node;
const blockIndex = cssText.indexOf('{');
return blockIndex >= 0 ? cssText.slice(0, blockIndex).trim() : '';
};
export const parseRuleStyle = (node: CSSStyleRule | CSSRule) => {
const style = parseStyle(node as CSSStyleRule) as Record<string, any>;
const nestedNodes = (node as CSSStyleRule).cssRules || [];
// Nested CSS rules stay attached to the parent declaration block in the
// parsed output, eg. `{ color: 'green', '.child': { color: 'red' } }`.
for (let i = 0, len = nestedNodes.length; i < len; i++) {
const nestedNode = nestedNodes[i];
const nestedKey = getNestedRuleKey(nestedNode);
if (!nestedKey) continue;
style[nestedKey] = parseRuleStyle(nestedNode);
}
return style;
};
/**
* Get the condition when possible
* @param {CSSRule} node
* @return {string}
*/
export const parseCondition = (node: CSSRule): string => {
// @ts-ignore
const condition = node.conditionText || (node.media && node.media.mediaText) || node.name || node.selectorText || '';
return condition.trim();
};
/**
* Create node for the editor
* @param {Array<String>} selectors Array containing strings of classes
* @param {Object} style Key-value object of style declarations
* @return {Object}
*/
export const createNode = (selectors: string[], style = {}, opts = {}): CssRuleJSON => {
const node: Partial<CssRuleJSON> = {};
const selLen = selectors.length;
const lastClass = selectors[selLen - 1];
const stateArr = lastClass ? lastClass.split(/:(.+)/) : [];
const state = stateArr[1];
// @ts-ignore
const { atRule, selectorsAdd, mediaText } = opts;
const singleAtRule = SINGLE_AT_RULE_NAMES.indexOf(atRule) >= 0;
singleAtRule && (node.singleAtRule = true);
atRule && (node.atRuleType = atRule);
selectorsAdd && (node.selectorsAdd = selectorsAdd);
mediaText && (node.mediaText = mediaText);
// Isolate the state from selectors
if (state) {
selectors[selLen - 1] = stateArr[0];
node.state = state;
stateArr.splice(stateArr.length - 1, 1);
}
node.selectors = selectors;
node.style = style;
return node as CssRuleJSON;
};
export const getNestableAtRule = (node: CSSRule) => {
const { cssText = '' } = node;
return NESTABLE_AT_RULE_NAMES.find((name) => cssText.indexOf(`@${name}`) === 0);
};
/**
* Fetch data from node
* @param {StyleSheet|CSSRule} el
* @return {Array<Object>}
*/
export const parseNode = (el: CSSStyleSheet | CSSRule) => {
let result: CssRuleJSON[] = [];
const nodes = (el as CSSStyleSheet).cssRules || [];
for (let i = 0, len = nodes.length; i < len; i++) {
const node = nodes[i];
const { type } = node;
let singleAtRule = false;
let atRuleType = '';
let condition = '';
const sels = (node as CSSStyleRule).selectorText || (node as CSSKeyframeRule).keyText || '';
const isSingleAtRule = SINGLE_AT_RULE_TYPES.indexOf(type) >= 0;
// Check if the node is an at-rule
if (isSingleAtRule) {
singleAtRule = true;
atRuleType = AT_RULE_NAMES[type];
condition = parseCondition(node);
} else if (AT_RULE_KEYS.indexOf(`${type}`) >= 0 || getNestableAtRule(node)) {
const subRules = parseNode(node);
const subAtRuleType = AT_RULE_NAMES[type] || getNestableAtRule(node);
condition = parseCondition(node);
for (let s = 0, lens = subRules.length; s < lens; s++) {
const subRule = subRules[s];
condition && (subRule.mediaText = condition);
subRule.atRuleType = subAtRuleType;
}
result = result.concat(subRules);
}
if (!sels && !isSingleAtRule) continue;
const style = parseRuleStyle(node);
const selsParsed = parseSelector(sels);
const selsAdd = selsParsed.add;
const selsArr: string[][] = selsParsed.result;
let lastRule;
// For each group of selectors
for (let k = 0, len3 = selsArr.length; k < len3; k++) {
const model = createNode(selsArr[k], style, {
atRule: AT_RULE_NAMES[type],
});
result.push(model);
lastRule = model;
}
// Need to push somewhere not class-based selectors, if some rule was
// created will push them there, otherwise will create a new rule
if (selsAdd.length) {
var selsAddStr = selsAdd.join(', ');
if (lastRule) {
lastRule.selectorsAdd = selsAddStr;
} else {
const model: CssRuleJSON = {
selectors: [],
selectorsAdd: selsAddStr,
style,
};
singleAtRule && (model.singleAtRule = singleAtRule);
atRuleType && (model.atRuleType = atRuleType);
condition && (model.mediaText = condition);
result.push(model);
}
}
}
return result;
};
/**
* Parse CSS string and return the array of objects
* @param {String} str CSS string
* @return {Array<Object>} Array of objects for the definition of CSSRules
*/
export default (str: string) => {
const el = document.createElement('style');
el.innerHTML = str;
// There is no .sheet before adding it to the <head>
document.head.appendChild(el);
const sheet = el.sheet;
document.head.removeChild(el);
return sheet ? parseNode(sheet) : [];
};