-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathsass.ts
More file actions
448 lines (405 loc) · 13.3 KB
/
sass.ts
File metadata and controls
448 lines (405 loc) · 13.3 KB
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
/*
* sass.ts
*
* Copyright (C) 2020-2022 Posit Software, PBC
*/
import { existsSync } from "../deno_ral/fs.ts";
import { join } from "../deno_ral/path.ts";
import { quartoCacheDir } from "./appdirs.ts";
import { SassBundleLayers, SassLayer } from "../config/types.ts";
import { dartCompile } from "./dart-sass.ts";
import * as ld from "./lodash.ts";
import { lines } from "./text.ts";
import { sassCache } from "./sass/cache.ts";
import { cssVarsBlock } from "./sass/add-css-vars.ts";
import { md5HashBytes } from "./hash.ts";
import { kSourceMappingRegexes } from "../config/constants.ts";
import { quartoConfig } from "../core/quarto.ts";
import { safeModeFromFile } from "../deno_ral/fs.ts";
import { ProjectContext } from "../project/types.ts";
import { memoizeStringFunction } from "./cache/cache.ts";
export interface SassVariable {
name: string;
value: unknown;
}
export function sassVariable(
name: string,
value: unknown,
formatter?: (val: unknown) => unknown,
) {
return {
name: name,
value: formatter ? formatter(value) : value,
};
}
// prints a Sass variable
export function outputVariable(
variable: SassVariable,
isDefault = true,
): string {
return `$${variable.name}: ${variable.value}${isDefault ? " !default" : ""};`;
}
let counter: number = 1;
export async function compileSass(
bundles: SassBundleLayers[],
project: ProjectContext,
minified = true,
) {
// Gather the inputs for the framework
const frameWorkUses = bundles.map(
(bundle) => bundle.framework?.uses || "",
);
const frameworkFunctions = bundles.map(
(bundle) => bundle.framework?.functions || "",
);
const frameworkDefaults = bundles.map((bundle) =>
bundle.framework?.defaults || ""
);
const frameworkRules = bundles.map(
(bundle) => bundle.framework?.rules || "",
);
const frameworkMixins = bundles.map(
(bundle) => bundle.framework?.mixins || "",
);
// Gather sasslayer for quarto
const quartoUses = bundles.map((bundle) => bundle.quarto?.uses || "");
const quartoFunctions = bundles.map((bundle) =>
bundle.quarto?.functions || ""
);
const quartoDefaults = bundles.map((bundle) => bundle.quarto?.defaults || "");
const quartoRules = bundles.map((bundle) => bundle.quarto?.rules || "");
const quartoMixins = bundles.map((bundle) => bundle.quarto?.mixins || "");
const userLayers = mergeLayers(
...bundles.map((bundle) => bundle.user || []).flat(),
);
// Gather sasslayer for the user
const userUses = userLayers.uses; //bundles.map((bundle) => bundle.user?.uses || "");
const userFunctions = userLayers.functions; // bundles.map((bundle) => bundle.user?.functions || "");
const userDefaults = userLayers.defaults; // bundles.map((bundle) => bundle.user?.defaults || "");
const userRules = userLayers.rules; // bundles.map((bundle) => bundle.user?.rules || "");
const userMixins = userLayers.mixins; // bundles.map((bundle) => bundle.user?.mixins || "");
// Set any load paths used to resolve imports
const loadPaths: string[] = [];
bundles.forEach((bundle) => {
if (bundle.loadPaths) {
loadPaths.push(...bundle.loadPaths);
}
});
// Read the scss files into a single input string
// * Functions are available to variables and rules
// (framework functions are first to make them acessible to all)
// * Variables are applied in reverse order
// (first variable generally takes precedence in sass assuming use of !default)
// * Mixins are available to rules as well
// * Rules may use functions, variables, and mixins
// (theme follows framework so it can override the framework rules)
let scssInput = [
`// quarto-scss-analysis-annotation { "quarto-version": "${quartoConfig.version()}" }`,
'// quarto-scss-analysis-annotation { "origin": "\'use\' section from format" }',
...frameWorkUses,
'// quarto-scss-analysis-annotation { "origin": "\'use\' section from Quarto" }',
...quartoUses,
'// quarto-scss-analysis-annotation { "origin": "\'use\' section from user-defined SCSS" }',
userUses,
'// quarto-scss-analysis-annotation { "origin": "\'functions\' section from format" }',
...frameworkFunctions,
'// quarto-scss-analysis-annotation { "origin": "\'functions\' section from Quarto" }',
...quartoFunctions,
'// quarto-scss-analysis-annotation { "origin": "\'functions\' section from user-defined SCSS" }',
userFunctions,
'// quarto-scss-analysis-annotation { "origin": "Defaults from user-defined SCSS" }',
userDefaults,
'// quarto-scss-analysis-annotation { "origin": "Defaults from Quarto\'s SCSS" }',
...quartoDefaults.reverse(),
'// quarto-scss-analysis-annotation { "origin": "Defaults from the format SCSS" }',
...frameworkDefaults.reverse(),
'// quarto-scss-analysis-annotation { "origin": "\'mixins\' section from format" }',
...frameworkMixins,
'// quarto-scss-analysis-annotation { "origin": "\'mixins\' section from Quarto" }',
...quartoMixins,
'// quarto-scss-analysis-annotation { "origin": "\'mixins\' section from user-defined SCSS" }',
userMixins,
'// quarto-scss-analysis-annotation { "origin": "\'rules\' section from format" }',
...frameworkRules,
'// quarto-scss-analysis-annotation { "origin": "\'rules\' section from Quarto" }',
...quartoRules,
'// quarto-scss-analysis-annotation { "origin": "\'rules\' section from user-defined SCSS" }',
userRules,
'// quarto-scss-analysis-annotation { "origin": null }',
].join("\n\n");
const saveScssPrefix = Deno.env.get("QUARTO_SAVE_SCSS");
if (saveScssPrefix) {
// Save the SCSS before compilation
const counterValue = counter++;
Deno.writeTextFileSync(
`${saveScssPrefix}-${counterValue}.scss`,
scssInput,
);
}
// Compile the scss
const result = await compileWithCache(
scssInput,
loadPaths,
project,
{
compressed: minified,
cacheIdentifier: await md5HashBytes(new TextEncoder().encode(scssInput)),
addVarsBlock: true,
},
);
if (saveScssPrefix) {
// The compilation succeeded, we can update the file with additional info
const partialOutput = Deno.readTextFileSync(result);
// now we attempt to find the SCSS variables in the output
// and inject them back in the SCSS file so that our debug tooling can use them.
const scssToWrite = [scssInput];
const internalVars = Array.from(
partialOutput.matchAll(/(--quarto-scss-export-[^;}]+;?)/g),
).map((m) => m[0]);
const annotation = {
"css-vars": internalVars,
};
scssToWrite.push(
`// quarto-scss-analysis-annotation ${JSON.stringify(annotation)}`,
);
scssInput = scssToWrite.join("\n");
Deno.writeTextFileSync(
`${saveScssPrefix}-${counter - 1}.scss`,
scssInput,
);
}
return result;
}
/*-- scss:uses --*/
/*-- scss:functions --*/
/*-- scss:defaults --*/
/*-- scss:mixins --*/
/*-- scss:rules --*/
const layoutBoundary =
"^\/\\*\\-\\-[ \\t]*scss:(uses|functions|rules|defaults|mixins)[ \\t]*\\-\\-\\*\\/$";
const kLayerBoundaryLine = RegExp(layoutBoundary);
const kLayerBoundaryTest = RegExp(layoutBoundary, "m");
export function mergeLayers(...layers: SassLayer[]): SassLayer {
const themeUses: string[] = [];
const themeDefaults: string[] = [];
const themeRules: string[] = [];
const themeFunctions: string[] = [];
const themeMixins: string[] = [];
layers.forEach((theme) => {
if (theme.uses) {
themeUses.push(theme.uses);
}
if (theme.defaults) {
themeDefaults.push(theme.defaults);
}
if (theme.rules) {
themeRules.push(theme.rules);
}
if (theme.functions) {
themeFunctions.push(theme.functions);
}
if (theme.mixins) {
themeMixins.push(theme.mixins);
}
});
return {
uses: themeUses.join("\n"),
// We need to reverse the order of defaults
// since defaults override one another by being
// set first
defaults: themeDefaults.reverse().join("\n"),
functions: themeFunctions.join("\n"),
mixins: themeMixins.join("\n"),
rules: themeRules.join("\n"),
};
}
export function sassLayer(path: string): SassLayer {
if (Deno.statSync(path).isFile) {
return sassLayerFile(path);
} else {
return sassLayerDir(
path,
{
uses: "_use.scss",
functions: "_functions.scss",
defaults: "_defaults.scss",
mixins: "_mixins.scss",
rules: "_rules.scss",
},
);
}
}
export function sassLayerFile(theme: string): SassLayer {
// It is not a built in theme, so read the theme file and parse it.
const rawContents = Deno.readTextFileSync(theme);
return sassLayerStr(rawContents, theme);
}
export function sassLayerStr(rawContents: string, errorHint?: string) {
// Verify that the scss file has required boundaries
if (!kLayerBoundaryTest.test(rawContents)) {
throw new Error(
`The file ${errorHint} doesn't contain at least one layer boundary (/*-- scss:defaults --*/, /*-- scss:rules --*/, /*-- scss:mixins --*/, /*-- scss:functions --*/, or /*-- scss:uses --*/)`,
);
}
const uses: string[] = [];
const defaults: string[] = [];
const rules: string[] = [];
const functions: string[] = [];
const mixins: string[] = [];
let accum = defaults;
lines(rawContents).forEach((line) => {
const scopeMatch = line.match(kLayerBoundaryLine);
if (scopeMatch) {
const scope = scopeMatch[1];
switch (scope) {
case "uses":
accum = uses;
break;
case "defaults":
accum = defaults;
break;
case "rules":
accum = rules;
break;
case "functions":
accum = functions;
break;
case "mixins":
accum = mixins;
break;
}
} else {
accum.push(line);
}
});
return {
uses: uses.join("\n"),
defaults: defaults.join("\n"),
rules: rules.join("\n"),
mixins: mixins.join("\n"),
functions: functions.join("\n"),
};
}
export function sassLayerDir(
dir: string,
names: {
uses?: string;
functions?: string;
defaults?: string;
mixins?: string;
rules?: string;
},
): SassLayer {
const read = (
path?: string,
) => {
if (path) {
path = join(dir, path);
if (existsSync(path)) {
return Deno.readTextFileSync(path);
} else {
return "";
}
} else {
return "";
}
};
// It's a directory, look for names files instead
return {
uses: read(names.uses),
defaults: read(names.defaults),
rules: read(names.rules),
mixins: read(names.mixins),
functions: read(names.functions),
};
}
type CompileWithCacheOptions = {
compressed?: boolean;
cacheIdentifier?: string;
addVarsBlock?: boolean;
};
const memoizedGetVarsBlock = memoizeStringFunction([
"core",
"sass",
"cssVarsBlock",
], (input: string) => Promise.resolve(cssVarsBlock(input)));
export async function compileWithCache(
input: string,
loadPaths: string[],
project: ProjectContext,
options?: CompileWithCacheOptions,
) {
const { temp } = project;
const {
compressed,
cacheIdentifier,
addVarsBlock,
} = options || {};
const handleVarsBlock = async (input: string) => {
if (!addVarsBlock) {
return input;
}
try {
const result = await memoizedGetVarsBlock(project, input);
return input + "\n" + result;
} catch (e) {
if (e.name !== "SCSSParsingError") {
throw e;
}
console.warn("Error adding css vars block", e);
console.warn(
"The resulting CSS file will not have SCSS color variables exported as CSS.",
);
Deno.writeTextFileSync("_quarto_internal_scss_error.scss", input);
console.warn(
"This is likely a Quarto bug.\nPlease consider reporting it at https://github.com/quarto-dev/quarto-cli,\nalong with the _quarto_internal_scss_error.scss file that can be found in the current working directory.",
);
}
return input;
};
if (cacheIdentifier) {
// If there are imports, the computed input Hash is incorrect
// so we should be using a session cache which will cache
// across renders, but not persistently
const useSessionCache = input.match(/@import/);
// check the cache
const cacheDir = useSessionCache
? join(temp.baseDir, "sass")
: quartoCacheDir("sass");
// when using quarto session cache, we ensure to cleanup the cache files at TempContext cleanup
const cache = await sassCache(cacheDir, useSessionCache ? temp : undefined);
return cache.getOrSet(
input,
cacheIdentifier,
async (outputFilePath: string) => {
input = await handleVarsBlock(input);
await dartCompile(input, outputFilePath, temp, loadPaths, compressed);
},
);
} else {
input = await handleVarsBlock(input);
const outputFilePath = temp.createFile({ suffix: ".css" });
// Skip the cache and just compile
await dartCompile(
input,
outputFilePath,
temp,
ld.uniq(loadPaths),
compressed,
);
return outputFilePath;
}
}
// Clean sourceMappingUrl from css after saas compilation
export function cleanSourceMappingUrl(cssPath: string): void {
const cleaned = Deno.readTextFileSync(cssPath).replaceAll(
kSourceMappingRegexes[0],
"",
).replaceAll(
kSourceMappingRegexes[1],
"",
);
Deno.writeTextFileSync(cssPath, cleaned.trim(), {
mode: safeModeFromFile(cssPath),
});
}