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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
|
"use strict";
const propertyDefinitions = require("./generated/propertyDefinitions");
const { hasVarFunc, isGlobalKeyword, isValidPropertyValue, splitValue } = require("./parsers");
const background = require("./properties/background");
const backgroundColor = require("./properties/backgroundColor");
const backgroundSize = require("./properties/backgroundSize");
const border = require("./properties/border");
const borderWidth = require("./properties/borderWidth");
const borderStyle = require("./properties/borderStyle");
const borderColor = require("./properties/borderColor");
const borderTop = require("./properties/borderTop");
const borderRight = require("./properties/borderRight");
const borderBottom = require("./properties/borderBottom");
const borderLeft = require("./properties/borderLeft");
const flex = require("./properties/flex");
const font = require("./properties/font");
const margin = require("./properties/margin");
const padding = require("./properties/padding");
/* constants */
const BORDER_IMAGE = "border-image";
const TOP = "top";
const RIGHT = "right";
const BOTTOM = "bottom";
const LEFT = "left";
const WIDTH = "width";
const STYLE = "style";
const COLOR = "color";
const NONE = "none";
const TRBL_INDICES = {
[TOP]: 0,
[RIGHT]: 1,
[BOTTOM]: 2,
[LEFT]: 3
};
/* shorthands */
const shorthandProperties = new Map([
[background.property, background],
[
border.property,
{
definition: border.definition,
parse: border.parse,
shorthandFor: new Map([
...border.shorthandFor,
...border.positionShorthandFor,
[BORDER_IMAGE, null]
])
}
],
[borderWidth.property, borderWidth],
[borderStyle.property, borderStyle],
[borderColor.property, borderColor],
[borderTop.property, borderTop],
[borderRight.property, borderRight],
[borderBottom.property, borderBottom],
[borderLeft.property, borderLeft],
["flex", flex],
["font", font],
["margin", margin],
["padding", padding]
]);
/* borders */
const borderProperties = new Set([
border.property,
BORDER_IMAGE,
...border.shorthandFor.keys(),
...border.positionShorthandFor.keys(),
...borderTop.shorthandFor.keys(),
...borderRight.shorthandFor.keys(),
...borderBottom.shorthandFor.keys(),
...borderLeft.shorthandFor.keys()
]);
const borderPositions = new Set([TOP, RIGHT, BOTTOM, LEFT]);
const borderLines = new Set([WIDTH, STYLE, COLOR]);
/**
* Ensures consistent object shape.
*
* @param {string} property - The property name.
* @param {string} [value=""] - The property value.
* @param {string} [priority=""] - The priority.
* @returns {Object} The property item object.
*/
const createPropertyItem = (property, value = "", priority = "") => ({
property,
value,
priority
});
/**
* Retrieves a property item from the map or creates a default one if it doesn't exist.
*
* @param {string} property - The name of the property.
* @param {Map} properties - The map containing all properties.
* @returns {Object} The property item containing name, value, and priority.
*/
const getPropertyItem = (property, properties) => {
const propertyItem = properties.get(property) ?? createPropertyItem(property);
return propertyItem;
};
/**
* Calculates the value for a specific position (top, right, bottom, left)
* based on the array of values provided for a shorthand property.
*
* @param {string[]} positionValues - The values extracted from the shorthand property.
* @param {string} position - The specific position (top, right, bottom, left) to retrieve.
* @returns {string} The calculated value for the position.
*/
const getPositionValue = (positionValues, position) => {
const [val1, val2, val3, val4] = positionValues;
const index = TRBL_INDICES[position] ?? -1;
// If a specific position (top, right, bottom, left) is requested.
if (index !== -1) {
switch (positionValues.length) {
case 2: {
// Index 0 (Top) & 2 (Bottom) -> val1
// Index 1 (Right) & 3 (Left) -> val2
return index % 2 === 0 ? val1 : val2;
}
case 3: {
// Index 0 (Top) -> val1
// Index 1 (Right) & 3 (Left) -> val2
// Index 2 (Bottom) -> val3
if (index === 2) {
return val3;
}
return index % 2 === 0 ? val1 : val2;
}
case 4: {
return positionValues[index];
}
case 1:
default: {
return val1;
}
}
}
// Fallback logic for when no specific position is requested.
switch (positionValues.length) {
case 2: {
if (val1 === val2) {
return val1;
}
return `${val1} ${val2}`;
}
case 3: {
if (val1 === val3) {
if (val1 === val2) {
return val1;
}
return `${val1} ${val2}`;
}
return `${val1} ${val2} ${val3}`;
}
case 4: {
if (val2 === val4) {
if (val1 === val3) {
if (val1 === val2) {
return val1;
}
return `${val1} ${val2}`;
}
return `${val1} ${val2} ${val3}`;
}
return `${val1} ${val2} ${val3} ${val4}`;
}
case 1:
default: {
return val1;
}
}
};
/**
* Replaces the background shorthand property based on individual longhand values.
*
* @param {string} property - The specific background longhand property being updated.
* @param {Map} properties - The map of all properties.
* @param {Object} opt - Parsing options including global object and configurations.
* @returns {string} The constructed background shorthand string.
*/
const replaceBackgroundShorthand = (property, properties, opt) => {
const { value: propertyValue } = properties.get(property);
const parsedValue = background.shorthandFor.get(property).parse(propertyValue, opt);
const values = splitValue(parsedValue, {
delimiter: ","
});
const { value: shorthandValue } = properties.get(background.property);
const bgValues = background.parse(shorthandValue, opt);
const bgLength = bgValues.length;
if (property === backgroundColor.property) {
bgValues[bgLength - 1][property] = parsedValue[0];
} else {
for (let i = 0; i < bgLength; i++) {
bgValues[i][property] = values[i];
}
}
const backgrounds = [];
for (const bgValue of bgValues) {
const bg = [];
for (const [longhand, value] of Object.entries(bgValue)) {
if (!value || value === background.initialValues.get(longhand)) {
continue;
}
if (longhand === backgroundSize.property) {
bg.push(`/ ${value}`);
} else {
bg.push(value);
}
}
backgrounds.push(bg.join(" "));
}
return backgrounds.join(", ");
};
/**
* Checks if a property value matches the value within a border shorthand.
*
* @param {string} property - The property to check.
* @param {string} value - The value to compare.
* @param {string} shorthandValue - The shorthand string to parse and compare against.
* @param {Object} [opt={}] - Parsing options.
* @returns {boolean} True if the value matches the shorthand's value.
*/
const matchesBorderShorthandValue = (property, value, shorthandValue, opt = {}) => {
const { globalObject, options } = opt;
const obj = border.parse(shorthandValue, {
globalObject,
options
});
if (Object.hasOwn(obj, property)) {
return value === obj[property];
}
return value === border.initialValues.get(property);
};
/**
* Replaces or updates a value within a border shorthand string.
*
* @param {string} value - The new value to insert.
* @param {string} shorthandValue - The existing shorthand string.
* @param {Object} [opt={}] - Parsing options.
* @returns {string} The updated border shorthand string.
*/
const replaceBorderShorthandValue = (value, shorthandValue, opt = {}) => {
const { globalObject, options } = opt;
const borderFirstInitialKey = border.initialValues.keys().next().value;
const borderFirstInitialValue = border.initialValues.get(borderFirstInitialKey);
const parseOpt = {
globalObject,
options
};
const valueObj = border.parse(value, parseOpt);
const shorthandObj = shorthandValue
? border.parse(shorthandValue, parseOpt)
: {
[borderFirstInitialKey]: borderFirstInitialValue
};
const keys = border.shorthandFor.keys();
for (const key of keys) {
const initialValue = border.initialValues.get(key);
let parsedValue = initialValue;
if (Object.hasOwn(valueObj, key)) {
parsedValue = valueObj[key];
}
if (parsedValue === initialValue) {
if (key === borderFirstInitialKey) {
if (!Object.hasOwn(shorthandObj, key)) {
shorthandObj[key] = parsedValue;
}
} else {
delete shorthandObj[key];
}
} else {
shorthandObj[key] = parsedValue;
if (
shorthandObj[borderFirstInitialKey] &&
shorthandObj[borderFirstInitialKey] === borderFirstInitialValue
) {
delete shorthandObj[borderFirstInitialKey];
}
}
}
return Object.values(shorthandObj).join(" ");
};
/**
* Replaces a value at a specific position (top, right, bottom, left) within a position shorthand.
*
* @param {string} value - The new value to set.
* @param {string[]} positionValues - The array of existing position values.
* @param {string} position - The position to update.
* @returns {string} The updated shorthand string.
*/
const replacePositionValue = (value, positionValues, position) => {
const index = TRBL_INDICES[position] ?? -1;
let currentValues = positionValues;
if (index !== -1) {
// Loop for reducing array length (instead of recursion)
while (true) {
const [val1, val2, val3, val4] = currentValues;
switch (currentValues.length) {
case 2: {
if (val1 === val2) {
currentValues = [val1];
continue;
}
switch (index) {
// Top
case 0: {
if (val1 === value) {
return currentValues.join(" ");
}
return `${value} ${val2} ${val1}`;
}
// Right
case 1: {
if (val2 === value) {
return currentValues.join(" ");
}
return `${val1} ${value} ${val1} ${val2}`;
}
// Bottom
case 2: {
if (val1 === value) {
return currentValues.join(" ");
}
return `${val1} ${val2} ${value}`;
}
// Left
case 3:
default: {
if (val2 === value) {
return currentValues.join(" ");
}
return `${val1} ${val2} ${val1} ${value}`;
}
}
}
case 3: {
if (val1 === val3) {
currentValues = [val1, val2];
continue;
}
switch (index) {
// Top
case 0: {
if (val1 === value) {
return currentValues.join(" ");
} else if (val3 === value) {
return `${value} ${val2}`;
}
return `${value} ${val2} ${val3}`;
}
// Right
case 1: {
if (val2 === value) {
return currentValues.join(" ");
}
return `${val1} ${value} ${val3} ${val2}`;
}
// Bottom
case 2: {
if (val3 === value) {
return currentValues.join(" ");
} else if (val1 === value) {
return `${val1} ${val2}`;
}
return `${val1} ${val2} ${value}`;
}
// Left
case 3:
default: {
if (val2 === value) {
return currentValues.join(" ");
}
return `${val1} ${val2} ${val3} ${value}`;
}
}
}
case 4: {
if (val2 === val4) {
currentValues = [val1, val2, val3];
continue;
}
switch (index) {
// Top
case 0: {
if (val1 === value) {
return currentValues.join(" ");
}
return `${value} ${val2} ${val3} ${val4}`;
}
// Right
case 1: {
if (val2 === value) {
return currentValues.join(" ");
} else if (val4 === value) {
return `${val1} ${value} ${val3}`;
}
return `${val1} ${value} ${val3} ${val4}`;
}
// Bottom
case 2: {
if (val3 === value) {
return currentValues.join(" ");
}
return `${val1} ${val2} ${value} ${val4}`;
}
// Left
case 3:
default: {
if (val4 === value) {
return currentValues.join(" ");
} else if (val2 === value) {
return `${val1} ${val2} ${val3}`;
}
return `${val1} ${val2} ${val3} ${value}`;
}
}
}
case 1:
default: {
const [val] = currentValues;
if (val === value) {
return currentValues.join(" ");
}
switch (index) {
// Top
case 0: {
return `${value} ${val} ${val}`;
}
// Right
case 1: {
return `${val} ${value} ${val} ${val}`;
}
// Bottom
case 2: {
return `${val} ${val} ${value}`;
}
// Left
case 3:
default: {
return `${val} ${val} ${val} ${value}`;
}
}
}
}
}
}
// Fallback logic for when no specific position is requested.
const [val1, val2, val3, val4] = currentValues;
switch (currentValues.length) {
case 2: {
if (val1 === val2) {
return val1;
}
return `${val1} ${val2}`;
}
case 3: {
if (val1 === val3) {
if (val1 === val2) {
return val1;
}
return `${val1} ${val2}`;
}
return `${val1} ${val2} ${val3}`;
}
case 4: {
if (val2 === val4) {
if (val1 === val3) {
if (val1 === val2) {
return val1;
}
return `${val1} ${val2}`;
}
return `${val1} ${val2} ${val3}`;
}
return `${val1} ${val2} ${val3} ${val4}`;
}
case 1:
default: {
return val1;
}
}
};
/**
* Handles border property preparation when the value is a string.
*
* @param {Object} params - The parameters object.
* @param {string} params.property - The property name.
* @param {string} params.value - The property value.
* @param {string} params.priority - The property priority.
* @param {Map} params.properties - The map of properties.
* @param {Object} params.parts - The split property name parts.
* @param {Object} params.opt - Parsing options.
* @param {Map} params.borderItems - The map to store processed border items.
*/
const prepareBorderStringValue = ({
property,
value,
priority,
properties,
parts,
opt,
borderItems
}) => {
const { prop1, prop2, prop3 } = parts;
const { globalObject, options } = opt;
const parseOpt = {
globalObject,
options
};
const shorthandItem = getPropertyItem(border.property, properties);
const imageItem = getPropertyItem(BORDER_IMAGE, properties);
// Handle longhand properties.
if (prop3) {
const lineProperty = `${prop1}-${prop3}`;
const lineItem = getPropertyItem(lineProperty, properties);
const positionProperty = `${prop1}-${prop2}`;
const positionItem = getPropertyItem(positionProperty, properties);
const longhandProperty = `${prop1}-${prop2}-${prop3}`;
const longhandItem = getPropertyItem(longhandProperty, properties);
longhandItem.value = value;
longhandItem.priority = priority;
const propertyValue = hasVarFunc(value) ? "" : value;
if (propertyValue === "") {
shorthandItem.value = "";
lineItem.value = "";
positionItem.value = "";
} else if (isGlobalKeyword(propertyValue)) {
if (shorthandItem.value !== propertyValue) {
shorthandItem.value = "";
}
if (lineItem.value !== propertyValue) {
lineItem.value = "";
}
if (positionItem.value !== propertyValue) {
positionItem.value = "";
}
} else {
if (
shorthandItem.value &&
!matchesBorderShorthandValue(lineProperty, propertyValue, shorthandItem.value, parseOpt)
) {
shorthandItem.value = "";
}
if (lineItem.value) {
lineItem.value = replacePositionValue(propertyValue, splitValue(lineItem.value), prop2);
}
if (
positionItem.value &&
!matchesBorderShorthandValue(lineProperty, propertyValue, positionItem.value, parseOpt)
) {
positionItem.value = "";
}
}
borderItems.set(border.property, shorthandItem);
borderItems.set(BORDER_IMAGE, imageItem);
borderItems.set(lineProperty, lineItem);
borderItems.set(positionProperty, positionItem);
borderItems.set(longhandProperty, longhandItem);
// Handle side-specific border shorthands (border-top, border-right, border-bottom, border-left).
} else if (prop2 && borderPositions.has(prop2)) {
const lineWidthProperty = `${prop1}-width`;
const lineWidthItem = getPropertyItem(lineWidthProperty, properties);
const lineStyleProperty = `${prop1}-style`;
const lineStyleItem = getPropertyItem(lineStyleProperty, properties);
const lineColorProperty = `${prop1}-color`;
const lineColorItem = getPropertyItem(lineColorProperty, properties);
const positionProperty = `${prop1}-${prop2}`;
const positionItem = getPropertyItem(positionProperty, properties);
positionItem.value = value;
positionItem.priority = priority;
const propertyValue = hasVarFunc(value) ? "" : value;
if (propertyValue === "") {
shorthandItem.value = "";
lineWidthItem.value = "";
lineStyleItem.value = "";
lineColorItem.value = "";
} else if (isGlobalKeyword(propertyValue)) {
if (shorthandItem.value !== propertyValue) {
shorthandItem.value = "";
}
if (lineWidthItem.value !== propertyValue) {
lineWidthItem.value = "";
}
if (lineStyleItem.value !== propertyValue) {
lineStyleItem.value = "";
}
if (lineColorItem.value !== propertyValue) {
lineColorItem.value = "";
}
} else {
if (
shorthandItem.value &&
!matchesBorderShorthandValue(property, propertyValue, shorthandItem.value, parseOpt)
) {
shorthandItem.value = "";
}
if (
lineWidthItem.value &&
isValidPropertyValue(lineWidthProperty, propertyValue, globalObject)
) {
lineWidthItem.value = propertyValue;
}
if (
lineStyleItem.value &&
isValidPropertyValue(lineStyleProperty, propertyValue, globalObject)
) {
lineStyleItem.value = propertyValue;
}
if (
lineColorItem.value &&
isValidPropertyValue(lineColorProperty, propertyValue, globalObject)
) {
lineColorItem.value = propertyValue;
}
}
for (const line of borderLines) {
const longhandProperty = `${prop1}-${prop2}-${line}`;
const longhandItem = getPropertyItem(longhandProperty, properties);
longhandItem.value = propertyValue;
longhandItem.priority = priority;
borderItems.set(longhandProperty, longhandItem);
}
borderItems.set(border.property, shorthandItem);
borderItems.set(BORDER_IMAGE, imageItem);
borderItems.set(lineWidthProperty, lineWidthItem);
borderItems.set(lineStyleProperty, lineStyleItem);
borderItems.set(lineColorProperty, lineColorItem);
borderItems.set(positionProperty, positionItem);
// Handle property-specific border shorthands (border-width, border-style, border-color).
} else if (prop2 && borderLines.has(prop2)) {
const lineProperty = `${prop1}-${prop2}`;
const lineItem = getPropertyItem(lineProperty, properties);
lineItem.value = value;
lineItem.priority = priority;
const propertyValue = hasVarFunc(value) ? "" : value;
if (propertyValue === "") {
shorthandItem.value = "";
} else if (isGlobalKeyword(propertyValue)) {
if (shorthandItem.value !== propertyValue) {
shorthandItem.value = "";
}
}
for (const position of borderPositions) {
const positionProperty = `${prop1}-${position}`;
const positionItem = getPropertyItem(positionProperty, properties);
const longhandProperty = `${prop1}-${position}-${prop2}`;
const longhandItem = getPropertyItem(longhandProperty, properties);
if (propertyValue) {
positionItem.value = replaceBorderShorthandValue(
propertyValue,
positionItem.value,
parseOpt
);
} else {
positionItem.value = "";
}
longhandItem.value = propertyValue;
longhandItem.priority = priority;
borderItems.set(positionProperty, positionItem);
borderItems.set(longhandProperty, longhandItem);
}
borderItems.set(border.property, shorthandItem);
borderItems.set(BORDER_IMAGE, imageItem);
borderItems.set(lineProperty, lineItem);
// Handle border shorthand.
} else {
const propertyValue = hasVarFunc(value) ? "" : value;
imageItem.value = propertyValue ? NONE : "";
for (const line of borderLines) {
const lineProperty = `${prop1}-${line}`;
const lineItem = getPropertyItem(lineProperty, properties);
lineItem.value = propertyValue;
lineItem.priority = priority;
borderItems.set(lineProperty, lineItem);
}
for (const position of borderPositions) {
const positionProperty = `${prop1}-${position}`;
const positionItem = getPropertyItem(positionProperty, properties);
positionItem.value = propertyValue;
positionItem.priority = priority;
borderItems.set(positionProperty, positionItem);
for (const line of borderLines) {
const longhandProperty = `${positionProperty}-${line}`;
const longhandItem = getPropertyItem(longhandProperty, properties);
longhandItem.value = propertyValue;
longhandItem.priority = priority;
borderItems.set(longhandProperty, longhandItem);
}
}
borderItems.set(property, shorthandItem);
borderItems.set(BORDER_IMAGE, imageItem);
}
};
/**
* Handles border property preparation when the value is an array.
*
* @param {Object} params - The parameters object.
* @param {Array} params.value - The property value.
* @param {string} params.priority - The property priority.
* @param {Map} params.properties - The map of properties.
* @param {Object} params.parts - The split property name parts.
* @param {Object} params.opt - Parsing options.
* @param {Map} params.borderItems - The map to store processed border items.
*/
const prepareBorderArrayValue = ({ value, priority, properties, parts, opt, borderItems }) => {
const { prop1, prop2 } = parts;
const { globalObject, options } = opt;
const parseOpt = {
globalObject,
options
};
if (!value.length || !borderLines.has(prop2)) {
return;
}
const shorthandItem = getPropertyItem(border.property, properties);
const imageItem = getPropertyItem(BORDER_IMAGE, properties);
const lineProperty = `${prop1}-${prop2}`;
const lineItem = getPropertyItem(lineProperty, properties);
if (value.length === 1) {
const [propertyValue] = value;
if (shorthandItem.value) {
if (hasVarFunc(shorthandItem.value)) {
shorthandItem.value = "";
} else if (propertyValue) {
shorthandItem.value = replaceBorderShorthandValue(
propertyValue,
shorthandItem.value,
parseOpt
);
}
}
} else {
shorthandItem.value = "";
}
lineItem.value = value.join(" ");
lineItem.priority = priority;
const positionValues = {};
const [val1, val2, val3, val4] = value;
switch (value.length) {
case 2: {
positionValues.top = val1;
positionValues.right = val2;
positionValues.bottom = val1;
positionValues.left = val2;
break;
}
case 3: {
positionValues.top = val1;
positionValues.right = val2;
positionValues.bottom = val3;
positionValues.left = val2;
break;
}
case 4: {
positionValues.top = val1;
positionValues.right = val2;
positionValues.bottom = val3;
positionValues.left = val4;
break;
}
case 1:
default: {
positionValues.top = val1;
positionValues.right = val1;
positionValues.bottom = val1;
positionValues.left = val1;
}
}
for (const position of borderPositions) {
const positionProperty = `${prop1}-${position}`;
const positionItem = getPropertyItem(positionProperty, properties);
if (positionItem.value && positionValues[position]) {
positionItem.value = replaceBorderShorthandValue(
positionValues[position],
positionItem.value,
parseOpt
);
}
const longhandProperty = `${positionProperty}-${prop2}`;
const longhandItem = getPropertyItem(longhandProperty, properties);
longhandItem.value = positionValues[position];
longhandItem.priority = priority;
borderItems.set(positionProperty, positionItem);
borderItems.set(longhandProperty, longhandItem);
}
borderItems.set(border.property, shorthandItem);
borderItems.set(BORDER_IMAGE, imageItem);
borderItems.set(lineProperty, lineItem);
};
/**
* Handles border property preparation when the value is an object.
*
* @param {Object} params - The parameters object.
* @param {string} params.property - The property name.
* @param {Object} params.value - The property value.
* @param {string} params.priority - The property priority.
* @param {Map} params.properties - The map of properties.
* @param {Object} params.parts - The split property name parts.
* @param {Object} params.opt - Parsing options.
* @param {Map} params.borderItems - The map to store processed border items.
*/
const prepareBorderObjectValue = ({
property,
value,
priority,
properties,
parts,
opt,
borderItems
}) => {
const { prop1, prop2 } = parts;
const { globalObject, options } = opt;
const parseOpt = {
globalObject,
options
};
const imageItem = getPropertyItem(BORDER_IMAGE, properties);
// Handle position shorthands.
if (prop2) {
if (!borderPositions.has(prop2)) {
return;
}
const shorthandItem = getPropertyItem(border.property, properties);
const lineWidthProperty = `${prop1}-width`;
const lineWidthItem = getPropertyItem(lineWidthProperty, properties);
const lineStyleProperty = `${prop1}-style`;
const lineStyleItem = getPropertyItem(lineStyleProperty, properties);
const lineColorProperty = `${prop1}-color`;
const lineColorItem = getPropertyItem(lineColorProperty, properties);
const positionProperty = `${prop1}-${prop2}`;
const positionItem = getPropertyItem(positionProperty, properties);
if (shorthandItem.value) {
for (const positionValue of Object.values(value)) {
if (!matchesBorderShorthandValue(property, positionValue, shorthandItem.value, parseOpt)) {
shorthandItem.value = "";
break;
}
}
}
positionItem.value = Object.values(value).join(" ");
positionItem.priority = priority;
for (const line of borderLines) {
const longhandProperty = `${prop1}-${prop2}-${line}`;
const longhandItem = getPropertyItem(longhandProperty, properties);
const itemValue = Object.hasOwn(value, longhandProperty)
? value[longhandProperty]
: border.initialValues.get(`${prop1}-${line}`);
if (line === WIDTH && lineWidthItem.value) {
lineWidthItem.value = replacePositionValue(
itemValue,
splitValue(lineWidthItem.value),
prop2
);
} else if (line === STYLE && lineStyleItem.value) {
lineStyleItem.value = replacePositionValue(
itemValue,
splitValue(lineStyleItem.value),
prop2
);
} else if (line === COLOR && lineColorItem.value) {
lineColorItem.value = replacePositionValue(
itemValue,
splitValue(lineColorItem.value),
prop2
);
}
longhandItem.value = itemValue;
longhandItem.priority = priority;
borderItems.set(longhandProperty, longhandItem);
}
borderItems.set(border.property, shorthandItem);
borderItems.set(BORDER_IMAGE, imageItem);
borderItems.set(lineWidthProperty, lineWidthItem);
borderItems.set(lineStyleProperty, lineStyleItem);
borderItems.set(lineColorProperty, lineColorItem);
borderItems.set(positionProperty, positionItem);
// Handle border shorthand.
} else {
const shorthandItem = getPropertyItem(prop1, properties);
const lineWidthProperty = `${prop1}-width`;
const lineWidthItem = getPropertyItem(lineWidthProperty, properties);
const lineStyleProperty = `${prop1}-style`;
const lineStyleItem = getPropertyItem(lineStyleProperty, properties);
const lineColorProperty = `${prop1}-color`;
const lineColorItem = getPropertyItem(lineColorProperty, properties);
const propertyValue = Object.values(value).join(" ");
shorthandItem.value = propertyValue;
shorthandItem.priority = priority;
imageItem.value = propertyValue ? NONE : "";
if (Object.hasOwn(value, lineWidthProperty)) {
lineWidthItem.value = value[lineWidthProperty];
} else {
lineWidthItem.value = border.initialValues.get(lineWidthProperty);
}
lineWidthItem.priority = priority;
if (Object.hasOwn(value, lineStyleProperty)) {
lineStyleItem.value = value[lineStyleProperty];
} else {
lineStyleItem.value = border.initialValues.get(lineStyleProperty);
}
lineStyleItem.priority = priority;
if (Object.hasOwn(value, lineColorProperty)) {
lineColorItem.value = value[lineColorProperty];
} else {
lineColorItem.value = border.initialValues.get(lineColorProperty);
}
lineColorItem.priority = priority;
for (const position of borderPositions) {
const positionProperty = `${prop1}-${position}`;
const positionItem = getPropertyItem(positionProperty, properties);
positionItem.value = propertyValue;
positionItem.priority = priority;
for (const line of borderLines) {
const longhandProperty = `${positionProperty}-${line}`;
const longhandItem = getPropertyItem(longhandProperty, properties);
const lineProperty = `${prop1}-${line}`;
if (Object.hasOwn(value, lineProperty)) {
longhandItem.value = value[lineProperty];
} else {
longhandItem.value = border.initialValues.get(lineProperty);
}
longhandItem.priority = priority;
borderItems.set(longhandProperty, longhandItem);
}
borderItems.set(positionProperty, positionItem);
}
borderItems.set(property, shorthandItem);
borderItems.set(BORDER_IMAGE, imageItem);
borderItems.set(lineWidthProperty, lineWidthItem);
borderItems.set(lineStyleProperty, lineStyleItem);
borderItems.set(lineColorProperty, lineColorItem);
}
};
/**
* Prepares border properties by splitting shorthands and handling updates.
*
* @param {string} property - The border property name.
* @param {string|Array|Object} value - The value of the property.
* @param {string} priority - The priority of the property (e.g., "important").
* @param {Map} properties - The map of all properties.
* @param {Object} [opt={}] - Parsing options.
* @returns {Map|undefined} A map of expanded or updated border properties.
*/
const prepareBorderProperties = (property, value, priority, properties, opt = {}) => {
if (typeof property !== "string" || value === null) {
return;
}
if (!property.startsWith(border.property)) {
return;
}
let prop2, prop3;
if (property.length > border.property.length) {
// Check if next char is '-'
if (property.charCodeAt(border.property.length) !== 45) {
return;
}
// property is like "border-..."
const remainder = property.substring(border.property.length + 1);
const hyphenIndex = remainder.indexOf("-");
if (hyphenIndex !== -1) {
prop2 = remainder.substring(0, hyphenIndex);
prop3 = remainder.substring(hyphenIndex + 1);
} else {
prop2 = remainder;
}
}
if (
(borderPositions.has(prop2) && prop3 && !borderLines.has(prop3)) ||
(borderLines.has(prop2) && prop3)
) {
return;
}
const parts = {
prop1: border.property,
prop2,
prop3
};
const borderItems = new Map();
if (typeof value === "string") {
prepareBorderStringValue({
property,
value,
priority,
properties,
parts,
opt,
borderItems
});
} else if (Array.isArray(value)) {
prepareBorderArrayValue({
value,
priority,
properties,
parts,
opt,
borderItems
});
} else if (value && typeof value === "object") {
prepareBorderObjectValue({
property,
value,
priority,
properties,
parts,
opt,
borderItems
});
}
if (!borderItems.has(border.property)) {
return;
}
const borderProps = new Map([[border.property, borderItems.get(border.property)]]);
for (const line of borderLines) {
const lineProperty = `${border.property}-${line}`;
const lineItem = borderItems.get(lineProperty) ?? getPropertyItem(lineProperty, properties);
borderProps.set(lineProperty, lineItem);
}
for (const position of borderPositions) {
const positionProperty = `${border.property}-${position}`;
const positionItem =
borderItems.get(positionProperty) ?? getPropertyItem(positionProperty, properties);
borderProps.set(positionProperty, positionItem);
for (const line of borderLines) {
const longhandProperty = `${border.property}-${position}-${line}`;
const longhandItem =
borderItems.get(longhandProperty) ?? getPropertyItem(longhandProperty, properties);
borderProps.set(longhandProperty, longhandItem);
}
}
const borderImageItem = borderItems.get(BORDER_IMAGE) ?? createPropertyItem(BORDER_IMAGE);
borderProps.set(BORDER_IMAGE, borderImageItem);
return borderProps;
};
/**
* Generates a border line shorthand property if all line components are present.
*
* @param {Map} items - The map of collected property items.
* @param {string} property - The shorthand property name to generate.
* @param {string} [priority=""] - The priority of the property.
* @returns {Array} A key-value pair for the generated property.
*/
const generateBorderLineShorthand = (items, property, priority = "") => {
const values = [];
for (const [, item] of items) {
const { value: itemValue } = item;
values.push(itemValue);
}
const value = getPositionValue(values);
return [property, createPropertyItem(property, value, priority)];
};
/**
* Generates a border position shorthand property if all position components are present.
*
* @param {Map} items - The map of collected property items.
* @param {string} property - The shorthand property name to generate.
* @param {string} [priority=""] - The priority of the property.
* @returns {Array} A key-value pair for the generated property.
*/
const generateBorderPositionShorthand = (items, property, priority = "") => {
const values = [];
for (const [, item] of items) {
const { value: itemValue } = item;
values.push(itemValue);
}
const value = values.join(" ");
return [property, createPropertyItem(property, value, priority)];
};
/**
* Generates a border shorthand property if all components match.
*
* @param {Array} items - The collection of property values.
* @param {string} property - The shorthand property name to generate.
* @param {string} [priority=""] - The priority of the property.
* @returns {Array|undefined} A key-value pair for the generated property or undefined.
*/
const generateBorderShorthand = (items, property, priority = "") => {
const values = new Set(items);
if (values.size === 1) {
const value = values.keys().next().value;
return [property, createPropertyItem(property, value, priority)];
}
};
const borderCollectionConfig = {
[WIDTH]: {
shorthand: borderWidth.property,
generator: generateBorderLineShorthand
},
[STYLE]: {
shorthand: borderStyle.property,
generator: generateBorderLineShorthand
},
[COLOR]: {
shorthand: borderColor.property,
generator: generateBorderLineShorthand
},
[TOP]: {
shorthand: borderTop.property,
generator: generateBorderPositionShorthand
},
[RIGHT]: {
shorthand: borderRight.property,
generator: generateBorderPositionShorthand
},
[BOTTOM]: {
shorthand: borderBottom.property,
generator: generateBorderPositionShorthand
},
[LEFT]: {
shorthand: borderLeft.property,
generator: generateBorderPositionShorthand
}
};
/**
* Processes and consolidates border-related longhands into shorthands where possible.
*
* @param {Map} properties - The map of current properties.
* @returns {Map} The updated map with consolidated border properties.
*/
const prepareBorderShorthands = (properties) => {
const borderCollections = {};
for (const key of Object.keys(borderCollectionConfig)) {
borderCollections[key] = {
...borderCollectionConfig[key],
items: new Map(),
priorityItems: new Map()
};
}
for (const [property, item] of properties) {
const { priority, value } = item;
let positionPart, linePart;
// We can assume property starts with "border-"
const firstHyphen = property.indexOf("-");
if (firstHyphen !== -1) {
const remainder = property.substring(firstHyphen + 1);
const secondHyphen = remainder.indexOf("-");
if (secondHyphen !== -1) {
positionPart = remainder.substring(0, secondHyphen);
linePart = remainder.substring(secondHyphen + 1);
} else {
positionPart = remainder;
linePart = undefined;
}
}
if (linePart && borderCollections[linePart]) {
const collection = borderCollections[linePart];
if (priority) {
collection.priorityItems.set(property, { property, value, priority });
} else {
collection.items.set(property, { property, value, priority });
}
}
if (positionPart && borderCollections[positionPart]) {
const collection = borderCollections[positionPart];
if (priority) {
collection.priorityItems.set(property, { property, value, priority });
} else {
collection.items.set(property, { property, value, priority });
}
}
}
const shorthandItems = [];
const shorthandPriorityItems = [];
for (const [key, collection] of Object.entries(borderCollections)) {
const { shorthand, generator, items, priorityItems } = collection;
const requiredSize = borderLines.has(key) ? 4 : 3;
if (items.size === requiredSize) {
const [property, item] = generator(items, shorthand) ?? [];
if (property && item) {
properties.set(property, item);
if (borderPositions.has(key) && properties.has(BORDER_IMAGE)) {
const { value: imageValue } = properties.get(BORDER_IMAGE);
if (imageValue === NONE) {
shorthandItems.push(item.value);
}
}
}
} else if (priorityItems.size === requiredSize) {
const [property, item] = generator(priorityItems, shorthand, "important") ?? [];
if (property && item) {
properties.set(property, item);
if (borderPositions.has(key) && properties.has(BORDER_IMAGE)) {
const { value: imageValue } = properties.get(BORDER_IMAGE);
if (imageValue === NONE) {
shorthandPriorityItems.push(item.value);
}
}
}
}
}
const mixedPriorities = shorthandItems.length && shorthandPriorityItems.length;
const imageItem = createPropertyItem(BORDER_IMAGE, NONE);
if (shorthandItems.length === 4) {
const [property, item] = generateBorderShorthand(shorthandItems, border.property) ?? [];
if (property && item) {
properties.set(property, item);
properties.delete(BORDER_IMAGE);
properties.set(BORDER_IMAGE, imageItem);
}
} else if (shorthandPriorityItems.length === 4) {
const [property, item] =
generateBorderShorthand(shorthandPriorityItems, border.property, "important") ?? [];
if (property && item) {
properties.set(property, item);
properties.delete(BORDER_IMAGE);
properties.set(BORDER_IMAGE, imageItem);
}
} else if (properties.has(BORDER_IMAGE)) {
const { value: imageValue } = properties.get(BORDER_IMAGE);
if (imageValue === NONE) {
if (mixedPriorities) {
properties.delete(BORDER_IMAGE);
properties.set(BORDER_IMAGE, imageItem);
} else {
properties.delete(BORDER_IMAGE);
}
}
}
if (mixedPriorities) {
const items = [];
const priorityItems = [];
for (const item of properties) {
const [, { priority }] = item;
if (priority) {
priorityItems.push(item);
} else {
items.push(item);
}
}
const firstPropertyKey = properties.keys().next().value;
const { priority: firstPropertyPriority } = properties.get(firstPropertyKey);
if (firstPropertyPriority) {
return new Map([...priorityItems, ...items]);
}
return new Map([...items, ...priorityItems]);
}
if (properties.has(BORDER_IMAGE)) {
properties.delete(BORDER_IMAGE);
properties.set(BORDER_IMAGE, imageItem);
}
return properties;
};
/**
* Processes shorthand properties from the shorthands map.
*
* @param {Map} shorthands - The map containing shorthand property groups.
* @returns {Map} A map of processed shorthand properties.
*/
const processShorthandProperties = (shorthands) => {
const shorthandItems = new Map();
for (const [property, item] of shorthands) {
const shorthandItem = shorthandProperties.get(property);
if (item.size === shorthandItem.shorthandFor.size && shorthandItem.position) {
const positionValues = [];
let priority = "";
for (const { value: longhandValue, priority: longhandPriority } of item.values()) {
positionValues.push(longhandValue);
if (longhandPriority) {
priority = longhandPriority;
}
}
const value = getPositionValue(positionValues, shorthandItem.position);
shorthandItems.set(property, createPropertyItem(property, value, priority));
}
}
return shorthandItems;
};
/**
* Updates the longhand properties map with a new property item.
* If a property with normal priority already exists, it will be overwritten by the new item.
* If the existing property has "important" priority, it will not be overwritten.
*
* @param {string} property - The CSS property name.
* @param {Object} item - The property item object containing value and priority.
* @param {Map} longhandProperties - The map of longhand properties to update.
*/
const updateLonghandProperties = (property, item, longhandProperties) => {
if (longhandProperties.has(property)) {
const { priority: longhandPriority } = longhandProperties.get(property);
if (!longhandPriority) {
longhandProperties.delete(property);
longhandProperties.set(property, item);
}
} else {
longhandProperties.set(property, item);
}
};
/**
* Processes border properties from the borders map, expanding and normalizing them.
*
* @param {Map} borders - The map containing accumulated border properties.
* @param {Object} parseOpt - Options for parsing values.
* @returns {Map} A map of fully processed and normalized border properties.
*/
const processBorderProperties = (borders, parseOpt) => {
const longhandProperties = new Map();
for (const [property, item] of borders) {
if (shorthandProperties.has(property)) {
const { value, priority } = item;
if (property === border.property) {
const lineItems = border.parse(value, parseOpt);
for (const [key, initialValue] of border.initialValues) {
if (!Object.hasOwn(lineItems, key)) {
lineItems[key] = initialValue;
}
}
for (const lineProperty of Object.keys(lineItems)) {
let namePart, linePart;
const hyphenIndex = lineProperty.indexOf("-");
if (hyphenIndex !== -1) {
namePart = lineProperty.substring(0, hyphenIndex);
linePart = lineProperty.substring(hyphenIndex + 1);
} else {
// fallback for safety, though lineProperty from border.parse keys
// should have hyphen
namePart = lineProperty;
linePart = "";
}
const lineValue = lineItems[lineProperty];
for (const position of borderPositions) {
const longhandProperty = `${namePart}-${position}-${linePart}`;
const longhandItem = createPropertyItem(longhandProperty, lineValue, priority);
updateLonghandProperties(longhandProperty, longhandItem, longhandProperties);
}
}
if (value) {
longhandProperties.set(BORDER_IMAGE, createPropertyItem(BORDER_IMAGE, NONE, priority));
}
} else {
const shorthandItem = shorthandProperties.get(property);
const parsedItem = shorthandItem.parse(value, parseOpt);
if (Array.isArray(parsedItem)) {
let namePart, linePart;
const hyphenIndex = property.indexOf("-");
if (hyphenIndex !== -1) {
namePart = property.substring(0, hyphenIndex);
linePart = property.substring(hyphenIndex + 1);
} else {
namePart = property;
}
for (const position of borderPositions) {
const longhandProperty = `${namePart}-${position}-${linePart}`;
const longhandValue = getPositionValue(parsedItem, position);
const longhandItem = createPropertyItem(longhandProperty, longhandValue, priority);
updateLonghandProperties(longhandProperty, longhandItem, longhandProperties);
}
} else if (parsedItem) {
for (const [key, initialValue] of shorthandItem.initialValues) {
if (!Object.hasOwn(parsedItem, key)) {
parsedItem[key] = initialValue;
}
}
for (const longhandProperty of Object.keys(parsedItem)) {
const longhandValue = parsedItem[longhandProperty];
const longhandItem = createPropertyItem(longhandProperty, longhandValue, priority);
updateLonghandProperties(longhandProperty, longhandItem, longhandProperties);
}
}
}
} else if (longhandProperties.has(property)) {
const { priority } = longhandProperties.get(property);
if (!priority) {
longhandProperties.delete(property);
longhandProperties.set(property, item);
}
} else {
longhandProperties.set(property, item);
}
}
const borderItems = prepareBorderShorthands(longhandProperties);
return borderItems;
};
/**
* Normalize and prepare CSS properties, handling shorthands and longhands.
*
* @param {Map} properties - The initial map of properties.
* @param {Object} [opt={}] - Parsing options.
* @returns {Map} The normalized map of properties.
*/
const prepareProperties = (properties, opt = {}) => {
const { globalObject, options } = opt;
const parseOpt = {
globalObject,
options
};
const parsedProperties = new Map();
const shorthands = new Map();
const borders = new Map();
let hasPrecedingBackground = false;
for (const [property, item] of properties) {
const { value, priority } = item;
const { logicalPropertyGroup: shorthandProperty } = propertyDefinitions.get(property) ?? {};
if (borderProperties.has(property)) {
borders.set(property, { property, value, priority });
} else if (shorthandProperties.has(shorthandProperty)) {
if (!shorthands.has(shorthandProperty)) {
shorthands.set(shorthandProperty, new Map());
}
const longhandItems = shorthands.get(shorthandProperty);
if (longhandItems.size) {
const firstPropertyKey = longhandItems.keys().next().value;
const { priority: firstPropertyPriority } = longhandItems.get(firstPropertyKey);
if (priority === firstPropertyPriority) {
longhandItems.set(property, { property, value, priority });
shorthands.set(shorthandProperty, longhandItems);
} else {
parsedProperties.delete(shorthandProperty);
}
} else {
longhandItems.set(property, { property, value, priority });
shorthands.set(shorthandProperty, longhandItems);
}
parsedProperties.set(property, item);
} else if (shorthandProperties.has(property)) {
const shorthandItem = shorthandProperties.get(property);
const parsedValues = shorthandItem.parse(value, parseOpt);
let omitShorthandProperty = false;
if (Array.isArray(parsedValues)) {
const [parsedValue] = parsedValues;
if (typeof parsedValue === "string") {
for (const [longhandProperty, longhandItem] of shorthandItem.shorthandFor) {
if (!priority && properties.has(longhandProperty)) {
const { priority: longhandPriority } = properties.get(longhandProperty);
if (longhandPriority) {
omitShorthandProperty = true;
continue;
}
}
const { position } = longhandItem;
const longhandValue = getPositionValue([parsedValue], position);
parsedProperties.set(
longhandProperty,
createPropertyItem(longhandProperty, longhandValue, priority)
);
}
} else if (parsedValue) {
for (const longhandProperty of Object.keys(parsedValue)) {
const longhandValue = parsedValue[longhandProperty];
parsedProperties.set(
longhandProperty,
createPropertyItem(longhandProperty, longhandValue, priority)
);
}
}
} else if (parsedValues && typeof parsedValues !== "string") {
for (const longhandProperty of Object.keys(parsedValues)) {
const longhandValue = parsedValues[longhandProperty];
parsedProperties.set(
longhandProperty,
createPropertyItem(longhandProperty, longhandValue, priority)
);
}
}
if (!omitShorthandProperty) {
if (property === background.property) {
hasPrecedingBackground = true;
}
parsedProperties.set(property, createPropertyItem(property, value, priority));
}
} else {
parsedProperties.set(property, createPropertyItem(property, value, priority));
if (hasPrecedingBackground) {
const { value: shorthandValue, priority: shorthandPriority } = properties.get(
background.property
);
if ((!shorthandPriority || priority) && !hasVarFunc(shorthandValue)) {
const replacedShorthandValue = replaceBackgroundShorthand(
property,
parsedProperties,
parseOpt
);
properties.delete(background.property);
properties.set(
background.property,
createPropertyItem(background.property, replacedShorthandValue, shorthandPriority)
);
}
}
}
}
if (shorthands.size) {
const shorthandItems = processShorthandProperties(shorthands);
for (const [property, item] of shorthandItems) {
parsedProperties.set(property, item);
}
}
if (borders.size) {
const borderItems = processBorderProperties(borders, parseOpt);
for (const [property, item] of borderItems) {
parsedProperties.set(property, item);
}
}
return parsedProperties;
};
/**
* Cleans up redundancy in border properties by removing longhands that are covered by shorthands.
*
* @param {Map} properties - The map of properties to normalize.
* @returns {Map} The normalized properties map.
*/
const normalizeProperties = (properties) => {
if (properties.has(border.property)) {
for (const line of borderLines) {
properties.delete(`${border.property}-${line}`);
}
for (const position of borderPositions) {
properties.delete(`${border.property}-${position}`);
for (const line of borderLines) {
properties.delete(`${border.property}-${position}-${line}`);
}
}
properties.delete(`${border.property}-image`);
}
for (const line of borderLines) {
const lineProperty = `${border.property}-${line}`;
if (properties.has(lineProperty)) {
for (const position of borderPositions) {
const positionProperty = `${border.property}-${position}`;
const longhandProperty = `${border.property}-${position}-${line}`;
properties.delete(positionProperty);
properties.delete(longhandProperty);
}
}
}
for (const position of borderPositions) {
const positionProperty = `${border.property}-${position}`;
if (properties.has(positionProperty)) {
const longhandProperties = [];
for (const line of borderLines) {
const longhandProperty = `${border.property}-${position}-${line}`;
longhandProperties.push(longhandProperty);
}
if (longhandProperties.length === 3) {
for (const longhandProperty of longhandProperties) {
properties.delete(longhandProperty);
}
} else {
properties.delete(positionProperty);
}
}
}
return properties;
};
module.exports = {
borderProperties,
getPositionValue,
normalizeProperties,
prepareBorderProperties,
prepareProperties,
shorthandProperties
};
|