forked from catppuccin/userstyles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.ts
More file actions
153 lines (133 loc) · 4.61 KB
/
Copy pathmetadata.ts
File metadata and controls
153 lines (133 loc) · 4.61 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
// @deno-types="@/types/usercss-meta.d.ts";
import usercssMeta from "usercss-meta";
import * as color from "std/fmt/colors.ts";
import { sprintf } from "std/fmt/printf.ts";
import type { WalkEntry } from "std/fs/walk.ts";
import { join, relative } from "std/path/mod.ts";
import { REPO_ROOT } from "@/deps.ts";
import { log } from "@/lint/logger.ts";
import { formatListOfItems } from "@/utils.ts";
import type { Userstyles } from "@/types/userstyles.d.ts";
export const verifyMetadata = async (
entry: WalkEntry,
content: string,
userstyle: string,
userstyles: Userstyles,
) => {
// `usercss-meta` prohibits any '\r' characters, which seem to be present on Windows.
content = content.replaceAll("\r\n", "\n");
const assert = assertions(userstyle, userstyles);
const file = relative(REPO_ROOT, entry.path);
const { metadata, errors: parsingErrors } = usercssMeta.parse(content, {
allowErrors: true,
});
const lines = content.split("\n");
// Pretty print / annotate the parsing errors.
parsingErrors.map((e) => {
let startLine = 0;
for (const line of lines) {
startLine++;
e.index -= line.length + 1;
if (e.index < 0) break;
}
log(e.message, { file, startLine, content });
});
for (const [key, expected] of Object.entries(assert)) {
const current = metadata[key];
if (current !== expected) {
const line = lines
.findIndex((line) => line.includes(key)) + 1;
const message = current === undefined
? sprintf("Metadata `%s` should not be undefined", color.bold(key))
: sprintf(
'Metadata `%s` should be "%s" but is "%s"',
color.bold(key),
color.green(expected),
color.red(String(current)),
);
log(message, {
file,
startLine: line !== 0 ? line : undefined,
content,
}, "warning");
}
}
const template =
(await Deno.readTextFile(join(REPO_ROOT, "template/catppuccin.user.css")))
.split("\n");
for (const variable of ["darkFlavor", "lightFlavor", "accentColor"]) {
const declaration = `@var select ${variable}`;
const expected = template.find((line) => line.includes(declaration));
const current = lines.findIndex((line) => line.includes(declaration)) +
1;
if (current === 0) {
// This variable is undefined so there isn't a line for it, so we just put it at the bottom of the variables section.
const line = lines
.findLastIndex((line: string) => line.includes("==/UserStyle== */")) +
1;
log(
sprintf(
"Metadata variable `%s` should exist",
color.bold(variable),
),
{
file,
startLine: line !== 0 ? line : undefined,
content,
},
"warning",
);
} else if (expected.trim() !== lines[current - 1].trim()) {
const message = sprintf(
"Options for metadata variable `%s` should be `%s`",
color.bold(variable),
(/\[[^\]]+\]/.exec(expected) as RegExpExecArray)[0],
);
log(message, {
file,
startLine: current,
content,
}, "warning");
}
}
// Parse the UserCSS variables to LESS global variables, e.g.
// `@var select lightFlavor "Light Flavor" ["latte:Latte*", "frappe:Frappé", "macchiato:Macchiato", "mocha:Mocha"]`
// gets parsed as
// `lightFlavor: "latte"`.
const globalVars = Object.entries(metadata.vars)
.reduce((acc, [k, v]) => {
return { ...acc, [k]: v.default };
}, {});
return {
globalVars,
isLess: metadata.preprocessor === assert.preprocessor,
};
};
const assertions = (userstyle: string, userstyles: Userstyles) => {
const prefix = "https://github.com/catppuccin/userstyles";
if (!userstyles[userstyle]) {
log("Metadata section for this userstyle has not been added", {
file: "scripts/userstyles.yml",
}, "error");
Deno.exit(1);
}
return {
name: `${
Array.isArray(userstyles[userstyle].name)
? (userstyles[userstyle].name as string[]).join("/")
: userstyles[userstyle].name
} Catppuccin`,
namespace: `github.com/catppuccin/userstyles/styles/${userstyle}`,
homepageURL: `${prefix}/tree/main/styles/${userstyle}`,
description: `Soothing pastel theme for ${
Array.isArray(userstyles[userstyle].name)
? formatListOfItems(userstyles[userstyle].name as string[])
: userstyles[userstyle].name
}`,
author: "Catppuccin",
updateURL: `${prefix}/raw/main/styles/${userstyle}/catppuccin.user.css`,
supportURL: `${prefix}/issues?q=is%3Aopen+is%3Aissue+label%3A${userstyle}`,
license: "MIT",
preprocessor: "less",
};
};