forked from openedx/paragon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.js
380 lines (332 loc) · 14 KB
/
utils.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
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
const fs = require('fs');
const readline = require('readline');
const path = require('path');
const visitedTokens = {};
const commonCssFiles = ['variables.css', 'abstraction-variables.css'];
/**
* Finds a token by its path in the token tree.
* @param {string} path - The path to the token in the token tree.
* @returns {DesignToken} - The token object found at the specified path.
*/
function findTokenByPath(tokenPath, allTokens) {
const keys = tokenPath.split('.');
return keys.reduce((acc, key) => acc && acc[key], allTokens);
}
/**
* @typedef {object} ExtensionProperty
* @property {string} name - The name of the extension property.
* @property {(token: DesignToken) => boolean} filter - The filter function to determine
* if the token should be annotated.
* @property {(token: DesignToken) => boolean} referenceTokenFilter - The filter function to determine if
* the referenced token should be annotated.
*/
/**
* @typedef {object} AnnotateReferencedTokenExtensionsArgs
* @property {DesignToken} token - The token object to annotate.
* @property {ExtensionProperty[]} extensionProperties - The properties to annotate the referenced token with.
* @property {object} sdUtils - The Style Dictionary utility functions.
*/
/**
* Annotates referenced token $extensions with the specified properties.
* @param {AnnotateReferencedTokenExtensionsArgs} args - The arguments object.
*/
function annotateReferencedTokenExtensions({
token,
extensionProperties,
sdUtils,
dictionary,
}) {
const stack = [token]; // Stack to process tokens iteratively
while (stack.length > 0) {
const currentToken = stack.pop();
// Get all references for the current token
const references = sdUtils.getReferences(currentToken, dictionary);
extensionProperties.forEach(({ name: propertyName, filter: propertyFilter, referenceTokenFilter }) => {
if (!propertyFilter(token)) {
// Skip processing if the token does not match the filter for the property
return;
}
// Iterate over each reference and mark the referenced token
references.forEach((foundReference) => {
const foundReferenceTokenPath = foundReference.ref.join('.');
if (visitedTokens[propertyName]?.has(foundReferenceTokenPath)) {
// Skip processing if the referenced token has already been marked
return;
}
if (!referenceTokenFilter?.(foundReference)) {
// Filter the reference tokens to only include the ones that match the filter
return;
}
// Directly access the referenced token from the returned reference object
const referencedToken = findTokenByPath(foundReferenceTokenPath, dictionary);
if (!referencedToken) {
return;
}
// Mark the referenced token
referencedToken.$extensions = {
...referencedToken.$extensions,
'org.openedx.paragon': {
...referencedToken.$extensions?.['org.openedx.paragon'],
[propertyName]: true,
},
};
visitedTokens[propertyName].add(foundReferenceTokenPath);
if (sdUtils.usesReferences(referencedToken)) {
// Push the referenced token to the stack to process its references
stack.push(referencedToken);
}
});
});
}
}
/**
* Processes and updates tokens in place by annotating referenced tokens with extension properties.
* @typedef {object} ProcessAndUpdateTokensArgs
* @property {object} tokens - The tokens object to process.
* @property {ExtensionProperty[]} extensionProperties - The properties to annotate the referenced token with.
* @property {object} sdUtils - The Style Dictionary utility functions.
*/
function processAndUpdateTokens(tokens, extensionProperties, sdUtils, dictionary) {
Object.keys(tokens).forEach(async (key) => {
const token = tokens[key];
if (typeof token !== 'object') {
// Skip non-object tokens
return;
}
// If this is a group (nested tokens), recurse into it
if (!Object.prototype.hasOwnProperty.call(token, '$value')) {
processAndUpdateTokens(token, extensionProperties, sdUtils, dictionary);
} else if (sdUtils.usesReferences(token)) {
// Initialize the visited tokens for each extension property
extensionProperties.forEach((property) => {
visitedTokens[property.name] = new Set();
});
// If the token uses reference(s), update the referenced token(s) $extensions metadata.
annotateReferencedTokenExtensions({
token,
extensionProperties,
sdUtils,
dictionary,
});
}
});
}
/**
* Recursively retrieves files with a specific extension from a given directory.
*
* @param {string} location - The path to the directory or file to start the search.
* @param {string} extension - The file extension to search for (e.g., '.js', '.css').
* @param {string[]} [files=[]] - An array to accumulate the file paths that match the extension.
* @param {string[]} [excludeDirectories=[]] - An array of directory names to exclude from the search.
* @returns {string[]} - An array of file paths that have the specified extension.
*/
function getFilesWithExtension(location, extension, files = [], excludeDirectories = []) {
const content = fs.statSync(location);
if (content.isDirectory()) {
const contentPaths = fs.readdirSync(location);
contentPaths.forEach(contentPath => {
if (!excludeDirectories.includes(contentPath)) {
getFilesWithExtension(path.join(location, contentPath), extension, files, excludeDirectories);
}
});
} else if (location.endsWith(extension)) {
files.push(location);
}
return files;
}
/**
* Generates a mapping of SCSS variables to corresponding CSS variables.
*
* @param {string} prefix - The prefix used to build the CSS variable names (e.g., '--my-prefix').
* @param {Object} tokensObject - The object representing the design tokens, which may be nested.
* @param {Object} result - The object where the mapping of SCSS to CSS variables will be stored.
* @returns {Object} - The `result` object containing the SCSS-to-CSS variable mappings.
*/
function getSCSStoCSSMap(prefix, tokensObject, result) {
Object.entries(tokensObject).forEach(([node, value]) => {
if (value?.constructor.name === 'Object') {
const newPrefix = `${prefix}-${node}`;
getSCSStoCSSMap(newPrefix, value, result);
} else if (node === 'source') {
// eslint-disable-next-line no-param-reassign
result[value] = `var(${prefix})`;
}
});
return result;
}
/**
* Replaces variable usage in a file based on a provided mapping and direction.
*
* @param {string} filePath - The path to the file where variables should be replaced.
* @param {Object} variablesMap - A map of variables to their replacement values.
* @param {string} [direction='scss-to-css'] - The direction of the replacement, either `scss-to-css` or `css-to-scss`.
* - `scss-to-css`: Replaces SCSS variables (e.g., `$some-variable`) with CSS variables.
* - `css-to-scss`: Replaces CSS variables (e.g., `var(--some-variable)`) with SCSS variables.
* @returns {Promise<void>} - A promise that resolves when the file has been successfully processed and written.
*/
async function replaceVariablesUsage(filePath, variablesMap, direction = 'scss-to-css') {
let variableRegex;
let result = '';
if (direction === 'css-to-scss') {
variableRegex = /var\((\w|-|_)*\)/g;
} else if (direction === 'scss-to-css') {
variableRegex = /(\$|#{\$)(\w|-|_)*(}|,|;|\)|\s|$)/g;
}
const fileStream = fs.createReadStream(filePath);
const rl = readline.createInterface({
input: fileStream,
crlfDelay: Infinity,
});
// eslint-disable-next-line no-restricted-syntax
for await (const line of rl) {
let parsedLine = line;
const variables = [...parsedLine.matchAll(variableRegex)];
variables.forEach(variableData => {
let varExpressionToReplace = variableData[0];
let actualVariable = varExpressionToReplace;
if (direction === 'scss-to-css') {
// handle interpolation expressions first, e.g. #{$some-variable}
if (varExpressionToReplace.startsWith('#{') && varExpressionToReplace.endsWith('}')) {
actualVariable = varExpressionToReplace.slice(2, -1);
// general case, e.g. $some-variable;
} else if ([',', ';', ')', ' ', '}'].includes(varExpressionToReplace.slice(-1))) {
varExpressionToReplace = varExpressionToReplace.slice(0, -1);
actualVariable = varExpressionToReplace;
}
}
if (actualVariable in variablesMap) {
parsedLine = parsedLine.replaceAll(varExpressionToReplace, variablesMap[actualVariable]);
}
});
result += `${parsedLine}\n`;
}
fs.writeFileSync(filePath, result);
}
/**
* Replaces SCSS variables definition with value from design tokens
*
* @async
* @param {string} pathToStylesheet - full path to the stylesheet where to perform replacement
* @param {Object} variablesMap - object that contains variables definitions to use during replacement
*/
async function replaceVariablesDefinitions(pathToStylesheet, variablesMap) {
const fileStream = fs.createReadStream(pathToStylesheet);
const rl = readline.createInterface({
input: fileStream,
crlfDelay: Infinity,
});
let result = '';
let currentVar = '';
let currentValue = '';
function processVariable() {
if (currentVar) {
if (currentVar in variablesMap) {
result += `${currentVar}: ${variablesMap[currentVar]} !default;\n`;
} else {
result += `${currentVar}:${currentValue}`;
}
} else {
result += currentValue;
}
}
// eslint-disable-next-line no-restricted-syntax
for await (const line of rl) {
if (line.startsWith('$')) {
processVariable();
[currentVar, ...currentValue] = line.split(':');
currentValue = `${currentValue.join(':')}\n`;
} else if (!line.trim() || line.startsWith('\\')) {
processVariable();
currentVar = '';
currentValue = `${line}\n`;
} else {
currentValue += `${line}\n`;
}
}
// last variable was not covered by the loop
processVariable();
fs.writeFileSync(pathToStylesheet, result);
}
/**
* Update SCSS variables definitions or usages in given path with CSS variables derived from design tokens
*
* @param {string} location - path where to update variables
* @param {Object} variablesMap - SCSS-to-CSS or CSS-to-SCSS mapping of the variables
* @param {string} transformType - type of operation, one of ['definition', 'usage'].
* 'definition' will replace SCSS variables definitions with CSS ones, while 'usage' will replace all occurrences
* of SCSS / CSS variables (depends on the direction parameter).
* @param {Array[string]} excludePaths - exclude paths from the search
* @param {string} direction - replacement direction of variables, takes effect only when transformType === 'usage'.
* Can be either 'scss-to-css' or 'css-to-scss'.
* @return {Promise<void>}
*/
async function transformInPath(location, variablesMap, transformType = 'definition', excludePaths = [], direction = 'scss-to-css') {
const content = fs.statSync(location);
if (content.isDirectory()) {
const contentPaths = fs.readdirSync(location);
contentPaths.forEach(contentPath => {
if (!excludePaths.includes(contentPath)) {
transformInPath(path.join(location, contentPath), variablesMap, transformType, excludePaths, direction);
}
});
} else if (location.endsWith('.scss')) {
if (transformType === 'usage') {
await replaceVariablesUsage(location, variablesMap, direction);
} else {
await replaceVariablesDefinitions(location, variablesMap);
}
}
}
/**
* Creates an `index.css` file that imports all other CSS files in a directory.
*
* @param {Object} options - The options for creating the `index.css` file.
* @param {string} [options.buildDir=path.resolve(__dirname, '../styles/css')]
* - The base directory where the CSS files are located.
* @param {boolean} options.isThemeVariant - A flag indicating whether the directory is for theme files.
* @param {string} options.themeVariant - The specific theme variant to be used (e.g., 'dark', 'light').
*/
function createIndexCssFile({ buildDir = path.resolve(__dirname, '../styles/css'), isThemeVariant, themeVariant }) {
const directoryPath = isThemeVariant ? `${buildDir}/themes/${themeVariant}` : `${buildDir}/core`;
fs.readdir(directoryPath, (errDir, files) => {
if (errDir) {
// eslint-disable-next-line no-console
console.error('Error reading directory:', errDir);
return;
}
const outputCssFiles = files.filter(file => file !== 'index.css');
// For theme variants, files are ordered with variables first, abstraction variables second,
// and utility classes last. This ensures that variables are available before other files use them.
// For the core styles, custom media breakpoints replace utility classes in the order.
const sortOrder = isThemeVariant
? [...commonCssFiles, 'utility-classes.css']
: [...commonCssFiles, 'custom-media-breakpoints.css'];
const sortedCssFiles = outputCssFiles.sort((a, b) => sortOrder.indexOf(a) - sortOrder.indexOf(b));
const exportStatements = sortedCssFiles.map((file) => `@import "${file}";`);
const indexContent = `${exportStatements.join('\n')}\n`;
fs.writeFile(path.join(directoryPath, 'index.css'), indexContent, (errFile) => {
if (errFile) {
// eslint-disable-next-line no-console
console.error('Error creating index file:', errFile);
}
});
});
}
/**
* Composes a breakpoint name according to the Paragon namespace.
*
* @param {string} breakpointName - breakpoint initial name.
* @param {string} format - screen width format.
* @return {string} - new breakpoint name.
*/
function composeBreakpointName(breakpointName, format) {
return `@custom-media --${breakpointName.replace(/breakpoint/g, `breakpoint-${format}-width`)}`;
}
module.exports = {
createIndexCssFile,
getFilesWithExtension,
getSCSStoCSSMap,
transformInPath,
composeBreakpointName,
processAndUpdateTokens,
};