forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss-parser.ts
More file actions
492 lines (424 loc) · 13.3 KB
/
css-parser.ts
File metadata and controls
492 lines (424 loc) · 13.3 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
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
import { comment, rule, type AstNode, type Comment, type Declaration, type Rule } from './ast'
const BACKSLASH = 0x5c
const SLASH = 0x2f
const ASTERISK = 0x2a
const DOUBLE_QUOTE = 0x22
const SINGLE_QUOTE = 0x27
const COLON = 0x3a
const SEMICOLON = 0x3b
const LINE_BREAK = 0x0a
const SPACE = 0x20
const TAB = 0x09
const OPEN_CURLY = 0x7b
const CLOSE_CURLY = 0x7d
const OPEN_PAREN = 0x28
const CLOSE_PAREN = 0x29
const OPEN_BRACKET = 0x5b
const CLOSE_BRACKET = 0x5d
const DASH = 0x2d
const AT_SIGN = 0x40
const EXCLAMATION_MARK = 0x21
export function parse(input: string) {
input = input.replaceAll('\r\n', '\n')
let ast: AstNode[] = []
let licenseComments: Comment[] = []
let stack: (Rule | null)[] = []
let parent = null as Rule | null
let node = null as AstNode | null
let buffer = ''
let closingBracketStack = ''
let peekChar
for (let i = 0; i < input.length; i++) {
let currentChar = input.charCodeAt(i)
// Current character is a `\` therefore the next character is escaped,
// consume it together with the next character and continue.
//
// E.g.:
//
// ```css
// .hover\:foo:hover {}
// ^
// ```
//
if (currentChar === BACKSLASH) {
buffer += input.slice(i, i + 2)
i += 1
}
// Start of a comment.
//
// E.g.:
//
// ```css
// /* Example */
// ^^^^^^^^^^^^^
// .foo {
// color: red; /* Example */
// ^^^^^^^^^^^^^
// }
// .bar {
// color: /* Example */ red;
// ^^^^^^^^^^^^^
// }
// ```
else if (currentChar === SLASH && input.charCodeAt(i + 1) === ASTERISK) {
let start = i
for (let j = i + 2; j < input.length; j++) {
peekChar = input.charCodeAt(j)
// Current character is a `\` therefore the next character is escaped.
if (peekChar === BACKSLASH) {
j += 1
}
// End of the comment
else if (peekChar === ASTERISK && input.charCodeAt(j + 1) === SLASH) {
i = j + 1
break
}
}
let commentString = input.slice(start, i + 1)
// Collect all license comments so that we can hoist them to the top of
// the AST.
if (commentString.charCodeAt(2) === EXCLAMATION_MARK) {
licenseComments.push(comment(commentString.slice(2, -2)))
}
}
// Start of a string.
else if (currentChar === SINGLE_QUOTE || currentChar === DOUBLE_QUOTE) {
let start = i
// We need to ensure that the closing quote is the same as the opening
// quote.
//
// E.g.:
//
// ```css
// .foo {
// content: "This is a string with a 'quote' in it";
// ^ ^ -> These are not the end of the string.
// }
// ```
for (let j = i + 1; j < input.length; j++) {
peekChar = input.charCodeAt(j)
// Current character is a `\` therefore the next character is escaped.
if (peekChar === BACKSLASH) {
j += 1
}
// End of the string.
else if (peekChar === currentChar) {
i = j
break
}
// End of the line without ending the string but with a `;` at the end.
//
// E.g.:
//
// ```css
// .foo {
// content: "This is a string with a;
// ^ Missing "
// }
// ```
else if (peekChar === SEMICOLON && input.charCodeAt(j + 1) === LINE_BREAK) {
throw new Error(
`Unterminated string: ${input.slice(start, j + 1) + String.fromCharCode(currentChar)}`,
)
}
// End of the line without ending the string.
//
// E.g.:
//
// ```css
// .foo {
// content: "This is a string with a
// ^ Missing "
// }
// ```
else if (peekChar === LINE_BREAK) {
throw new Error(
`Unterminated string: ${input.slice(start, j) + String.fromCharCode(currentChar)}`,
)
}
}
// Adjust `buffer` to include the string.
buffer += input.slice(start, i + 1)
}
// Skip whitespace if the next character is also whitespace. This allows us
// to reduce the amount of whitespace in the AST.
else if (
(currentChar === SPACE || currentChar === LINE_BREAK || currentChar === TAB) &&
(peekChar = input.charCodeAt(i + 1)) &&
(peekChar === SPACE || peekChar === LINE_BREAK || peekChar === TAB)
) {
continue
}
// Replace new lines with spaces.
else if (currentChar === LINE_BREAK) {
if (buffer.length === 0) continue
peekChar = buffer.charCodeAt(buffer.length - 1)
if (peekChar !== SPACE && peekChar !== LINE_BREAK && peekChar !== TAB) {
buffer += ' '
}
}
// Start of a custom property.
//
// Custom properties are very permissive and can contain almost any
// character, even `;` and `}`. Therefore we have to make sure that we are
// at the correct "end" of the custom property by making sure everything is
// balanced.
else if (currentChar === DASH && input.charCodeAt(i + 1) === DASH && buffer.length === 0) {
let closingBracketStack = ''
let start = i
let colonIdx = -1
for (let j = i + 2; j < input.length; j++) {
peekChar = input.charCodeAt(j)
// Current character is a `\` therefore the next character is escaped.
if (peekChar === BACKSLASH) {
j += 1
}
// Start of a comment.
else if (peekChar === SLASH && input.charCodeAt(j + 1) === ASTERISK) {
for (let k = j + 2; k < input.length; k++) {
peekChar = input.charCodeAt(k)
// Current character is a `\` therefore the next character is escaped.
if (peekChar === BACKSLASH) {
k += 1
}
// End of the comment
else if (peekChar === ASTERISK && input.charCodeAt(k + 1) === SLASH) {
j = k + 1
break
}
}
}
// End of the "property" of the property-value pair.
else if (colonIdx === -1 && peekChar === COLON) {
colonIdx = buffer.length + j - start
}
// End of the custom property.
else if (peekChar === SEMICOLON && closingBracketStack.length === 0) {
buffer += input.slice(start, j)
i = j
break
}
// Start of a block.
else if (peekChar === OPEN_PAREN) {
closingBracketStack += ')'
} else if (peekChar === OPEN_BRACKET) {
closingBracketStack += ']'
} else if (peekChar === OPEN_CURLY) {
closingBracketStack += '}'
}
// End of the custom property if didn't use a `;` to end the custom
// property.
//
// E.g.:
//
// ```css
// .foo {
// --custom: value
// ^
// }
// ```
else if (
(peekChar === CLOSE_CURLY || input.length - 1 === j) &&
closingBracketStack.length === 0
) {
i = j - 1
buffer += input.slice(start, j)
break
}
// End of a block.
else if (
peekChar === CLOSE_PAREN ||
peekChar === CLOSE_BRACKET ||
peekChar === CLOSE_CURLY
) {
if (
closingBracketStack.length > 0 &&
input[j] === closingBracketStack[closingBracketStack.length - 1]
) {
closingBracketStack = closingBracketStack.slice(0, -1)
}
}
}
let declaration = parseDeclaration(buffer, colonIdx)
if (parent) {
parent.nodes.push(declaration)
} else {
ast.push(declaration)
}
buffer = ''
}
// End of a body-less at-rule.
//
// E.g.:
//
// ```css
// @charset "UTF-8";
// ^
// ```
else if (currentChar === SEMICOLON && buffer.charCodeAt(0) === AT_SIGN) {
node = rule(buffer, [])
// At-rule is nested inside of a rule, attach it to the parent.
if (parent) {
parent.nodes.push(node)
}
// We are the root node which means we are done with the current node.
else {
ast.push(node)
}
// Reset the state for the next node.
buffer = ''
node = null
}
// End of a declaration.
//
// E.g.:
//
// ```css
// .foo {
// color: red;
// ^
// }
// ```
//
else if (currentChar === SEMICOLON) {
let declaration = parseDeclaration(buffer)
if (parent) {
parent.nodes.push(declaration)
} else {
ast.push(declaration)
}
buffer = ''
}
// Start of a block.
else if (currentChar === OPEN_CURLY) {
closingBracketStack += '}'
// At this point `buffer` should resemble a selector or an at-rule.
node = rule(buffer.trim(), [])
// Attach the rule to the parent in case it's nested.
if (parent) {
parent.nodes.push(node)
}
// Push the parent node to the stack, so that we can go back once the
// nested nodes are done.
stack.push(parent)
// Make the current node the new parent, so that nested nodes can be
// attached to it.
parent = node
// Reset the state for the next node.
buffer = ''
node = null
}
// End of a block.
else if (currentChar === CLOSE_CURLY) {
if (closingBracketStack === '') {
throw new Error('Missing opening {')
}
closingBracketStack = closingBracketStack.slice(0, -1)
// When we hit a `}` and `buffer` is filled in, then it means that we did
// not complete the previous node yet. This means that we hit a
// declaration without a `;` at the end.
if (buffer.length > 0) {
// This can happen for nested at-rules.
//
// E.g.:
//
// ```css
// @layer foo {
// @tailwind utilities
// ^
// }
// ```
if (buffer.charCodeAt(0) === AT_SIGN) {
node = rule(buffer.trim(), [])
// At-rule is nested inside of a rule, attach it to the parent.
if (parent) {
parent.nodes.push(node)
}
// We are the root node which means we are done with the current node.
else {
ast.push(node)
}
// Reset the state for the next node.
buffer = ''
node = null
}
// But it can also happen for declarations.
//
// E.g.:
//
// ```css
// .foo {
// color: red
// ^
// }
// ```
else {
// Split `buffer` into a `property` and a `value`. At this point the
// comments are already removed which means that we don't have to worry
// about `:` inside of comments.
let colonIdx = buffer.indexOf(':')
// Attach the declaration to the parent.
if (parent) {
let importantIdx = buffer.indexOf('!important', colonIdx + 1)
parent.nodes.push({
kind: 'declaration',
property: buffer.slice(0, colonIdx).trim(),
value: buffer
.slice(colonIdx + 1, importantIdx === -1 ? buffer.length : importantIdx)
.trim(),
important: importantIdx !== -1,
} satisfies Declaration)
}
}
}
// We are done with the current node, which means we can go up one level
// in the stack.
let grandParent = stack.pop() ?? null
// We are the root node which means we are done and continue with the next
// node.
if (grandParent === null && parent) {
ast.push(parent)
}
// Go up one level in the stack.
parent = grandParent
// Reset the state for the next node.
buffer = ''
node = null
}
// Any other character is part of the current node.
else {
// Skip whitespace at the start of a new node.
if (
buffer.length === 0 &&
(currentChar === SPACE || currentChar === LINE_BREAK || currentChar === TAB)
) {
continue
}
buffer += String.fromCharCode(currentChar)
}
}
// If we have a leftover `buffer` that happens to start with an `@` then it
// means that we have an at-rule that is not terminated with a semicolon at
// the end of the input.
if (buffer[0] === '@') {
ast.push(rule(buffer.trim(), []))
}
// When we are done parsing then everything should be balanced. If we still
// have a leftover `parent`, then it means that we have an unterminated block.
if (closingBracketStack.length > 0 && parent) {
throw new Error(`Missing closing } at ${parent.selector}`)
}
if (licenseComments.length > 0) {
return (licenseComments as AstNode[]).concat(ast)
}
return ast
}
function parseDeclaration(buffer: string, colonIdx: number = buffer.indexOf(':')): Declaration {
let importantIdx = buffer.indexOf('!important', colonIdx + 1)
return {
kind: 'declaration',
property: buffer.slice(0, colonIdx).trim(),
value: buffer.slice(colonIdx + 1, importantIdx === -1 ? buffer.length : importantIdx).trim(),
important: importantIdx !== -1,
}
}