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
//! This module provides the configuration management for GrimoireCSS.
use crate::{
buffer::add_message,
core::{Filesystem, GrimoireCssError, ScrollDefinition},
};
use glob::glob;
use serde::{Deserialize, Serialize};
use std::{
collections::{HashMap, HashSet},
fs,
path::Path,
};
/// Represents the main configuration structure for GrimoireCSS.
#[derive(Debug, Clone)]
pub struct ConfigFs {
/// The Grimoire CSS version that last wrote/validated this config.
pub grimoire_css_version: Option<String>,
pub variables: Option<Vec<(String, String)>>,
pub scrolls: Option<HashMap<String, ScrollDefinition>>,
pub projects: Vec<ConfigFsProject>,
pub shared: Option<Vec<ConfigFsShared>>,
pub critical: Option<Vec<ConfigFsCritical>>,
/// A set of shared spells used across different projects.
pub shared_spells: HashSet<String>,
pub lock: Option<bool>,
pub custom_animations: HashMap<String, String>,
}
/// Shared configuration for GrimoireCSS projects.
#[derive(Debug, Clone)]
pub struct ConfigFsShared {
pub output_path: String,
pub styles: Option<Vec<String>>,
pub css_custom_properties: Option<Vec<ConfigFsCssCustomProperties>>,
}
/// Critical styles configuration to be inlined into specific HTML files.
#[derive(Debug, Clone)]
pub struct ConfigFsCritical {
pub file_to_inline_paths: Vec<String>,
pub styles: Option<Vec<String>>,
pub css_custom_properties: Option<Vec<ConfigFsCssCustomProperties>>,
}
/// Represents custom CSS properties associated with specific elements.
#[derive(Debug, Clone)]
pub struct ConfigFsCssCustomProperties {
pub element: String,
pub data_param: String,
pub data_value: String,
pub css_variables: Vec<(String, String)>,
}
/// Represents a project in GrimoireCSS.
#[derive(Debug, Clone)]
pub struct ConfigFsProject {
pub project_name: String,
pub input_paths: Vec<String>,
pub output_dir_path: Option<String>,
pub single_output_file_name: Option<String>,
}
// ---
/// The main struct used to represent the JSON structure of the GrimoireCSS configuration.
///
/// This struct is used internally to serialize and deserialize the configuration data.
#[derive(Serialize, Deserialize, Debug, Clone)]
struct ConfigFsJSON {
#[serde(rename = "$schema")]
pub schema: Option<String>,
pub version: Option<String>,
/// Optional framework-level variables used during compilation.
pub variables: Option<HashMap<String, String>>,
/// Optional shared configuration settings used across multiple projects.
pub scrolls: Option<Vec<ConfigFsScrollJSON>>,
/// A list of projects included in the configuration.
pub projects: Vec<ConfigFsProjectJSON>,
pub shared: Option<Vec<ConfigFsSharedJSON>>,
pub critical: Option<Vec<ConfigFsCriticalJSON>>,
pub lock: Option<bool>,
}
/// Represents a scrolls which may contain external or combined CSS rules.
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ConfigFsScrollJSON {
pub name: String,
pub spells: Vec<String>,
#[serde(rename = "spellsByArgs")]
pub spells_by_args: Option<HashMap<String, Vec<String>>>,
pub extends: Option<Vec<String>>,
}
/// A struct representing a project within GrimoireCSS.
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
struct ConfigFsProjectJSON {
/// The name of the project.
pub project_name: String,
/// A list of input paths for the project.
pub input_paths: Vec<String>,
/// Optional output directory path for the project.
pub output_dir_path: Option<String>,
/// Optional file name for a single output file.
pub single_output_file_name: Option<String>,
}
/// Represents shared configuration settings used across multiple projects.
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
struct ConfigFsSharedJSON {
pub output_path: String,
pub styles: Option<Vec<String>>,
pub css_custom_properties: Option<Vec<ConfigFsCSSCustomPropertiesJSON>>,
}
/// Represents critical styles configuration for inlining into HTML files.
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
struct ConfigFsCriticalJSON {
pub file_to_inline_paths: Vec<String>,
pub styles: Option<Vec<String>>,
pub css_custom_properties: Option<Vec<ConfigFsCSSCustomPropertiesJSON>>,
}
/// Represents a custom CSS property item, including associated variables.
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
struct ConfigFsCSSCustomPropertiesJSON {
/// The optional DOM element (`tag`, `class`, `id`, `:root` (default)) associated with the CSS variables.
pub element: Option<String>,
/// A parameter name used within the CSS configuration.
pub data_param: String,
/// A value corresponding to the data parameter.
pub data_value: String,
/// A set of associated CSS variables and their values.
pub css_variables: HashMap<String, String>,
}
impl Default for ConfigFs {
/// Provides a default configuration for `Config`, initializing the `scrolls`, `projects`, and other fields.
fn default() -> Self {
let projects = vec![ConfigFsProject {
project_name: "main".to_string(),
input_paths: Vec::new(),
output_dir_path: None,
single_output_file_name: None,
}];
Self {
grimoire_css_version: Some(env!("CARGO_PKG_VERSION").to_string()),
scrolls: None,
shared: None,
critical: None,
projects,
variables: None,
shared_spells: HashSet::new(),
custom_animations: HashMap::new(),
lock: None,
}
}
}
impl ConfigFs {
/// Loads the configuration from the file system.
///
/// Reads a JSON configuration file from the file system and deserializes it into a `Config` object.
/// Also searches for and loads any external scroll files (grimoire.*.scrolls.json)
/// and any external variables files (grimoire.*.variables.json).
///
/// # Errors
///
/// Returns a `GrimoireCSSError` if reading or parsing the file fails.
pub fn load(current_dir: &Path) -> Result<Self, GrimoireCssError> {
let config_path = Filesystem::get_config_path(current_dir)?;
let content = fs::read_to_string(&config_path)?;
let json_config: ConfigFsJSON = serde_json::from_str(&content)?;
let mut config = Self::from_json(json_config);
// Load custom animations
config.custom_animations = Self::find_custom_animations(current_dir)?;
// Load external scroll files
config.scrolls = Self::load_external_scrolls(current_dir, config.scrolls)?;
// Load external variable files
config.variables = Self::load_external_variables(current_dir, config.variables)?;
Ok(config)
}
/// Saves the current configuration to the file system.
///
/// Serializes the current configuration into JSON format and writes it to the file system.
///
/// # Errors
///
/// Returns a `GrimoireCSSError` if writing to the file system fails.
pub fn save(&self, current_dir: &Path) -> Result<(), GrimoireCssError> {
let config_path = Filesystem::get_config_path(current_dir)?;
let json_config = self.to_json();
let content = serde_json::to_string_pretty(&json_config)?;
fs::write(&config_path, content)?;
Ok(())
}
/// Extracts common spells from the configuration and adds them to a `HashSet`.
///
/// # Arguments
///
/// * `config` - A reference to the `ConfigJSON` structure that holds the spells data.
///
/// # Returns
///
/// A `HashSet` of common spell names used across projects.
fn get_common_spells_set(config: &ConfigFsJSON) -> HashSet<String> {
let mut common_spells = HashSet::new();
if let Some(shared) = &config.shared {
for shared_item in shared {
if let Some(styles) = &shared_item.styles {
common_spells.extend(styles.iter().cloned());
}
}
}
if let Some(critical) = &config.critical {
for critical_item in critical {
if let Some(styles) = &critical_item.styles {
common_spells.extend(styles.iter().cloned());
}
}
}
common_spells
}
/// Converts a JSON representation of the configuration into a `Config` instance.
///
/// # Arguments
///
/// * `json_config` - A `ConfigJSON` object representing the deserialized configuration data.
///
/// # Returns
///
/// A new `Config` instance.
fn from_json(json_config: ConfigFsJSON) -> Self {
let shared_spells = Self::get_common_spells_set(&json_config);
let variables = json_config.variables.map(|vars| {
let mut sorted_vars: Vec<_> = vars.into_iter().collect();
sorted_vars.sort_by(|a, b| a.0.cmp(&b.0));
sorted_vars
});
let projects = Self::projects_from_json(json_config.projects);
// Expand glob patterns in shared and critical configurations
let shared = Self::shared_from_json(json_config.shared);
let critical = Self::critical_from_json(json_config.critical);
let scrolls = Self::scrolls_from_json(json_config.scrolls);
ConfigFs {
grimoire_css_version: json_config.version,
variables,
scrolls,
projects,
shared,
critical,
shared_spells,
custom_animations: HashMap::new(),
lock: json_config.lock,
}
}
/// Converts shared JSON configuration into internal structure.
fn shared_from_json(shared: Option<Vec<ConfigFsSharedJSON>>) -> Option<Vec<ConfigFsShared>> {
shared.map(|shared_vec| {
shared_vec
.into_iter()
.map(|c| ConfigFsShared {
output_path: c.output_path,
styles: c.styles,
css_custom_properties: Self::convert_css_custom_properties_from_json(
c.css_custom_properties,
),
})
.collect()
})
}
/// Converts critical JSON configuration into internal structure.
fn critical_from_json(
critical: Option<Vec<ConfigFsCriticalJSON>>,
) -> Option<Vec<ConfigFsCritical>> {
critical.map(|critical_vec| {
critical_vec
.into_iter()
.map(|c| ConfigFsCritical {
file_to_inline_paths: Self::expand_glob_patterns(c.file_to_inline_paths),
styles: c.styles,
css_custom_properties: Self::convert_css_custom_properties_from_json(
c.css_custom_properties,
),
})
.collect()
})
}
fn scrolls_from_json(
scrolls: Option<Vec<ConfigFsScrollJSON>>,
) -> Option<HashMap<String, ScrollDefinition>> {
scrolls.map(|scrolls_vec| {
let mut scrolls_map = HashMap::new();
for scroll in &scrolls_vec {
let mut base_spells = Vec::new();
let mut spells_by_args: HashMap<String, Vec<String>> = HashMap::new();
// Recursively resolve parent spells (base + overloads)
Self::resolve_spells(scroll, &scrolls_vec, &mut base_spells);
Self::resolve_spells_by_args(scroll, &scrolls_vec, &mut spells_by_args);
// Add the spells of the current scroll
base_spells.extend_from_slice(&scroll.spells);
// Add overloads of the current scroll (child after parent)
if let Some(own) = &scroll.spells_by_args {
for (k, v) in own {
spells_by_args
.entry(k.clone())
.or_default()
.extend(v.iter().cloned());
}
}
let spells_by_args = if spells_by_args.is_empty() {
None
} else {
Some(spells_by_args)
};
scrolls_map.insert(
scroll.name.clone(),
ScrollDefinition {
spells: base_spells,
spells_by_args,
},
);
}
scrolls_map
})
}
/// Recursively resolve spells for a given scroll, including extended scrolls
fn resolve_spells(
scroll: &ConfigFsScrollJSON,
scrolls_vec: &[ConfigFsScrollJSON],
collected_spells: &mut Vec<String>,
) {
if let Some(extends) = &scroll.extends {
for ext_name in extends {
// Find the parent scroll
if let Some(parent_scroll) = scrolls_vec.iter().find(|s| &s.name == ext_name) {
// Recursively resolve parent spells if it also extends other scrolls
Self::resolve_spells(parent_scroll, scrolls_vec, collected_spells);
// Add the spells of the parent scroll
collected_spells.extend_from_slice(&parent_scroll.spells);
}
}
}
}
/// Recursively resolve overload spells (`spellsByArgs`) for a given scroll, including extended scrolls.
fn resolve_spells_by_args(
scroll: &ConfigFsScrollJSON,
scrolls_vec: &[ConfigFsScrollJSON],
collected: &mut HashMap<String, Vec<String>>,
) {
if let Some(extends) = &scroll.extends {
for ext_name in extends {
if let Some(parent_scroll) = scrolls_vec.iter().find(|s| &s.name == ext_name) {
Self::resolve_spells_by_args(parent_scroll, scrolls_vec, collected);
if let Some(parent_map) = &parent_scroll.spells_by_args {
for (k, v) in parent_map {
collected
.entry(k.clone())
.or_default()
.extend(v.iter().cloned());
}
}
}
}
}
}
/// Converts custom CSS properties from JSON to internal structure.
fn convert_css_custom_properties_from_json(
css_custom_properties_vec: Option<Vec<ConfigFsCSSCustomPropertiesJSON>>,
) -> Option<Vec<ConfigFsCssCustomProperties>> {
css_custom_properties_vec.map(|items: Vec<ConfigFsCSSCustomPropertiesJSON>| {
items
.into_iter()
.map(|item| ConfigFsCssCustomProperties {
element: item.element.unwrap_or_else(|| String::from(":root")),
data_param: item.data_param,
data_value: item.data_value,
css_variables: {
let mut vars: Vec<_> = item.css_variables.into_iter().collect();
vars.sort_by(|a, b| a.0.cmp(&b.0));
vars
},
})
.collect()
})
}
/// Converts a list of project JSON configurations to the internal `Project` type.
fn projects_from_json(projects: Vec<ConfigFsProjectJSON>) -> Vec<ConfigFsProject> {
projects
.into_iter()
.map(|p| {
let input_paths = Self::expand_glob_patterns(p.input_paths);
ConfigFsProject {
project_name: p.project_name,
input_paths,
output_dir_path: p.output_dir_path,
single_output_file_name: p.single_output_file_name,
}
})
.collect()
}
/// Converts the internal `Config` into its JSON representation.
fn to_json(&self) -> ConfigFsJSON {
let variables_hash_map = self.variables.as_ref().map(|vars| {
let mut sorted_vars: Vec<_> = vars.iter().collect();
sorted_vars.sort_by(|a, b| a.0.cmp(&b.0));
sorted_vars
.into_iter()
.map(|(key, value)| (key.clone(), value.clone()))
.collect()
});
ConfigFsJSON {
schema: Some("https://raw.githubusercontent.com/persevie/grimoire-css/main/src/core/config/config-schema.json".to_string()),
version: self.grimoire_css_version.clone(),
variables: variables_hash_map,
scrolls: Self::scrolls_to_json(self.scrolls.clone()),
projects: Self::projects_to_json(self.projects.clone()),
shared: Self::shared_to_json(self.shared.as_ref()),
critical: Self::critical_to_json(self.critical.as_ref()),
lock: self.lock,
}
}
/// Updates only the `version` field in the on-disk config JSON.
///
/// This avoids rewriting the full config via [`ConfigFs::save`], which could inline
/// externally-loaded scroll/variable files.
pub fn update_config_version_only(
current_dir: &Path,
grimoire_css_version: &str,
) -> Result<(), GrimoireCssError> {
let config_path = Filesystem::get_config_path(current_dir)?;
let content = fs::read_to_string(&config_path)?;
let mut json_value: serde_json::Value = serde_json::from_str(&content)?;
if let serde_json::Value::Object(map) = &mut json_value {
map.insert(
"version".to_string(),
serde_json::Value::String(grimoire_css_version.to_string()),
);
// Ensure schema exists in new/legacy configs.
map.entry("$schema".to_string()).or_insert_with(|| {
serde_json::Value::String(
"https://raw.githubusercontent.com/persevie/grimoire-css/main/src/core/config/config-schema.json".to_string(),
)
});
}
let updated = serde_json::to_string_pretty(&json_value)?;
fs::write(&config_path, updated)?;
Ok(())
}
/// Converts the internal list of shared configurations into JSON.
fn shared_to_json(shared: Option<&Vec<ConfigFsShared>>) -> Option<Vec<ConfigFsSharedJSON>> {
shared.map(|common_vec: &Vec<ConfigFsShared>| {
common_vec
.iter()
.map(|c| ConfigFsSharedJSON {
output_path: c.output_path.clone(),
styles: c.styles.clone(),
css_custom_properties: Self::css_custom_properties_to_json(
c.css_custom_properties.as_ref(),
),
})
.collect()
})
}
/// Converts the internal list of critical configurations into JSON.
fn critical_to_json(
critical: Option<&Vec<ConfigFsCritical>>,
) -> Option<Vec<ConfigFsCriticalJSON>> {
critical.map(|common_vec| {
common_vec
.iter()
.map(|c| ConfigFsCriticalJSON {
file_to_inline_paths: c.file_to_inline_paths.clone(),
styles: c.styles.clone(),
css_custom_properties: Self::css_custom_properties_to_json(
c.css_custom_properties.as_ref(),
),
})
.collect()
})
}
/// Converts custom CSS properties to JSON format.
fn css_custom_properties_to_json(
css_custom_properties_vec: Option<&Vec<ConfigFsCssCustomProperties>>,
) -> Option<Vec<ConfigFsCSSCustomPropertiesJSON>> {
css_custom_properties_vec.map(|items: &Vec<ConfigFsCssCustomProperties>| {
items
.iter()
.map(|item| ConfigFsCSSCustomPropertiesJSON {
element: Some(item.element.clone()),
data_param: item.data_param.clone(),
data_value: item.data_value.clone(),
css_variables: item.css_variables.clone().into_iter().collect(),
})
.collect()
})
}
fn scrolls_to_json(
config_scrolls: Option<HashMap<String, ScrollDefinition>>,
) -> Option<Vec<ConfigFsScrollJSON>> {
config_scrolls.map(|scrolls| {
let mut scrolls_vec = Vec::new();
for (name, def) in scrolls {
scrolls_vec.push(ConfigFsScrollJSON {
name,
spells: def.spells,
spells_by_args: def.spells_by_args,
extends: None,
});
}
scrolls_vec
})
}
/// Converts the internal list of `Project` into its JSON representation.
fn projects_to_json(projects: Vec<ConfigFsProject>) -> Vec<ConfigFsProjectJSON> {
projects
.into_iter()
.map(|p| ConfigFsProjectJSON {
project_name: p.project_name,
input_paths: p.input_paths,
output_dir_path: p.output_dir_path,
single_output_file_name: p.single_output_file_name,
})
.collect()
}
/// Searches for and loads custom animation files from the "animations" subdirectory.
///
/// This function scans the "animations" subdirectory within the given `current_dir/grimoire`,
/// reads the content of each file, and stores it in a `HashMap`. The key of the
/// HashMap is the file name (without extension), and the value is the file content.
///
/// # Arguments
///
/// * `current_dir` - A reference to a `Path` representing the directory to search in.
///
/// # Returns
///
/// Returns a `Result` containing:
/// - `Ok(HashMap<String, String>)`: A HashMap where keys are file names (without extension)
/// and values are the contents of the animation files.
/// - `Err(GrimoireCSSError)`: An error if there's an issue reading the directory or files.
///
/// # Errors
///
/// This function will return an error if:
/// - The "animations" subdirectory cannot be read.
/// - There's an issue reading any of the files in the subdirectory.
/// - File names cannot be converted to valid UTF-8 strings.
fn find_custom_animations(
current_dir: &Path,
) -> Result<HashMap<String, String>, GrimoireCssError> {
let animations_dir =
Filesystem::get_or_create_grimoire_path(current_dir)?.join("animations");
if !animations_dir.exists() {
return Ok(HashMap::new());
}
let mut entries = animations_dir.read_dir()?.peekable();
if entries.peek().is_none() {
add_message("No custom animations were found in the 'animations' directory. Deleted unnecessary 'animations' directory".to_string());
fs::remove_dir(&animations_dir)?;
return Ok(HashMap::new());
}
let mut map = HashMap::new();
for entry in entries {
let entry = entry?;
let path = entry.path();
if path.is_file() {
if let Some(ext) = path.extension().and_then(|s| s.to_str()) {
if ext == "css" {
if let Some(file_stem) = path.file_stem().and_then(|s| s.to_str()) {
let content = fs::read_to_string(&path)?;
map.insert(file_stem.to_owned(), content);
}
} else {
add_message(format!(
"Only CSS files are supported in the 'animations' directory. Skipping non-CSS file: {}.",
path.display()
));
}
}
} else {
add_message(format!(
"Only files are supported in the 'animations' directory. Skipping directory: {}.",
path.display()
));
}
}
Ok(map)
}
fn expand_glob_patterns(patterns: Vec<String>) -> Vec<String> {
let mut paths = Vec::new();
for pattern in patterns {
match glob(&pattern) {
Ok(glob_paths) => {
for path_result in glob_paths.flatten() {
if let Some(path_str) = path_result.to_str() {
paths.push(path_str.to_string());
}
}
}
Err(e) => {
add_message(format!("Failed to read glob pattern {pattern}: {e}"));
}
}
}
paths
}
/// Loads external scrolls from files matching the pattern "grimoire.*.scrolls.json" in the config directory.
/// If the main config already has scrolls, they will be merged with the external ones.
/// Scrolls from the main configuration have higher priority and are not overwritten.
///
/// # Arguments
///
/// * `current_dir` - A reference to the current working directory
/// * `existing_scrolls` - Optional HashMap of existing scrolls from main config
///
/// # Returns
///
/// * `Option<HashMap<String, Vec<String>>>` - Merged scrolls from main config and external files
///
/// # Errors
///
/// Returns a `GrimoireCSSError` if reading or parsing any external scroll file fails.
fn load_external_scrolls(
current_dir: &Path,
existing_scrolls: Option<HashMap<String, ScrollDefinition>>,
) -> Result<Option<HashMap<String, ScrollDefinition>>, GrimoireCssError> {
// Get the config directory path
let config_dir = Filesystem::get_or_create_grimoire_path(current_dir)?.join("config");
// Initialize with existing scrolls or create new HashMap
let mut all_scrolls = existing_scrolls.unwrap_or_default();
let mut existing_scroll_names: HashSet<String> = all_scrolls.keys().cloned().collect();
let mut external_files_found = false;
// Use glob pattern to directly find matching files instead of reading entire directory
let pattern = config_dir
.join("grimoire.*.scrolls.json")
.to_string_lossy()
.to_string();
match glob::glob(&pattern) {
Ok(entries) => {
for entry in entries.flatten() {
if let Some(file_name) = entry.file_name().and_then(|s| s.to_str()) {
// Read and parse the external scroll file
match fs::read_to_string(&entry) {
Ok(content) => {
match serde_json::from_str::<serde_json::Value>(&content) {
Ok(json) => {
// Extract and process scrolls from the JSON
if let Some(scrolls) =
json.get("scrolls").and_then(|s| s.as_array())
{
external_files_found = true;
// Parse each scroll from the array
for scroll in scrolls {
if let (Some(name), Some(spells_arr)) = (
scroll.get("name").and_then(|n| n.as_str()),
scroll.get("spells").and_then(|s| s.as_array()),
) {
// Don't override existing scrolls from main config, just add new ones
if !existing_scroll_names.contains(name) {
// Convert the spell array to Vec<String>
let spells: Vec<String> = spells_arr
.iter()
.filter_map(|s| {
s.as_str().map(|s| s.to_string())
})
.collect();
// Optional spellsByArgs
let spells_by_args = scroll
.get("spellsByArgs")
.and_then(|s| s.as_object())
.and_then(|obj| {
let mut map: HashMap<String, Vec<String>> =
HashMap::new();
for (k, v) in obj {
if let Some(arr) = v.as_array() {
let spells: Vec<String> = arr
.iter()
.filter_map(|s| {
s.as_str().map(|s| s.to_string())
})
.collect();
map.insert(k.clone(), spells);
}
}
if map.is_empty() { None } else { Some(map) }
});
// Insert new scroll
all_scrolls.insert(
name.to_string(),
ScrollDefinition {
spells,
spells_by_args,
},
);
existing_scroll_names
.insert(name.to_string());
}
// Existing scrolls from main config have higher priority
}
}
add_message(format!(
"Loaded external scrolls from '{file_name}'"
));
}
}
Err(err) => {
add_message(format!(
"Failed to parse external scroll file '{file_name}': {err}"
));
}
}
}
Err(err) => {
add_message(format!(
"Failed to read external scroll file '{file_name}': {err}"
));
}
}
}
}
}
Err(err) => {
add_message(format!("Failed to search for external scroll files: {err}"));
}
}
// Only return Some if we have scrolls, otherwise None
if all_scrolls.is_empty() {
Ok(None)
} else {
// Add a message if we loaded external scrolls
if external_files_found {
add_message("External scroll files were merged with configuration".to_string());
}
Ok(Some(all_scrolls))
}
}
/// Loads external variables from files matching the pattern "grimoire.*.variables.json" in the config directory.
/// If the main config already has variables, they will be merged with the external ones.
///
/// # Arguments
///
/// * `current_dir` - A reference to the current working directory
/// * `existing_variables` - Optional Vector of existing variables from main config
///
/// # Returns
///
/// * `Option<Vec<(String, String)>>` - Merged variables from main config and external files
///
/// # Errors
///
/// Returns a `GrimoireCSSError` if reading or parsing any external variables file fails.
fn load_external_variables(
current_dir: &Path,
existing_variables: Option<Vec<(String, String)>>,
) -> Result<Option<Vec<(String, String)>>, GrimoireCssError> {
// Get the config directory path
let config_dir = Filesystem::get_or_create_grimoire_path(current_dir)?.join("config");
// Initialize with existing variables or create new Vec
let mut all_variables = existing_variables.unwrap_or_default();
let mut existing_keys: HashSet<String> =
all_variables.iter().map(|(key, _)| key.clone()).collect();
let mut external_files_found = false;
// Use glob pattern to directly find matching files
let pattern = config_dir
.join("grimoire.*.variables.json")
.to_string_lossy()
.to_string();
match glob::glob(&pattern) {
Ok(entries) => {
for entry in entries.flatten() {
if let Some(file_name) = entry.file_name().and_then(|s| s.to_str()) {
// Read and parse the external variables file
match fs::read_to_string(&entry) {
Ok(content) => {
match serde_json::from_str::<serde_json::Value>(&content) {
Ok(json) => {
// Extract and process variables from the JSON
if let Some(variables) =
json.get("variables").and_then(|v| v.as_object())
{
external_files_found = true;
// Parse each variable from the object
for (key, value) in variables {
if let Some(value_str) = value.as_str() {
// If the key doesn't exist yet, add it
if !existing_keys.contains(key) {
all_variables.push((
key.clone(),
value_str.to_string(),
));
existing_keys.insert(key.clone());
}
// If the key exists, we don't override it - first come, first served
}
}
add_message(format!(
"Loaded external variables from '{file_name}'"
));
}
}
Err(err) => {
add_message(format!(
"Failed to parse external variables file '{file_name}': {err}"
));
}
}
}
Err(err) => {
add_message(format!(
"Failed to read external variables file '{file_name}': {err}"
));
}
}
}
}
}
Err(err) => {
add_message(format!(
"Failed to search for external variables files: {err}"
));
}
}
// Sort variables by key for consistency
if !all_variables.is_empty() {
all_variables.sort_by(|a, b| a.0.cmp(&b.0));
// Add a message if we loaded external variables
if external_files_found {
add_message("External variable files were merged with configuration".to_string());
}
Ok(Some(all_variables))
} else {
Ok(None)
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::fs::File;
use std::io::Write;
use tempfile::tempdir;
#[test]
fn test_default_config() {
let config = ConfigFs::default();
assert!(config.variables.is_none());
assert!(config.scrolls.is_none());
assert!(config.shared.is_none());
assert!(config.critical.is_none());
assert_eq!(config.projects.len(), 1);
assert_eq!(config.projects[0].project_name, "main");
}
#[test]
fn test_load_nonexistent_config() {
let dir = tempdir().unwrap();
let result = ConfigFs::load(dir.path());
assert!(result.is_err());
}
#[test]
fn test_save_and_load_config() {
let dir = tempdir().unwrap();
let config = ConfigFs::default();
config.save(dir.path()).expect("Failed to save config");
let loaded_config = ConfigFs::load(dir.path()).expect("Failed to load config");
assert_eq!(
config.projects[0].project_name,
loaded_config.projects[0].project_name
);
}
#[test]
fn test_expand_glob_patterns() {
let dir = tempdir().unwrap();
let file_path = dir.path().join("test.txt");
File::create(&file_path).unwrap();
let patterns = vec![format!("{}/**/*.txt", dir.path().to_str().unwrap())];
let expanded = ConfigFs::expand_glob_patterns(patterns);
assert_eq!(expanded.len(), 1);
assert!(expanded[0].ends_with("test.txt"));
}
#[test]
fn test_find_custom_animations_empty() {
let dir = tempdir().unwrap();
let animations = ConfigFs::find_custom_animations(dir.path()).unwrap();
assert!(animations.is_empty());
}
#[test]
fn test_find_custom_animations_with_files() {
let dir = tempdir().unwrap();
let animations_dir = dir.path().join("grimoire").join("animations");
fs::create_dir_all(&animations_dir).unwrap();
let animation_file = animations_dir.join("fade_in.css");
let mut file = File::create(&animation_file).unwrap();
writeln!(
file,
"@keyframes fade_in {{ from {{ opacity: 0; }} to {{ opacity: 1; }} }}"
)
.unwrap();
let animations = ConfigFs::find_custom_animations(dir.path()).unwrap();
assert_eq!(animations.len(), 1);
assert!(animations.contains_key("fade_in"));
}
#[test]
fn test_get_common_spells_set() {
let json = ConfigFsJSON {
schema: None,
version: None,
variables: None,
scrolls: None,
projects: vec![],
shared: Some(vec![ConfigFsSharedJSON {
output_path: "styles.css".to_string(),
styles: Some(vec!["spell1".to_string(), "spell2".to_string()]),
css_custom_properties: None,
}]),
critical: Some(vec![ConfigFsCriticalJSON {
file_to_inline_paths: vec!["index.html".to_string()],
styles: Some(vec!["spell3".to_string()]),
css_custom_properties: None,
}]),
lock: None,
};
let common_spells = ConfigFs::get_common_spells_set(&json);
assert_eq!(common_spells.len(), 3);
assert!(common_spells.contains("spell1"));
assert!(common_spells.contains("spell2"));
assert!(common_spells.contains("spell3"));
}
#[test]
fn test_load_external_scrolls_no_files() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file to prevent load() from failing
let config_file = config_dir.join("grimoire.config.json");
let config_content = r#"{
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"#;
fs::write(&config_file, config_content).unwrap();
// No external scroll files
let result = ConfigFs::load_external_scrolls(dir.path(), None).unwrap();
assert!(result.is_none());
}
#[test]
fn test_load_external_scrolls_single_file() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file to prevent load() from failing
let config_file = config_dir.join("grimoire.config.json");
let config_content = r#"{
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"#;
fs::write(&config_file, config_content).unwrap();
// Create an external scrolls file
let scrolls_file = config_dir.join("grimoire.tailwindcss.scrolls.json");
let scrolls_content = r#"{
"scrolls": [
{
"name": "tw-btn",
"spells": [
"p=4px",
"bg=blue",
"c=white",
"br=4px"
]
}
]
}"#;
fs::write(&scrolls_file, scrolls_content).unwrap();
// Load external scrolls
let result = ConfigFs::load_external_scrolls(dir.path(), None).unwrap();
assert!(result.is_some());
let scrolls = result.unwrap();
assert_eq!(scrolls.len(), 1);
assert!(scrolls.contains_key("tw-btn"));
assert_eq!(scrolls.get("tw-btn").unwrap().spells.len(), 4);
}
#[test]
fn test_load_external_scrolls_multiple_files() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file
let config_file = config_dir.join("grimoire.config.json");
let config_content = r#"{
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"#;
fs::write(&config_file, config_content).unwrap();
// Create first external scrolls file
let scrolls_file1 = config_dir.join("grimoire.tailwindcss.scrolls.json");
let scrolls_content1 = r#"{
"scrolls": [
{
"name": "tw-btn",
"spells": [
"p=4px",
"bg=blue",
"c=white",
"br=4px"
]
}
]
}"#;
fs::write(&scrolls_file1, scrolls_content1).unwrap();
// Create second external scrolls file
let scrolls_file2 = config_dir.join("grimoire.bootstrap.scrolls.json");
let scrolls_content2 = r#"{
"scrolls": [
{
"name": "bs-card",
"spells": [
"border=1px_solid_#ccc",
"br=8px",
"shadow=0_2px_8px_rgba(0,0,0,0.1)"
]
}
]
}"#;
fs::write(&scrolls_file2, scrolls_content2).unwrap();
// Load external scrolls
let result = ConfigFs::load_external_scrolls(dir.path(), None).unwrap();
assert!(result.is_some());
let scrolls = result.unwrap();
assert_eq!(scrolls.len(), 2);
assert!(scrolls.contains_key("tw-btn"));
assert!(scrolls.contains_key("bs-card"));
assert_eq!(scrolls.get("tw-btn").unwrap().spells.len(), 4);
assert_eq!(scrolls.get("bs-card").unwrap().spells.len(), 3);
}
#[test]
fn test_merge_with_existing_scrolls() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file
let config_file = config_dir.join("grimoire.config.json");
let config_content = r#"{
"scrolls": [
{
"name": "main-btn",
"spells": [
"p=10px",
"fw=bold",
"c=black"
]
}
],
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"#;
fs::write(&config_file, config_content).unwrap();
// Create an external scrolls file
let scrolls_file = config_dir.join("grimoire.extra.scrolls.json");
let scrolls_content = r#"{
"scrolls": [
{
"name": "main-btn",
"spells": [
"bg=green",
"hover:bg=darkgreen"
]
},
{
"name": "extra-btn",
"spells": [
"fs=16px",
"m=10px"
]
}
]
}"#;
fs::write(&scrolls_file, scrolls_content).unwrap();
// Create mock existing scrolls
let mut existing_scrolls = HashMap::new();
existing_scrolls.insert(
"main-btn".to_string(),
ScrollDefinition {
spells: vec![
"p=10px".to_string(),
"fw=bold".to_string(),
"c=black".to_string(),
],
spells_by_args: None,
},
);
// Load and merge external scrolls
let result = ConfigFs::load_external_scrolls(dir.path(), Some(existing_scrolls)).unwrap();
assert!(result.is_some());
let scrolls = result.unwrap();
assert_eq!(scrolls.len(), 2);
// Check that main-btn has combined spells from both sources
assert!(scrolls.contains_key("main-btn"));
assert_eq!(scrolls.get("main-btn").unwrap().spells.len(), 3);
// Check that extra-btn was added
assert!(scrolls.contains_key("extra-btn"));
assert_eq!(scrolls.get("extra-btn").unwrap().spells.len(), 2);
}
#[test]
fn test_full_config_with_external_scrolls() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file
let config_file = config_dir.join("grimoire.config.json");
let config_content = r#"{
"scrolls": [
{
"name": "base-btn",
"spells": [
"p=10px",
"br=4px"
]
}
],
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"#;
fs::write(&config_file, config_content).unwrap();
// Create an external scrolls file
let scrolls_file = config_dir.join("grimoire.theme.scrolls.json");
let scrolls_content = r#"{
"scrolls": [
{
"name": "theme-btn",
"spells": [
"bg=purple",
"c=white"
]
}
]
}"#;
fs::write(&scrolls_file, scrolls_content).unwrap();
// Load the full configuration
let config = ConfigFs::load(dir.path()).expect("Failed to load config");
// Check that both scrolls are loaded
assert!(config.scrolls.is_some());
let scrolls = config.scrolls.unwrap();
assert_eq!(scrolls.len(), 2);
assert!(scrolls.contains_key("base-btn"));
assert!(scrolls.contains_key("theme-btn"));
}
#[test]
fn test_load_external_variables_no_files() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file to prevent load() from failing
let config_file = config_dir.join("grimoire.config.json");
let config_content = r#"{
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"#;
fs::write(&config_file, config_content).unwrap();
// No external variable files
let result = ConfigFs::load_external_variables(dir.path(), None).unwrap();
assert!(result.is_none());
}
#[test]
fn test_load_external_variables_single_file() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file to prevent load() from failing
let config_file = config_dir.join("grimoire.config.json");
let config_content = r#"{
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"#;
fs::write(&config_file, config_content).unwrap();
// Create an external variables file
let vars_file = config_dir.join("grimoire.theme.variables.json");
let vars_content = r##"{
"variables": {
"primary-color": "#3366ff",
"secondary-color": "#ff6633",
"font-size-base": "16px"
}
}"##;
fs::write(&vars_file, vars_content).unwrap();
// Load external variables
let result = ConfigFs::load_external_variables(dir.path(), None).unwrap();
assert!(result.is_some());
let variables = result.unwrap();
assert_eq!(variables.len(), 3);
// Check that variables are sorted by key
assert_eq!(variables[0].0, "font-size-base");
assert_eq!(variables[0].1, "16px");
assert_eq!(variables[1].0, "primary-color");
assert_eq!(variables[1].1, "#3366ff");
assert_eq!(variables[2].0, "secondary-color");
assert_eq!(variables[2].1, "#ff6633");
}
#[test]
fn test_load_external_variables_multiple_files() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file
let config_file = config_dir.join("grimoire.config.json");
let config_content = r#"{
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"#;
fs::write(&config_file, config_content).unwrap();
// Create first external variables file
let vars_file1 = config_dir.join("grimoire.colors.variables.json");
let vars_content1 = r##"{
"variables": {
"primary-color": "#3366ff",
"secondary-color": "#ff6633"
}
}"##;
fs::write(&vars_file1, vars_content1).unwrap();
// Create second external variables file
let vars_file2 = config_dir.join("grimoire.typography.variables.json");
let vars_content2 = r##"{
"variables": {
"font-size-base": "16px",
"font-family-sans": "Arial, sans-serif"
}
}"##;
fs::write(&vars_file2, vars_content2).unwrap();
// Load external variables
let result = ConfigFs::load_external_variables(dir.path(), None).unwrap();
assert!(result.is_some());
let variables = result.unwrap();
assert_eq!(variables.len(), 4);
// Create a map for easier testing
let var_map: HashMap<String, String> = variables.into_iter().collect();
assert!(var_map.contains_key("primary-color"));
assert!(var_map.contains_key("secondary-color"));
assert!(var_map.contains_key("font-size-base"));
assert!(var_map.contains_key("font-family-sans"));
assert_eq!(var_map.get("primary-color").unwrap(), "#3366ff");
assert_eq!(
var_map.get("font-family-sans").unwrap(),
"Arial, sans-serif"
);
}
#[test]
fn test_merge_with_existing_variables() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file with variables
let config_file = config_dir.join("grimoire.config.json");
let config_content = r##"{
"variables": {
"primary-color": "#3366ff",
"font-size-base": "16px"
},
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"##;
fs::write(&config_file, config_content).unwrap();
// Create an external variables file
let vars_file = config_dir.join("grimoire.extra.variables.json");
let vars_content = r##"{
"variables": {
"secondary-color": "#ff6633",
"primary-color": "#ff0000",
"spacing-unit": "8px"
}
}"##;
fs::write(&vars_file, vars_content).unwrap();
// Create mock existing variables
let existing_variables = vec![
("primary-color".to_string(), "#3366ff".to_string()),
("font-size-base".to_string(), "16px".to_string()),
];
// Load and merge external variables
let result =
ConfigFs::load_external_variables(dir.path(), Some(existing_variables)).unwrap();
assert!(result.is_some());
let variables = result.unwrap();
assert_eq!(variables.len(), 4); // primary-color, font-size-base, secondary-color, spacing-unit
// Create a map for easier testing
let var_map: HashMap<String, String> = variables.into_iter().collect();
// Primary color should remain from the original config (not overwritten)
assert_eq!(var_map.get("primary-color").unwrap(), "#3366ff");
// New variables should be added
assert_eq!(var_map.get("secondary-color").unwrap(), "#ff6633");
assert_eq!(var_map.get("spacing-unit").unwrap(), "8px");
// Original variables should be preserved
assert_eq!(var_map.get("font-size-base").unwrap(), "16px");
}
#[test]
fn test_full_config_with_external_variables() {
let dir = tempdir().unwrap();
let config_dir = dir.path().join("grimoire").join("config");
fs::create_dir_all(&config_dir).unwrap();
// Create a basic config file with variables
let config_file = config_dir.join("grimoire.config.json");
let config_content = r##"{
"variables": {
"primary-color": "#3366ff"
},
"projects": [
{
"projectName": "main",
"inputPaths": []
}
]
}"##;
fs::write(&config_file, config_content).unwrap();
// Create an external variables file
let vars_file = config_dir.join("grimoire.theme.variables.json");
let vars_content = r##"{
"variables": {
"secondary-color": "#ff6633",
"spacing-unit": "8px"
}
}"##;
fs::write(&vars_file, vars_content).unwrap();
// Load the full configuration
let config = ConfigFs::load(dir.path()).expect("Failed to load config");
// Check that variables from both sources are loaded
assert!(config.variables.is_some());
let variables = config.variables.unwrap();
assert_eq!(variables.len(), 3);
// Variables should be sorted by key
assert_eq!(variables[0].0, "primary-color");
assert_eq!(variables[1].0, "secondary-color");
assert_eq!(variables[2].0, "spacing-unit");
}
}