forked from linkedin/css-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElementAnalysis.ts
1271 lines (1175 loc) · 44.5 KB
/
ElementAnalysis.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
import {
Attribute as Attr,
AttributeValueChoice,
AttributeValueChoiceOption,
AttributeValueSet,
AttributeValueSetItem,
Element,
POSITION_UNKNOWN,
SourceLocation,
Tagname,
ValueAbsent,
ValueConstant,
attrValues,
isConstant,
} from "@opticss/element-analysis";
import {
MultiMap,
ObjectDictionary,
assertNever,
objectValues,
} from "@opticss/util";
import {
AttrValue,
Attribute,
Block,
BlockClass,
Composition,
Style,
isAttrValue,
isBlockClass,
} from "../BlockTree";
import {
ResolvedConfiguration,
} from "../configuration";
import {
unionInto,
} from "../util/unionInto";
export interface HasAttrValue<T extends Style = Style> {
value: Set<T>;
}
export function hasAttrValue(o: object): o is HasAttrValue | SerializedHasAttrValue {
if (!("value" in o)) return false;
let value = (<HasAttrValue | SerializedHasAttrValue>o).value;
return (Array.isArray(value) && value.length > 0)
|| (value instanceof Set && value.size > 0);
}
export interface HasGroup<GroupType extends BlockClass | AttrValue | number = AttrValue> {
group: ObjectDictionary<GroupType>;
}
export function isAttrGroup(o: object): o is HasGroup<AttrValue | number> {
return !!(<HasGroup>o).group;
}
/**
* A boolean condition.
*/
export interface Conditional<BooleanExpression> {
condition: BooleanExpression;
}
export function isConditional<BooleanExpression>(o: object): o is Conditional<BooleanExpression> {
return "condition" in o;
}
/**
* A string expression used to switch between attribute values.
* When falsy is allowed, it's possible to disable the attribute.
*/
export interface Switch<StringExpression> {
stringExpression: StringExpression;
/** whether the attribute can be disabled. */
disallowFalsy?: boolean;
}
export function isSwitch(o: object): o is Switch<unknown> {
return "stringExpression" in o;
}
/**
* When the style container is dynamic but the style itself is not.
*/
export interface Dependency<Container extends BlockClass | number = BlockClass> {
container: Container;
}
export function hasDependency(o: object): o is Dependency<BlockClass | number> {
return "container" in o;
}
/**
* the main branch of the style-if helper and the else branch of the
* style-unless helper
*/
export interface TrueCondition<Container extends BlockClass | number = BlockClass> {
whenTrue: Array<Container>; // TODO: someday we can support more complex expressions here.
}
export function isTrueCondition(o: object): o is TrueCondition<BlockClass | number> {
return Array.isArray((<TrueCondition<BlockClass | number>>o).whenTrue);
}
/**
* the else branch of the style-if helper and the main branch of the
* style-unless helper
*/
export interface FalseCondition<Container extends BlockClass | number = BlockClass> {
whenFalse: Array<Container>; // TODO: someday we can support more complex expressions here.
}
export function isFalseCondition(o: object): o is FalseCondition<BlockClass | number> {
return Array.isArray((<FalseCondition<BlockClass | number>>o).whenFalse);
}
export interface StaticClass {
klass: BlockClass;
}
export function isStaticClass(o: object): o is StaticClass | SerializedStaticClass {
return ("klass" in o);
}
/** An attribute value that is conditionally set */
export type ConditionalAttr<BooleanExpression> = Conditional<BooleanExpression> & HasAttrValue;
/** An attribute value that is only set when its dynamic class is set */
export type DependentAttr = Dependency & HasAttrValue;
/** An attribute value that is only set when its condition is true and its dynamic class is set */
export type ConditionalDependentAttr<BooleanExpression> = Conditional<BooleanExpression> & Dependency & HasAttrValue;
/** An attribute value that is dynamic for any reason */
export type DynamicAttr<BooleanExpression> = ConditionalAttr<BooleanExpression> | DependentAttr | ConditionalDependentAttr<BooleanExpression>;
/** An attribute group where one is set conditionally */
export type ConditionalAttrGroup<StringExpression> = Switch<StringExpression> & HasGroup & HasAttrValue;
/** An attribute group that are only set when its dynamic class is set and where one (or none) is selected at runtime. */
export type ConditionalDependentAttrGroup<StringExpression> = Switch<StringExpression> & Dependency & HasGroup & HasAttrValue;
/** An attribute group that are dynamic for any reason */
export type DynamicAttrGroup<StringExpression> = ConditionalAttrGroup<StringExpression> | ConditionalDependentAttrGroup<StringExpression>;
/** Any type of dynamic attribute or group of attributes. */
export type DynamicAttrs<BooleanExpression, StringExpression> = DynamicAttr<BooleanExpression> | DynamicAttrGroup<StringExpression>;
/** a ternary expression where different classes can be set when true or false */
export type DynamicClasses<TernaryExpression> = (Conditional<TernaryExpression> & TrueCondition) |
(Conditional<TernaryExpression> & FalseCondition) |
(Conditional<TernaryExpression> & TrueCondition & FalseCondition);
export interface SerializedHasAttrValue {
value: number[];
}
export interface SerializedStaticClass {
klass: number;
}
export type SerializedConditionalAttr = Conditional<true> & SerializedHasAttrValue;
export type SerializedDependentAttr = Dependency<number> & SerializedHasAttrValue;
export type SerializedConditionalDependentAttr = Conditional<true> & Dependency<number> & SerializedHasAttrValue;
export type SerializedDynamicAttr = SerializedConditionalAttr | SerializedDependentAttr | SerializedConditionalDependentAttr;
export type SerializedConditionalAttrGroup = Switch<true> & HasGroup<number>;
export type SerializedDependentAttrGroup = Dependency<number> & HasGroup<number>;
export type SerializedConditionalDependentAttrGroup = Switch<true> & Dependency<number> & HasGroup<number>;
export type SerializedDynamicAttrGroup = SerializedConditionalAttrGroup | SerializedDependentAttrGroup | SerializedConditionalDependentAttrGroup;
export type SerializedDynamicContainer = Conditional<true> & (TrueCondition<number> | FalseCondition<number> | (TrueCondition<number> & FalseCondition<number>));
export type SerializedDynamicAttrs = SerializedDynamicAttr | SerializedDynamicAttrGroup;
export type SerializedDynamicClasses = (Conditional<true> & TrueCondition<number>)
| (Conditional<true> & FalseCondition<number>)
| (Conditional<true> & TrueCondition<number> & FalseCondition<number>);
export interface SerializedElementAnalysis {
id?: string | undefined;
tagName?: string | undefined;
sourceLocation?: SourceLocation;
staticStyles: Array<number>;
dynamicClasses: Array<SerializedDynamicContainer>;
dynamicAttributes: Array<SerializedDynamicAttrs>;
}
/**
* This serialization is just the styles that were set explicitly
* by the source code.
*/
export interface SerializedElementSourceAnalysis {
id?: string | undefined;
tagName?: string | undefined;
sourceLocation?: SourceLocation;
analyzedStyles: Array<SerializedAnalyzedStyle>;
}
type AnalyzedStyle<BooleanExpression, StringExpression, TernaryExpression> =
DependentAttr
| ConditionalDependentAttr<BooleanExpression>
| ConditionalDependentAttrGroup<StringExpression>
| StaticClass
| DynamicClasses<TernaryExpression>;
type SerializedAnalyzedStyle =
SerializedDependentAttr
| SerializedConditionalDependentAttr
| SerializedConditionalDependentAttrGroup
| SerializedStaticClass
| SerializedDynamicClasses;
/**
* This class is used to track the styles and dynamic expressions on an element
* and produce a runtime class expression in conjunction with a style mapping.
*
* This class tracks dependencies between attributes and classes and the runtime
* expression causes attributes to be removed if the parent class is not present at
* runtime.
*
* With some syntaxes, if an element has different classes on it at runtime
* from the same block, the attributes in use become ambiguous. To manage this,
* the caller must ensure that the attribute names used exist for all possible
* classes and produce an error if not. Then add the attributes for each
* possible class with multiple calls to add(Static|Dynamic)(Attribute|Attribute-Group).
* If the AST can't handle multiple references pointing at the expression node,
* the caller must clone it -- This won't result in multiple expression
* invocations unless multiple classes from the same block are applied at the
* same time -- which would be illegal.
*/
export class ElementAnalysis<BooleanExpression, StringExpression, TernaryExpression> {
static autoGenerateId = Symbol("AutoGenerateID");
/** an opaque id assigned from the analyzer for later retrieval */
id: string | undefined;
/** The name of the tag these styles are applied -- if known. */
tagName: string | undefined;
/** where the element starts and ends */
sourceLocation: SourceLocation;
/** static styles explicitly declared on this element */
static: Set<Style>;
/** blocks/classes set conditionally */
dynamicClasses: Array<DynamicClasses<TernaryExpression>>;
/** attributes set dynamically or depending on a dynamic class */
dynamicAttributes: Array<DynamicAttrs<BooleanExpression, StringExpression>>;
private explicitlyAddedStyles: Array<AnalyzedStyle<BooleanExpression, StringExpression, TernaryExpression>>;
private addedStyles: Array<AnalyzedStyle<BooleanExpression, StringExpression, TernaryExpression>>;
/** classes declared explicitly and found in at least one dynamic class expression. */
private dynamicClassExpressions: Map<BlockClass, DynamicClasses<TernaryExpression>>;
/** All the classes on this element, by block. */
private allClasses: MultiMap<Block, BlockClass>;
/** All the AttrValues on this element. */
private allAttributes: Set<AttrValue>;
/**
* All the static styles including styles implied by the explicitly specified
* styles.
*/
private allStaticStyles: Set<Style>;
private _sealed: boolean;
private _reservedClassNames: Set<string>;
/** whether all styles have been added and the styles can be analyzed now. */
get sealed(): boolean {
return this._sealed;
}
constructor(location: SourceLocation, reservedClassNames: Set<string>, tagName?: string, id?: string) {
this.id = id;
this.tagName = tagName;
this.sourceLocation = location;
this.static = new Set();
this.dynamicClasses = new Array();
this.dynamicAttributes = new Array();
this.dynamicClassExpressions = new Map();
this.allClasses = new MultiMap<Block, BlockClass>(false);
this.allStaticStyles = new Set();
this.allAttributes = new Set();
this.addedStyles = new Array();
this.explicitlyAddedStyles = new Array();
this._sealed = false;
this._reservedClassNames = reservedClassNames;
}
hasStyles(): boolean {
return this.addedStyles.length > 0;
}
/**
* Get a list of all possible block objects for the given block
* on this element that can be used a parent for an attribute.
*
* This can be called before or after being sealed.
*/
classesForBlock(block: Block): Array<BlockClass> {
return this.allClasses.get(block);
}
blocksFound(): Array<Block> {
return new Array(...this.allClasses.keys());
}
stylesFound(): Array<Style> {
let styles = new Array<Style>();
styles.push(...this.classesFound());
styles.push(...this.attributesFound());
return styles;
}
/**
* Checks if the given class or block is set on this element,
* or if it is implied by one of the other styles on this element.
*
* This can be called before or after being sealed.
*/
hasClass(klass: BlockClass): boolean {
return this.allClasses.get(klass.block).indexOf(klass) >= 0;
}
/**
* Checks if the given AttrValue is possibly set on this element,
* or if it is implied by one of the other styles on this element.
*
* This can be called before or after being sealed.
*/
hasAttribute(attr: AttrValue): boolean {
return this.allAttributes.has(attr);
}
/**
* Iterate over all static and dynamic Attributes explicitly set on this element.
* The analysis must be sealed to call this method.
* @param dynamic
* * undefined - return all attributes,
* * true - return only dynamic attributes
* * false - return only static attributes
*/
*attributesFound(dynamic?: boolean) {
this.assertSealed();
let found = new Set<AttrValue | Attribute>();
if (returnStatic(dynamic)) {
for (let s of this.static) {
if (isAttrValue(s)) {
found.add(s);
yield s;
}
}
}
if (returnDynamic(dynamic)) {
for (let dynAttr of this.dynamicAttributes) {
if (isAttrGroup(dynAttr)) {
// If an attribute group contains values, they are meant to override the applied values in a truthy case.
if (dynAttr.value.size) {
for (let s of dynAttr.value) {
if (!isAttrValue(s)) { continue; }
if (found.has(s)) { continue; }
found.add(s);
yield s;
}
}
else {
for (let s of objectValues(dynAttr.group)) {
if (!isAttrValue(s)) { continue; }
if (found.has(s)) { continue; }
found.add(s);
yield s;
}
}
} else {
for (let val of dynAttr.value) {
// Composition allow for BlockClasses to be applied in this structure. Ensure we only return attrs.
if (!isAttrValue(val)) { continue; }
if (found.has(val)) { continue; }
found.add(val);
yield val;
}
}
}
}
}
/**
* iterate over all static and dynamic blocks and classes explicitly set on this element.
*
* the analysis must be sealed to call this method.
* @param dynamic
* * undefined - return all classes,
* * true - return only dynamic classes
* * false - return only static classes
*/
*classesFound(dynamic?: boolean) {
this.assertSealed();
let found = new Set<BlockClass>();
if (returnStatic(dynamic)) {
for (let s of this.static) {
if (isBlockClass(s)) {
found.add(s);
yield s;
}
}
}
if (returnDynamic(dynamic)) {
for (let dynClass of this.dynamicClasses) {
if (isTrueCondition(dynClass)) {
for (let s of dynClass.whenTrue) {
if (found.has(s)) continue;
found.add(s);
yield s;
}
}
if (isFalseCondition(dynClass)) {
for (let s of dynClass.whenFalse) {
if (found.has(s)) continue;
found.add(s);
yield s;
}
}
}
}
}
/** Holds reference to all styles applied because of in-stylesheet composition. */
private composedStyles: Set<Style> = new Set();
/**
* Test if a given style is applied because of in-stylesheet composition.
* Used in validators to skip some of the more strict validation checks.
* @param style Style to test.
* @returns `true` or `false` depending on if the provided stye was applied because of an in-stylesheet composition.
*/
isFromComposition(style: Style): boolean { return this.composedStyles.has(style); }
/**
* Given a condition, return whether or not it should be applied and under what conditions.
* @param comp Composition The Composition we're testing against this ElementAnalysis.
* @returns True if should always be applied, False if should never be applied,
* otherwise an object detailing the application conditions.
*/
private fetchConditions(comp: Composition):
boolean
| (Switch<StringExpression> & HasGroup<AttrValue>)
| Conditional<BooleanExpression>
{
if (comp.conditions.length === 0) { return true; }
let cond = comp.conditions[0];
for (let style of this.addedStyles) {
if (isAttrGroup(style) && style.group[cond.value] === cond) {
return {
group: { [cond.value]: comp.style as AttrValue },
disallowFalsy: style.disallowFalsy,
stringExpression: style.stringExpression,
};
}
else if (hasAttrValue(style) && style.value.has(cond)) {
return isConditional(style) ? { condition: style.condition } : true;
}
}
return false;
}
getSourceAnalysis(): ElementSourceAnalysis<BooleanExpression, StringExpression, TernaryExpression> {
this.assertSealed(true);
return new ElementSourceAnalysis(this.explicitlyAddedStyles);
}
/**
* This method indicates that all styles have been added
* and can be analyzed and validated.
*/
seal() {
this.assertSealed(false);
this.explicitlyAddedStyles = [...this.addedStyles];
// After template analysis is done, we need to add all composed styles.
// Conflict validation is done at Block construction time for these.
// For every added style, check if it has a composition and apply those
// composed class values appropriately. Because these are applied by the
// build, track all Styles applied through stylesheet composition for each
// element so we can exclude them from the strict compositional validators.
for (let style of this.addedStyles) {
// if this class is applied statically,
if (isStaticClass(style)) {
// Get all composed styles from the entire inheritance chain.
for (let comp of style.klass.resolveComposedStyles()) {
// Determine the classes we're applying. States have their parent classes automagically applied.
const value = new Set(isAttrValue(comp.style) ? [comp.style.blockClass, comp.style] : [comp.style]);
// Fetch the conditions we're applying these values under.
const conditions = this.fetchConditions(comp);
// If we won't ever need to apply these values, move on.
if (conditions === false) { continue; }
// If we should always apply these conditions, statically apply what makes sense for the BlockObj.
else if (conditions === true) {
if (isAttrValue(comp.style)) {
this.addedStyles.push({ klass: comp.style.blockClass });
this.addedStyles.push({ container: comp.style.blockClass, value: new Set([comp.style]) });
}
else {
this.addedStyles.push({ klass: comp.style });
}
}
// Otherwise, these styles will be applied under these certain conditions.
else {
this.addedStyles.push({
value,
container: style.klass,
...conditions,
});
}
// Track these added styles as composed styles.
value.forEach((o) => this.composedStyles.add(o));
}
}
// Same as above but for truthy dynamic classes. We will never have fully static attributes in this case.
if (isTrueCondition(style)) {
for (let klass of style.whenTrue) {
for (let comp of klass.resolveComposedStyles()) {
const value = new Set(isAttrValue(comp.style) ? [comp.style.blockClass, comp.style] : [comp.style]);
let conditions = this.fetchConditions(comp);
if (conditions === false) { continue; }
this.addedStyles.push({
value,
container: klass,
...conditions === true ? {} : conditions,
});
value.forEach((o) => this.composedStyles.add(o));
}
}
}
// Same as above but for falsy dynamic classes. We will never have fully static attributes in this case.
if (isFalseCondition(style)) {
for (let klass of style.whenFalse) {
for (let comp of klass.resolveComposedStyles()) {
const value = new Set(isAttrValue(comp.style) ? [comp.style.blockClass, comp.style] : [comp.style]);
const conditions = this.fetchConditions(comp);
if (conditions === false) { continue; }
if (conditions === true ) {
this.addedStyles.push({
value,
container: klass,
});
} else {
this.addedStyles.push({
value,
container: klass,
...conditions,
});
}
value.forEach((o) => this.composedStyles.add(o));
}
}
}
}
let classStyles = new Array<StaticClass | DynamicClasses<TernaryExpression>>();
let attrStyles = new Array<DependentAttr | ConditionalDependentAttr<BooleanExpression> | ConditionalDependentAttrGroup<StringExpression>>();
for (let style of this.addedStyles) {
if (isStaticClass(style) || isTrueCondition(style) || isFalseCondition(style)) {
classStyles.push(style);
} else {
attrStyles.push(style);
}
}
for (let classStyle of classStyles) {
if (isStaticClass(classStyle)) {
this._addStaticClass(classStyle);
} else {
this._addDynamicClasses(classStyle);
}
}
this.prepareForAttributes();
for (let attrStyle of attrStyles) {
if (isAttrGroup(attrStyle)) {
this._addDynamicGroup(attrStyle);
} else if (isConditional(attrStyle)) {
this._addDynamicAttr(attrStyle);
} else {
this._addStaticAttr(attrStyle);
}
}
this._sealed = true;
}
/**
* This is used to add any static AttrValue even if it is part of an attribute group.
* The AttrValue is added as dynamic and conditional on its class if that
* class is dynamic.
*/
addStaticAttr(container: BlockClass, value: AttrValue) {
this.assertSealed(false);
this.addedStyles.push({ container, value: new Set([value]) });
this.mapForAttribute(value);
}
private _addStaticAttr(style: DependentAttr) {
let {container, value} = style;
if (this.dynamicClassExpressions.has(container)) {
this.dynamicAttributes.push({value, container});
} else {
for (let o of value) {
this.static.add(o);
unionInto(this.allStaticStyles, o.resolveStyles());
}
}
}
/**
* Adds an AttrValue that is toggled on and off at runtime.
*
* @param value the AttrValue that is dynamic.
* @param condition The AST node(s) representing this boolean expression.
*/
addDynamicAttr(container: BlockClass, value: AttrValue, condition: BooleanExpression) {
this.assertSealed(false);
this.addedStyles.push({ value: new Set([value]), container, condition });
this.mapForAttribute(value);
}
private _addDynamicAttr(style: ConditionalDependentAttr<BooleanExpression>) {
let {container, value, condition} = style;
if (this.dynamicClassExpressions.has(container)) {
this.dynamicAttributes.push({ value, container, condition });
} else {
this.dynamicAttributes.push({ value, condition });
}
}
/**
* Adds a group of AttrValues that are toggled between at runtime.
*
* @param container The class or block root to which the AttrValues belong.
* @param group The AttrValues that are to be chosen from. All must be children
* of the same group -- they can be from different blocks if they inherit.
* @param condition The AST node(s) representing this group -- can be used
* by the rewriter. This is just an opaque value that is passed through.
* @param disallowFalsy Whether a missing value is expected or should be
* a runtime error.
*/
addDynamicGroup(container: BlockClass, group: Attribute, stringExpression: StringExpression, disallowFalsy = false) {
this.assertSealed(false);
this.addedStyles.push({
container,
group: group.resolveValuesHash(),
value: new Set(),
stringExpression,
disallowFalsy,
});
for (let attr of group.values()) {
this.mapForAttribute(attr);
}
}
private _addDynamicGroup(style: ConditionalDependentAttrGroup<StringExpression>) {
let { container, group, stringExpression, disallowFalsy, value } = style;
if (this.dynamicClassExpressions.has(container)) {
this.dynamicAttributes.push({ group, container, stringExpression, disallowFalsy, value });
} else {
this.dynamicAttributes.push({ group, stringExpression, disallowFalsy, value });
}
}
/**
* Adds a AttrValue parent (BlockClass) that is always set on this element.
*/
addStaticClass(klass: BlockClass) {
this.assertSealed(false);
this.addedStyles.push({klass});
// We have to record this information as we add classes so that the caller
// can use it to find classes for AttrValues that it encounters.
this.mapBlocksForClass(klass);
}
private _addStaticClass(style: StaticClass) {
let {klass} = style;
this.static.add(klass);
}
private mapForAttribute(attr: AttrValue) {
for (let obj of attr.resolveStyles()) {
this.allAttributes.add(obj);
}
}
/**
* Map the class and all the classes that the explicit class implies
* to all the blocks those classes belong to via inheritance.
*
* These classes become valid containers for AttrValues even if they are not
* explicitly set on the element.
*/
private mapBlocksForClass(klass: BlockClass) {
this.allClasses.set(klass.block, klass);
for (let otherClass of klass.resolveInheritance()) {
this.allClasses.set(otherClass.block, otherClass);
}
}
/**
* Adds BlockClasses that are set based on a conditional.
* This is modeled as a ternary (if/else) expression.
*
* Nested ternaries are not supported at this time.
*/
addDynamicClasses(dynClasses: DynamicClasses<TernaryExpression>) {
this.assertSealed(false);
this.addedStyles.push(dynClasses);
// We have to record this information as we add classes so that the caller
// can use it to find classes for AttrValues that it encounters.
if (isTrueCondition(dynClasses)) {
for (let klass of dynClasses.whenTrue) {
this.mapBlocksForClass(klass);
}
}
if (isFalseCondition(dynClasses)) {
for (let klass of dynClasses.whenFalse) {
this.mapBlocksForClass(klass);
}
}
}
private _addDynamicClasses(dynClasses: DynamicClasses<TernaryExpression>) {
this.dynamicClasses.push(dynClasses);
}
assertSealed(isSealed = true) {
if (this._sealed === isSealed) return;
throw new Error(`Internal Error: The analysis is ${ this._sealed ? "" : "not yet "}sealed.`);
}
countAllStaticStyles(): number {
this.assertSealed();
return this.allStaticStyles.size;
}
*getAllStaticStyles(): IterableIterator<Style> {
this.assertSealed();
let s: Style;
for (s of this.allStaticStyles) {
yield s;
}
return;
}
/**
* Only serializes the styles that were added during source analysis.
*/
serializeSourceAnalysis(styleIndexes: Map<Style, number>): SerializedElementSourceAnalysis {
let indexOf = (style: Style) => {
if (styleIndexes.has(style)) {
return styleIndexes.get(style)!;
} else {
throw new Error("[internal error] Style missing");
}
};
let id = this.id;
let tagName = this.tagName;
let sourceLocation = this.sourceLocation;
let analyzedStyles = new Array<SerializedAnalyzedStyle>();
let addedStyles = this.sealed ? this.explicitlyAddedStyles : this.addedStyles;
for (let s of addedStyles) {
analyzedStyles.push(this.serializeAnalyzedStyle(s, indexOf));
}
return {
id,
tagName,
sourceLocation,
analyzedStyles,
};
}
serializeAnalyzedStyle(
s: AnalyzedStyle<BooleanExpression, StringExpression, TernaryExpression>,
indexOf: (s: Style) => number,
): SerializedAnalyzedStyle {
let serialized: Partial<SerializedAnalyzedStyle> = {};
if (isStaticClass(s)) {
(<SerializedStaticClass>serialized).klass = indexOf(s.klass);
}
if (isConditional(s)) {
(<Conditional<true>>serialized).condition = true;
}
if (isTrueCondition(s)) {
(<TrueCondition<number>>serialized).whenTrue = s.whenTrue.map(indexOf);
}
if (isFalseCondition(s)) {
(<FalseCondition<number>>serialized).whenFalse = s.whenFalse.map(indexOf);
}
if (hasDependency(s)) {
(<Dependency<number>>serialized).container = indexOf(s.container);
}
if (hasAttrValue(s)) {
(<SerializedHasAttrValue>serialized).value = [...s.value].map(indexOf);
}
if (isAttrGroup(s)) {
let group: ObjectDictionary<number> = {};
for (let name of Object.keys(s.group)) {
group[name] = indexOf(s.group[name]);
}
(<HasGroup<number>>serialized).group = group;
(<Switch<true>>serialized).stringExpression = true;
(<Switch<true>>serialized).disallowFalsy = s.disallowFalsy;
}
return <Required<SerializedAnalyzedStyle>>serialized;
}
static deserializeAnalyzedStyle(
element: ElementAnalysis<null, null, null>,
analyzedStyle: SerializedAnalyzedStyle,
styleRef: (n: number) => Style,
classRef: (n: number) => BlockClass,
attrValueRef: (n: number) => AttrValue,
): void {
if (isStaticClass(analyzedStyle)) {
element.addStaticClass(<BlockClass>styleRef(analyzedStyle.klass));
} else if (isConditional(analyzedStyle) && (isTrueCondition(analyzedStyle) || isFalseCondition(analyzedStyle))) {
let dynClasses: Partial<DynamicClasses<null>> = { condition: null };
if (isTrueCondition(analyzedStyle)) {
(<TrueCondition<BlockClass>>dynClasses).whenTrue = analyzedStyle.whenTrue.map(c => classRef(c));
}
if (isFalseCondition(analyzedStyle)) {
(<FalseCondition<BlockClass>>dynClasses).whenFalse = analyzedStyle.whenFalse.map(c => classRef(c));
}
element.addDynamicClasses(<Required<DynamicClasses<null>>>dynClasses);
} else if (hasDependency(analyzedStyle) && hasAttrValue(analyzedStyle)) {
let value = attrValueRef(analyzedStyle.value[0]);
let container = classRef(analyzedStyle.container);
if (isConditional(analyzedStyle)) {
element.addDynamicAttr(container, value, null);
} else {
element.addStaticAttr(container, value);
}
} else if (hasDependency(analyzedStyle) && isAttrGroup(analyzedStyle) && isSwitch(analyzedStyle)) {
let container = classRef(analyzedStyle.container);
let group: Attribute | undefined;
// Because the attribute is resolved into styles for serialization
// we have to find the attribute that is in the most specific sub-block
// of this attribute group.
for (let attrValueIdx of Object.values(analyzedStyle.group)) {
let attrValue = attrValueRef(attrValueIdx);
if (!group) {
group = attrValue.attribute;
} else if (group.block.isAncestorOf(attrValue.block)) {
group = attrValue.attribute;
}
}
element.addDynamicGroup(container, group!, null, analyzedStyle.disallowFalsy);
} else {
assertNever(analyzedStyle);
}
}
/**
* Get a simple object with no circular references that is possible to
* emit and restore as JSON.
*
* @param styleIndexes a map of block objects to a number that represents
* it in the template analysis serialization.
*/
serialize(styleIndexes: Map<Style, number>): SerializedElementAnalysis {
this.assertSealed();
let staticStyles = new Array<number>();
for (let style of this.static) {
staticStyles.push(styleIndexes.get(style)!);
}
staticStyles.sort();
let dynamicClasses = this.dynamicClasses.map(c => this.serializeDynamicContainer(c, styleIndexes));
let dynamicAttributes = this.dynamicAttributes.map(s => this.serializeDynamicAttrs(s, styleIndexes));
let serialization: SerializedElementAnalysis = {
staticStyles,
dynamicClasses,
dynamicAttributes,
};
if (this.tagName) {
serialization.tagName = this.tagName;
}
if (this.sourceLocation.start.line !== POSITION_UNKNOWN.line) {
serialization.sourceLocation = {
start: { line: this.sourceLocation.start.line },
};
if (typeof this.sourceLocation.start.column === "number") {
serialization.sourceLocation.start.column = this.sourceLocation.start.column;
}
if (this.sourceLocation.start.filename) {
serialization.sourceLocation.start.filename = this.sourceLocation.start.filename;
}
if (this.sourceLocation.end) {
serialization.sourceLocation.end = {
line: this.sourceLocation.end.line,
};
if (typeof this.sourceLocation.end.column === "number") {
serialization.sourceLocation.end.column = this.sourceLocation.end.column;
}
if (this.sourceLocation.end.filename) {
serialization.sourceLocation.end.filename = this.sourceLocation.end.filename;
}
}
}
return serialization;
}
private serializeDynamicContainer(c: DynamicClasses<TernaryExpression>, styleIndexes: Map<Style, number>): SerializedDynamicContainer {
let classes: SerializedDynamicContainer = {
condition: true,
whenFalse: [],
whenTrue: [],
};
if (isTrueCondition(c)) {
classes.whenTrue = c.whenTrue.map(s => styleIndexes.get(s)!).sort();
} else {
delete classes.whenTrue;
}
if (isFalseCondition(c)) {
classes.whenFalse = c.whenFalse.map(s => styleIndexes.get(s)!).sort();
} else {
delete classes.whenFalse;
}
return classes;
}
private serializeDynamicAttrs(c: DynamicAttrs<BooleanExpression, StringExpression>, styleIndexes: Map<Style, number>): SerializedDynamicAttrs {
let dynAttr = {
stringExpression: true,
condition: true,
value: [0],
group: {} as ObjectDictionary<number>,
container: 0,
disallowFalsy: false,
};
if (!isConditional(c)) {
delete dynAttr.condition;
}
if (!isSwitch(c)) {
delete dynAttr.stringExpression;
delete dynAttr.disallowFalsy;
} else {
if (c.disallowFalsy) {
dynAttr.disallowFalsy = true;
} else {
delete dynAttr.disallowFalsy;
}
}
if (hasDependency(c)) {
dynAttr.container = styleIndexes.get(c.container)!;
} else {
delete dynAttr.container;
}
if (isAttrGroup(c)) {
delete dynAttr.value;
for (let k of Object.keys(c.group)) {
dynAttr.group[k] = styleIndexes.get(c.group[k])!;
}
} else {
delete dynAttr.group;
}
dynAttr.value = [...c.value].map((o) => styleIndexes.get(o)!);
return dynAttr;
}
/**
* Compute an OptiCSS element description and a map of class names back to
* the block objects for use in re-writing.
*
* This mapping of classname to block object is stable and the keys can be
* assumed to be unique per Style across all blocks -- so these
* maps can be merged safely.
*/
forOptimizer(configuration: ResolvedConfiguration): [Element, Map<string, Style>] {
this.assertSealed();
let tagValue = this.tagName ? attrValues.constant(this.tagName) : attrValues.unknown();
let tagName = new Tagname(tagValue);
let classes = new Array<AttributeValueSetItem>();
let classMap = new Map<string, Style>();
for (let style of this.allStaticStyles) {
let classNames = style.cssClassesWithAliases(configuration, this._reservedClassNames);
classNames.forEach(className => {
classes.push(attrValues.constant(className));
classMap.set(className, style);
});
}
let mapper: ClassMapper = mapClasses.bind(null, configuration, this._reservedClassNames, classMap);
let choices: ChoiceMapper = mapChoiceClasses.bind(null, configuration, this._reservedClassNames, classMap);
let depAttrsMap = new MultiMap<BlockClass, DynamicAttrs<BooleanExpression, StringExpression>>();
for (let dynAttr of this.dynamicAttributes) {
if (hasDependency(dynAttr)) {
depAttrsMap.set(dynAttr.container, dynAttr);
}
}
let dynAttrsHandled = new Set<DynamicAttrs<BooleanExpression, StringExpression>>();
for (let dynContainer of this.dynamicClasses) {
let trueClasses: AttributeValueSet | ValueConstant | ValueAbsent = attrValues.absent();
let falseClasses: AttributeValueSet | ValueConstant | ValueAbsent = attrValues.absent();
if (isTrueCondition(dynContainer)) {
trueClasses = dynamicClassAndDependentAttrs(
dynContainer.whenTrue, depAttrsMap, dynAttrsHandled, mapper, choices);
}