-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathchoco-theme.ts
358 lines (325 loc) Β· 13 KB
/
choco-theme.ts
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
#!/usr/bin/env ts-node
/*!
* Script to copy assets and set up choco-theme on an external website.
* Copyright 2020-2024 Chocolatey Software
* Licensed under Apache License (https://github.com/chocolatey/choco-theme/blob/main/LICENSE)
*/
import * as fs from 'fs/promises';
import { repository } from './functions/determine-repository';
import { repositoryConfig } from './data/repository-config';
import { purgeCss } from './functions/purge-css';
import { updateContent } from './functions/update-content';
console.log('Using repository information:', repository);
// Determine source CSS name
let sourceCss: string;
switch (repository.name) {
case repositoryConfig.zendesk.name:
case repositoryConfig.boxstarter.name:
sourceCss = repository.name;
break;
default:
sourceCss = 'chocolatey';
break;
}
interface CopyTheme {
task: string;
source: string;
destination: string;
isFolder?: boolean;
}
const copyTheme = async ({
task,
source,
destination,
isFolder = true
}: CopyTheme): Promise<void> => {
// Clean destination
if (destination !== repository.favicons) {
await fs.rm(destination, { force: true, recursive: isFolder });
}
// Copy theme
await fs.cp(source, destination, { recursive: isFolder });
console.log(`β
${task} copied`);
};
const init = async () => {
try {
const containsValidation = repository.name === repositoryConfig.portal.name || repository.name === repositoryConfig.community.name;
// Define array for parallel tasks
const parallelTasksInitial = [
{
task: `${repository.name}.min.css`,
source: `${repositoryConfig.theme.css}${sourceCss}.min.css`,
destination: `${repository.css}${repository.name}.min.css`,
isFolder: false
}
];
// Not CCM scripts
if (repository.name !== repositoryConfig.ccm.name) {
parallelTasksInitial.push(
{
task: 'theme-toggle.min.js',
source: `${repositoryConfig.theme.js}theme-toggle.min.js`,
destination: `${repository.js}theme-toggle.min.js`,
isFolder: false
},
{
task: 'bootstrap.bundle.min.js',
source: 'node_modules/bootstrap/dist/js/bootstrap.bundle.min.js',
destination: `${repository.js}bootstrap.bundle.min.js`,
isFolder: false
},
{
task: `${repository.name}.min.js`,
source: `${repositoryConfig.theme.js}${repository.name}.min.js`,
destination: `${repository.js}${repository.name}.min.js`,
isFolder: false
},
{
task: 'Partials',
source: `${repositoryConfig.theme.partials}${repository.language}/`,
destination: repository.partials,
isFolder: true
}
);
}
// Community only scripts
if (repository.name === repositoryConfig.community.name) {
parallelTasksInitial.push(
{
task: 'community-packages.min.js',
source: `${repositoryConfig.theme.js}community-packages.min.js`,
destination: `${repository.js}community-packages.min.js`,
isFolder: false
},
{
task: 'community-package-differ.min.js',
source: `${repositoryConfig.theme.js}community-package-differ.js`,
destination: `${repository.js}community-package-differ.min.js`,
isFolder: false
},
{
task: 'community-package-stats.min.js',
source: `${repositoryConfig.theme.js}community-package-stats.js`,
destination: `${repository.js}community-package-stats.min.js`,
isFolder: false
}
);
}
// Disqus
if (repository.name === repositoryConfig.community.name || repository.name === repositoryConfig.blog.name) {
parallelTasksInitial.push(
{
task: 'disqus.min.js',
source: `${repositoryConfig.theme.js}disqus.min.js`,
destination: `${repository.js}disqus.min.js`,
isFolder: false
}
);
}
// atcb-override css
if (repository.name === repositoryConfig.org.name) {
parallelTasksInitial.push(
{
task: 'atcb-overrides.min.css',
source: `${repositoryConfig.theme.css}atcb-overrides.min.css`,
destination: `${repository.css}atcb-overrides.min.css`,
isFolder: false
}
);
}
// bootstrap-duallistbox css
if (repository.name === repositoryConfig.ccm.name) {
parallelTasksInitial.push(
{
task: 'bootstrap-duallistbox.min.css',
source: `${repositoryConfig.theme.css}bootstrap-duallistbox.min.css`,
destination: `${repository.css}bootstrap-duallistbox.min.css`,
isFolder: false
}
);
}
// jstree css
if (repository.name === repositoryConfig.ccm.name) {
parallelTasksInitial.push(
{
task: 'jstree.min.css',
source: `${repositoryConfig.theme.css}jstree.min.css`,
destination: `${repository.css}jstree.min.css`,
isFolder: false
}
);
}
// vendors css
if (repository.name === repositoryConfig.ccm.name) {
parallelTasksInitial.push(
{
task: 'vendors.min.css',
source: `${repositoryConfig.theme.css}vendors.min.css`,
destination: `${repository.css}vendors.min.css`,
isFolder: false
}
);
}
// tempus-dominus css
if (repository.name === repositoryConfig.ccm.name) {
parallelTasksInitial.push(
{
task: 'tempus-dominus.min.css',
source: `${repositoryConfig.theme.css}tempus-dominus.min.css`,
destination: `${repository.css}tempus-dominus.min.css`,
isFolder: false
}
);
}
// Playwright
if (repository.playwright) {
parallelTasksInitial.push(
{
task: 'Playwright tests - general',
source: `${repositoryConfig.theme.playwright}tests/general/`,
destination: `${repository.playwright}general/`,
isFolder: true
}
);
if (repository.name === repositoryConfig.org.name) {
parallelTasksInitial.push(
{
task: 'Playwright tests - pricing calculator',
source: `${repositoryConfig.theme.playwright}tests/pricing-calculator/`,
destination: `${repository.playwright}pricing-calculator/`,
isFolder: true
}
);
}
}
// Favicons
if (repository.name !== repositoryConfig.boxstarter.name) {
parallelTasksInitial.push(
{
task: 'Favicons',
source: repositoryConfig.theme.favicons,
destination: repository.favicons,
isFolder: true
}
);
}
// Font Awesome and PT Sans
if (repository.name !== repositoryConfig.zendesk.name) {
parallelTasksInitial.push(
{
task: 'Font Awesome',
source: repositoryConfig.theme.fontAwesome,
destination: repository.fontAwesome,
isFolder: true
},
{
task: 'PT Sans',
source: repositoryConfig.theme.ptSans,
destination: repository.ptSans,
isFolder: true
}
);
}
// Images
if (repository.name !== repositoryConfig.zendesk.name && repository.name !== repositoryConfig.ccm.name) {
parallelTasksInitial.push(
{
task: 'Images',
source: repositoryConfig.theme.images,
destination: repository.images,
isFolder: true
}
);
}
// ESLint - needed if repository contains it's own assets along with choco-theme
if (repository.name === repositoryConfig.portal.name || repository.name === repositoryConfig.ccm.name) {
parallelTasksInitial.push(
{
task: 'eslint.config.mjs',
source: `${repositoryConfig.theme.root}eslint.config.mjs`,
destination: `${repository.root}eslint.config.mjs`,
isFolder: false
}
);
}
// Validation
if (containsValidation) {
parallelTasksInitial.push(
{
task: 'validation.min.js',
source: `${repositoryConfig.theme.js}validation.min.js`,
destination: `${repository.js}validation.min.js`,
isFolder: false
}
);
}
// Execute initial tasks in parallel
console.log('π Starting choco-theme...');
console.log('π Copying choco-theme...');
await Promise.all(parallelTasksInitial.map(({ task, source, destination, isFolder }) => {
return copyTheme({ task, source, destination, isFolder });
}));
console.log('β
Copying of choco-theme complete');
// Change CSS content
// Font Awesome
if (repository.name === repositoryConfig.portal.name || repository.name === repositoryConfig.ccm.name || repository.language === 'astro') {
console.log('π Updating Font Awesome font path...');
await updateContent({
destination: repository.css,
targetFile: `${repository.name}.min.css`,
targetFileDestination: repository.css,
targetFileContentToReplace: '/assets/fonts/fontawesome-free',
replaceWithContent: '/fonts/fontawesome-free',
replacementContentIsFile: false
});
console.log('β
Font Awesome font path updated');
}
if (repository.name === repositoryConfig.community.name) {
// Font Awesome
console.log('π Updating Font Awesome font path...');
await updateContent({
destination: repository.css,
targetFile: `${repository.name}.min.css`,
targetFileDestination: repository.css,
targetFileContentToReplace: '/assets/fonts/fontawesome-free',
replaceWithContent: '/Content/fonts/fontawesome-free',
replacementContentIsFile: false
});
console.log('β
Font Awesome font path updated');
// Images for headers
console.log('π Updating image paths for headers...');
await updateContent({
destination: repository.css,
targetFile: `${repository.name}.min.css`,
targetFileDestination: repository.css,
targetFileContentToReplace: '/assets/images',
replaceWithContent: '/Content/images',
replacementContentIsFile: false
});
console.log('β
Image paths for headers updated');
}
if (repository.name === repositoryConfig.ccm.name) {
console.log('π Updating jstree image paths...');
await updateContent({
destination: repository.css,
targetFile: 'jstree.min.css',
targetFileDestination: repository.css,
targetFileContentToReplace: 'url(32px.png)',
replaceWithContent: 'var(--jstree-image-checkbox-path)',
replacementContentIsFile: false
});
console.log('β
jstree image paths updated');
}
// PurgeCSS
if (repository.name !== repositoryConfig.portal.name && repository.name !== repositoryConfig.ccm.name) {
await purgeCss({
source: `${repository.css}${repository.name}.min.css`,
repository: repository
});
}
console.log('π choco-theme complete');
} catch (error) {
console.error(error);
}
};
init();