-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathspectrum-vars.js
executable file
·240 lines (215 loc) · 7.51 KB
/
spectrum-vars.js
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
#!/usr/bin/env node
/*
Copyright 2020 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/
import path from 'path';
import fs from 'fs-extra';
import { transform } from 'lightningcss';
import { fileURLToPath } from 'url';
import fg from 'fast-glob';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
let removedVariableDeclarations = 0;
const varRegex = /--spectrum-[^:,)\s]+/g;
/**
* Construct an array of the all the CSS custom properties leveraged in packages
* that ARE NOT the styles or theme packages.
* @returns string[]
*/
const findUsedVars = async () => {
const usedVariables = new Set();
for (const cssPath of await fg(`./packages/*/src/*.css`)) {
if (
cssPath.includes('tools/styles') ||
cssPath.includes('tools/theme')
) {
continue;
}
const originCSS = fs.readFileSync(cssPath, 'utf8');
const foundVars = originCSS.matchAll(varRegex);
for (const variable of foundVars) {
usedVariables.add(variable[0]);
}
}
return usedVariables;
};
const processCSSData = async (
data,
identifier,
from,
usedVariables = undefined
) => {
/* lit-html is a JS literal, so `\` escapes by default.
* for there to be unicode characters, the escape must
* escape itself...
*/
let result = data.replace(/\\/g, '\\\\');
// possible selectors to replace
const selector1 =
identifier == ':root ' ? identifier : `.spectrum--${identifier}`;
// new selector values
const shadowSelector = ':root,\n:host';
if (data.indexOf(selector1) >= 0) {
result = result.replace(selector1, shadowSelector);
}
result = result.replaceAll(
/(?:\.spectrum(--(?:express|light(?:est)?|dark(?:est)?|medium|large)?,?(\n|\s)*)?)+\s?(?={)/g,
shadowSelector
);
({ code: result } = transform({
code: Buffer.from(result),
visitor: {
Declaration(declaration) {
if (
declaration.property === 'custom' &&
// Manually include Spectrum Vars, for now...
!declaration.value.name.startsWith('--spectrum-global-') &&
!declaration.value.name.startsWith('--spectrum-alias-') &&
!declaration.value.name.startsWith('--spectrum-semantic') &&
// Manually include Typography values, while we do not ship a "package" for these...
!declaration.value.name.startsWith('--spectrum-font') &&
!declaration.value.name.startsWith('--spectrum-heading') &&
!declaration.value.name.startsWith('--spectrum-body') &&
!declaration.value.name.startsWith('--spectrum-detail') &&
!declaration.value.name.startsWith('--spectrum-code') &&
!usedVariables?.has(declaration.value.name)
) {
removedVariableDeclarations += 1;
return [];
}
},
},
}));
return result;
};
const processCSS = async (
srcPath,
dstPath,
identifier,
from,
usedVariables = undefined
) => {
const data = fs.readFileSync(srcPath, 'utf8');
const result = await processCSSData(data, identifier, from, usedVariables);
fs.writeFileSync(dstPath, result, 'utf8');
};
const processTypography = async (
baseSrcPath,
overridesSrcPath,
dstPath,
identifier,
from,
usedVariables = undefined
) => {
const baseData = fs.readFileSync(baseSrcPath, 'utf8');
const overridesData = fs.readFileSync(overridesSrcPath, 'utf8');
const data = baseData + overridesData;
const result = await processCSSData(data, identifier, from, usedVariables);
fs.writeFileSync(dstPath, result, 'utf8');
const fontPath = path.resolve(
path.join(__dirname, '..', 'tools', 'styles', 'fonts.css')
);
fs.writeFileSync(fontPath, result, 'utf8');
};
const systems = ['spectrum', 'spectrum-two', 'express'];
const themes = ['lightest', 'light', 'dark', 'darkest'];
const scales = ['medium', 'large'];
const cores = ['global'];
const processes = [];
const foundVars = await findUsedVars();
systems.forEach((system) => {
const varsPackage = system === 'express' ? 'expressvars' : 'vars';
const varsPath = path
.dirname(import.meta.resolve(`@spectrum-css/${varsPackage}`))
.replace(/^file:/, '');
const packageDir = ['styles'];
if (system !== 'spectrum') {
packageDir.push(system);
}
themes.forEach((theme) => {
if (system !== 'spectrum' && ['lightest', 'darkest'].includes(theme)) {
return;
}
const srcPath = path.join(varsPath, `spectrum-${theme}.css`);
const dstPath = path.resolve(
path.join(
__dirname,
'..',
'tools',
...packageDir,
`spectrum-theme-${theme}.css`
)
);
console.log(`processing theme ${srcPath}`);
processes.push(processCSS(srcPath, dstPath, theme));
});
scales.forEach((scale) => {
const srcPath = path.join(varsPath, `spectrum-${scale}.css`);
const dstPath = path.resolve(
path.join(
__dirname,
'..',
'tools',
...packageDir,
`spectrum-scale-${scale}.css`
)
);
console.log(`processing scale ${srcPath}`);
processes.push(
processCSS(srcPath, dstPath, scale, undefined, foundVars)
);
});
cores.forEach((core) => {
const srcPath = path.join(varsPath, `spectrum-${core}.css`);
const dstPath = path.resolve(
path.join(
__dirname,
'..',
'tools',
...packageDir,
`spectrum-core-${core}.css`
)
);
console.log(`processing core ${srcPath}`);
processes.push(processCSS(srcPath, dstPath, core));
});
});
async function processSpectrumVars() {
{
// Typography
const typographyPath = path.join(
__dirname,
'..',
'node_modules',
'@spectrum-css',
'typography',
'dist'
);
const baseSrcPath = path.join(typographyPath, 'index-base.css');
const overridesSrcPath = path.join(typographyPath, 'index-theme.css');
const dstPath = path.resolve(
path.join(__dirname, '..', 'tools', 'styles', 'typography.css')
);
console.log(`processing typography`);
processes.push(
processTypography(
baseSrcPath,
overridesSrcPath,
dstPath,
'typography'
)
);
}
await Promise.all(processes).then(() => {
console.log(
`Spectrum Vars processed. ${removedVariableDeclarations} Custom Property declarations were removed as unused.`
);
});
}
processSpectrumVars();