-
Notifications
You must be signed in to change notification settings - Fork 177
/
cssNodes.ts
1970 lines (1538 loc) · 40.2 KB
/
cssNodes.ts
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
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import { trim } from "../utils/strings";
/// <summary>
/// Nodes for the css 2.1 specification. See for reference:
/// http://www.w3.org/TR/CSS21/grammar.html#grammar
/// </summary>
export enum NodeType {
Undefined,
Identifier,
Stylesheet,
Ruleset,
Selector,
SimpleSelector,
SelectorInterpolation,
SelectorCombinator,
SelectorCombinatorParent,
SelectorCombinatorSibling,
SelectorCombinatorAllSiblings,
SelectorCombinatorShadowPiercingDescendant,
Page,
PageBoxMarginBox,
ClassSelector,
IdentifierSelector,
ElementNameSelector,
PseudoSelector,
AttributeSelector,
Declaration,
Declarations,
Property,
Expression,
BinaryExpression,
Term,
Operator,
Value,
StringLiteral,
URILiteral,
EscapedValue,
Function,
NumericValue,
HexColorValue,
MixinDeclaration,
MixinReference,
VariableName,
VariableDeclaration,
Prio,
Interpolation,
NestedProperties,
ExtendsReference,
SelectorPlaceholder,
Debug,
If,
Else,
For,
Each,
While,
MixinContentReference,
MixinContentDeclaration,
Media,
Keyframe,
FontFace,
Import,
Namespace,
Invocation,
FunctionDeclaration,
ReturnStatement,
MediaQuery,
FunctionParameter,
FunctionArgument,
KeyframeSelector,
ViewPort,
Document,
AtApplyRule,
CustomPropertyDeclaration,
CustomPropertySet,
ListEntry,
Supports,
SupportsCondition,
NamespacePrefix,
GridLine,
Plugin,
UnknownAtRule,
Use,
ModuleConfiguration,
Forward,
ForwardVisibility,
Module,
}
export enum ReferenceType {
Mixin,
Rule,
Variable,
Function,
Keyframe,
Unknown,
Module,
Forward,
ForwardVisibility,
}
export function getNodeAtOffset(node: Node, offset: number): Node | null {
let candidate: Node | null = null;
if (!node || offset < node.offset || offset > node.end) {
return null;
}
// Find the shortest node at the position
node.accept((node) => {
if (node.offset === -1 && node.length === -1) {
return true;
}
if (node.offset <= offset && node.end >= offset) {
if (!candidate) {
candidate = node;
} else if (node.length <= candidate.length) {
candidate = node;
}
return true;
}
return false;
});
return candidate;
}
export function getNodePath(node: Node, offset: number): Node[] {
let candidate = getNodeAtOffset(node, offset);
const path: Node[] = [];
while (candidate) {
path.unshift(candidate);
candidate = candidate.parent;
}
return path;
}
export function getParentDeclaration(node: Node): Declaration | null {
const decl = <Declaration>node.findParent(NodeType.Declaration);
const value = decl && decl.getValue();
if (value && value.encloses(node)) {
return decl;
}
return null;
}
export interface ITextProvider {
(offset: number, length: number): string;
}
export class Node {
public parent: Node | null;
public offset: number;
public length: number;
public get end() { return this.offset + this.length; }
public options: { [name: string]: any; } | undefined;
public textProvider: ITextProvider | undefined; // only set on the root node
private children: Node[] | undefined;
private issues: IMarker[] | undefined;
private nodeType: NodeType | undefined;
constructor(offset: number = -1, len: number = -1, nodeType?: NodeType) {
this.parent = null;
this.offset = offset;
this.length = len;
if (nodeType) {
this.nodeType = nodeType;
}
}
public set type(type: NodeType) {
this.nodeType = type;
}
public get type(): NodeType {
return this.nodeType || NodeType.Undefined;
}
private getTextProvider(): ITextProvider {
let node: Node | null = this;
while (node && !node.textProvider) {
node = node.parent;
}
if (node) {
return node.textProvider!;
}
return () => { return 'unknown'; };
}
public getText(): string {
return this.getTextProvider()(this.offset, this.length);
}
public matches(str: string): boolean {
return this.length === str.length && this.getTextProvider()(this.offset, this.length) === str;
}
public startsWith(str: string): boolean {
return this.length >= str.length && this.getTextProvider()(this.offset, str.length) === str;
}
public endsWith(str: string): boolean {
return this.length >= str.length && this.getTextProvider()(this.end - str.length, str.length) === str;
}
public accept(visitor: IVisitorFunction): void {
if (visitor(this) && this.children) {
for (const child of this.children) {
child.accept(visitor);
}
}
}
public acceptVisitor(visitor: IVisitor): void {
this.accept(visitor.visitNode.bind(visitor));
}
public adoptChild(node: Node, index: number = -1): Node {
if (node.parent && node.parent.children) {
const idx = node.parent.children.indexOf(node);
if (idx >= 0) {
node.parent.children.splice(idx, 1);
}
}
node.parent = this;
let children = this.children;
if (!children) {
children = this.children = [];
}
if (index !== -1) {
children.splice(index, 0, node);
} else {
children.push(node);
}
return node;
}
public attachTo(parent: Node, index: number = -1): Node {
if (parent) {
parent.adoptChild(this, index);
}
return this;
}
public collectIssues(results: any[]): void {
if (this.issues) {
results.push.apply(results, this.issues);
}
}
public addIssue(issue: IMarker): void {
if (!this.issues) {
this.issues = [];
}
this.issues.push(issue);
}
public hasIssue(rule: IRule): boolean {
return Array.isArray(this.issues) && this.issues.some(i => i.getRule() === rule);
}
public isErroneous(recursive: boolean = false): boolean {
if (this.issues && this.issues.length > 0) {
return true;
}
return recursive && Array.isArray(this.children) && this.children.some(c => c.isErroneous(true));
}
public setNode(field: keyof this, node: Node | null, index: number = -1): boolean {
if (node) {
node.attachTo(this, index);
(<any>this)[field] = node;
return true;
}
return false;
}
public addChild(node: Node | null): node is Node {
if (node) {
if (!this.children) {
this.children = [];
}
node.attachTo(this);
this.updateOffsetAndLength(node);
return true;
}
return false;
}
private updateOffsetAndLength(node: Node): void {
if (node.offset < this.offset || this.offset === -1) {
this.offset = node.offset;
}
const nodeEnd = node.end;
if ((nodeEnd > this.end) || this.length === -1) {
this.length = nodeEnd - this.offset;
}
}
public hasChildren(): boolean {
return !!this.children && this.children.length > 0;
}
public getChildren(): Node[] {
return this.children ? this.children.slice(0) : [];
}
public getChild(index: number): Node | null {
if (this.children && index < this.children.length) {
return this.children[index];
}
return null;
}
public addChildren(nodes: Node[]): void {
for (const node of nodes) {
this.addChild(node);
}
}
public findFirstChildBeforeOffset(offset: number): Node | null {
if (this.children) {
let current: Node | null = null;
for (let i = this.children.length - 1; i >= 0; i--) {
// iterate until we find a child that has a start offset smaller than the input offset
current = this.children[i];
if (current.offset <= offset) {
return current;
}
}
}
return null;
}
public findChildAtOffset(offset: number, goDeep: boolean): Node | null {
const current: Node | null = this.findFirstChildBeforeOffset(offset);
if (current && current.end >= offset) {
if (goDeep) {
return current.findChildAtOffset(offset, true) || current;
}
return current;
}
return null;
}
public encloses(candidate: Node): boolean {
return this.offset <= candidate.offset && this.offset + this.length >= candidate.offset + candidate.length;
}
public getParent(): Node | null {
let result = this.parent;
while (result instanceof Nodelist) {
result = result.parent;
}
return result;
}
public findParent(type: NodeType): Node | null {
let result: Node | null = this;
while (result && result.type !== type) {
result = result.parent;
}
return result;
}
public findAParent(...types: NodeType[]): Node | null {
let result: Node | null = this;
while (result && !types.some(t => result!.type === t)) {
result = result.parent;
}
return result;
}
public setData(key: string, value: any): void {
if (!this.options) {
this.options = {};
}
this.options[key] = value;
}
public getData(key: string): any {
if (!this.options || !this.options.hasOwnProperty(key)) {
return null;
}
return this.options[key];
}
}
export interface NodeConstructor<T> {
new(offset: number, len: number): T;
}
export class Nodelist extends Node {
private _nodeList: void; // workaround for https://github.com/Microsoft/TypeScript/issues/12083
constructor(parent: Node, index: number = -1) {
super(-1, -1);
this.attachTo(parent, index);
this.offset = -1;
this.length = -1;
}
}
export class Identifier extends Node {
public referenceTypes?: ReferenceType[];
public isCustomProperty = false;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Identifier;
}
public containsInterpolation(): boolean {
return this.hasChildren();
}
}
export class Stylesheet extends Node {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Stylesheet;
}
}
export class Declarations extends Node {
private _declarations: void; // workaround for https://github.com/Microsoft/TypeScript/issues/18276
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Declarations;
}
}
export class BodyDeclaration extends Node {
public declarations?: Declarations;
constructor(offset: number, length: number) {
super(offset, length);
}
public getDeclarations(): Declarations | undefined {
return this.declarations;
}
public setDeclarations(decls: Declarations | null): decls is Declarations {
return this.setNode('declarations', decls);
}
}
export class RuleSet extends BodyDeclaration {
private selectors?: Nodelist;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Ruleset;
}
public getSelectors(): Nodelist {
if (!this.selectors) {
this.selectors = new Nodelist(this);
}
return this.selectors;
}
public isNested(): boolean {
return !!this.parent && this.parent.findParent(NodeType.Declarations) !== null;
}
}
export class Selector extends Node {
private _selector: void; // workaround for https://github.com/Microsoft/TypeScript/issues/12083
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Selector;
}
}
export class SimpleSelector extends Node {
private _simpleSelector: void; // workaround for https://github.com/Microsoft/TypeScript/issues/12083
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.SimpleSelector;
}
}
export class AtApplyRule extends Node {
public identifier?: Identifier;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.AtApplyRule;
}
public setIdentifier(node: Identifier | null): node is Identifier {
return this.setNode('identifier', node, 0);
}
public getIdentifier(): Identifier | undefined {
return this.identifier;
}
public getName(): string {
return this.identifier ? this.identifier.getText() : '';
}
}
export abstract class AbstractDeclaration extends Node {
// positions for code assist
public colonPosition: number | undefined;
public semicolonPosition: number | undefined; // semicolon following the declaration
constructor(offset: number, length: number) {
super(offset, length);
}
}
export class CustomPropertySet extends BodyDeclaration {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.CustomPropertySet;
}
}
export class Declaration extends AbstractDeclaration {
public property: Property | null = null;
public value?: Expression;
public nestedProperties?: NestedProperties;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Declaration;
}
public setProperty(node: Property | null): node is Property {
return this.setNode('property', node);
}
public getProperty(): Property | null {
return this.property;
}
public getFullPropertyName(): string {
const propertyName = this.property ? this.property.getName() : 'unknown';
if (this.parent instanceof Declarations && this.parent.getParent() instanceof NestedProperties) {
const parentDecl = this.parent.getParent()!.getParent();
if (parentDecl instanceof Declaration) {
return (<Declaration>parentDecl).getFullPropertyName() + propertyName;
}
}
return propertyName;
}
public getNonPrefixedPropertyName(): string {
const propertyName = this.getFullPropertyName();
if (propertyName && propertyName.charAt(0) === '-') {
const vendorPrefixEnd = propertyName.indexOf('-', 1);
if (vendorPrefixEnd !== -1) {
return propertyName.substring(vendorPrefixEnd + 1);
}
}
return propertyName;
}
public setValue(value: Expression | null): value is Expression {
return this.setNode('value', value);
}
public getValue(): Expression | undefined {
return this.value;
}
public setNestedProperties(value: NestedProperties | null): value is NestedProperties {
return this.setNode('nestedProperties', value);
}
public getNestedProperties(): NestedProperties | undefined {
return this.nestedProperties;
}
}
export class CustomPropertyDeclaration extends Declaration {
public propertySet?: CustomPropertySet;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.CustomPropertyDeclaration;
}
public setPropertySet(value: CustomPropertySet | null): value is CustomPropertySet {
return this.setNode('propertySet', value);
}
public getPropertySet(): CustomPropertySet | undefined {
return this.propertySet;
}
}
export class Property extends Node {
public identifier?: Identifier;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Property;
}
public setIdentifier(value: Identifier | null): value is Identifier {
return this.setNode('identifier', value);
}
public getIdentifier(): Identifier | undefined {
return this.identifier;
}
public getName(): string {
return trim(this.getText(), /[_\+]+$/); /* +_: less merge */
}
public isCustomProperty(): boolean {
return !!this.identifier && this.identifier.isCustomProperty;
}
}
export class Invocation extends Node {
private arguments?: Nodelist;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Invocation;
}
public getArguments(): Nodelist {
if (!this.arguments) {
this.arguments = new Nodelist(this);
}
return this.arguments;
}
}
export class Function extends Invocation {
public identifier?: Identifier;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Function;
}
public setIdentifier(node: Identifier | null): node is Identifier {
return this.setNode('identifier', node, 0);
}
public getIdentifier(): Identifier | undefined {
return this.identifier;
}
public getName(): string {
return this.identifier ? this.identifier.getText() : '';
}
}
export class FunctionParameter extends Node {
public identifier?: Node;
public defaultValue?: Node;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.FunctionParameter;
}
public setIdentifier(node: Node | null): node is Node {
return this.setNode('identifier', node, 0);
}
public getIdentifier(): Node | undefined {
return this.identifier;
}
public getName(): string {
return this.identifier ? this.identifier.getText() : '';
}
public setDefaultValue(node: Node | null): node is Node {
return this.setNode('defaultValue', node, 0);
}
public getDefaultValue(): Node | undefined {
return this.defaultValue;
}
}
export class FunctionArgument extends Node {
public identifier?: Node;
public value?: Node;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.FunctionArgument;
}
public setIdentifier(node: Node | null): node is Node {
return this.setNode('identifier', node, 0);
}
public getIdentifier(): Node | undefined {
return this.identifier;
}
public getName(): string {
return this.identifier ? this.identifier.getText() : '';
}
public setValue(node: Node | null): node is Node {
return this.setNode('value', node, 0);
}
public getValue(): Node | undefined {
return this.value;
}
}
export class IfStatement extends BodyDeclaration {
public expression?: Expression;
public elseClause?: BodyDeclaration;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.If;
}
public setExpression(node: Expression | null): node is Expression {
return this.setNode('expression', node, 0);
}
public setElseClause(elseClause: BodyDeclaration | null): elseClause is BodyDeclaration {
return this.setNode('elseClause', elseClause);
}
}
export class ForStatement extends BodyDeclaration {
public variable?: Variable;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.For;
}
public setVariable(node: Variable | null): node is Variable {
return this.setNode('variable', node, 0);
}
}
export class EachStatement extends BodyDeclaration {
public variables?: Nodelist;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Each;
}
public getVariables(): Nodelist {
if (!this.variables) {
this.variables = new Nodelist(this);
}
return this.variables;
}
}
export class WhileStatement extends BodyDeclaration {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.While;
}
}
export class ElseStatement extends BodyDeclaration {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Else;
}
}
export class FunctionDeclaration extends BodyDeclaration {
public identifier?: Identifier;
public parameters?: Nodelist;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.FunctionDeclaration;
}
public setIdentifier(node: Identifier | null): node is Identifier {
return this.setNode('identifier', node, 0);
}
public getIdentifier(): Identifier | undefined {
return this.identifier;
}
public getName(): string {
return this.identifier ? this.identifier.getText() : '';
}
public getParameters(): Nodelist {
if (!this.parameters) {
this.parameters = new Nodelist(this);
}
return this.parameters;
}
}
export class ViewPort extends BodyDeclaration {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.ViewPort;
}
}
export class FontFace extends BodyDeclaration {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.FontFace;
}
}
export class NestedProperties extends BodyDeclaration {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.NestedProperties;
}
}
export class Keyframe extends BodyDeclaration {
public keyword?: Node;
public identifier?: Identifier;
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Keyframe;
}
public setKeyword(keyword: Node | null): keyword is Node {
return this.setNode('keyword', keyword, 0);
}
public getKeyword(): Node | undefined {
return this.keyword;
}
public setIdentifier(node: Node | null): node is Node {
return this.setNode('identifier', node, 0);
}
public getIdentifier(): Node | undefined {
return this.identifier;
}
public getName(): string {
return this.identifier ? this.identifier.getText() : '';
}
}
export class KeyframeSelector extends BodyDeclaration {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.KeyframeSelector;
}
}
export class Import extends Node {
constructor(offset: number, length: number) {
super(offset, length);
}
public get type(): NodeType {
return NodeType.Import;
}
public setMedialist(node: Node | null): node is Node {
if (node) {
node.attachTo(this);
return true;
}
return false;
}