-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpreview-link.ts
87 lines (73 loc) · 3.2 KB
/
preview-link.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
#!/usr/bin/env ts-node
/*!
* Script to link specified folders to choco-theme for development.
* 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 * as path from 'path';
import { spawn } from 'child_process';
import { folderMapping } from './data/preview-config';
import { loadingAnimation } from './functions/loading-animation';
const init = async () => {
// Parse command-line arguments
let args = process.argv.slice(2);
if (args[0] === '--all') {
args = Object.keys(folderMapping);
}
const foldersToRun = args.filter(arg => folderMapping[arg]);
if (foldersToRun.length === 0) {
console.error('Please specify at least one valid option.');
process.exit(1);
} else {
console.log('🚀 Linking folders to choco-theme...');
}
// Array to store loading intervals for each script
const loadingIntervals = foldersToRun.map(() => loadingAnimation());
await Promise.all(foldersToRun.map(async (option, index) => {
const folderConfig = folderMapping[option];
const folderName = folderConfig.folder;
const chocoThemePath = folderConfig.root ? '../../../' : '../';
const folderNamePath = folderConfig.root ? `${folderName}${folderConfig.root}` : folderName;
const folderPath = path.join(__dirname, '../../', folderNamePath);
// Check if folder exists
try {
await fs.access(folderPath);
} catch (error) {
clearInterval(loadingIntervals[index]);
process.stdout.write('\r🟨 ');
console.log(`${folderName} does not exist. Skipping...`);
return; // Skip to the next folder
}
try {
const childProcess = spawn(`yarn link ${chocoThemePath}choco-theme`, [], {
// stdio: 'inherit', // Use 'inherit' to directly pipe the output to the parent process
shell: true, // Needed for Windows to execute .sh files
cwd: folderPath // Specify the working directory for the child process
});
// Handle stdout data event
childProcess.stdout.on('data', data => {
const output = data.toString().trim();
if (output.startsWith('➤ YN0072: │ The application uses portals')) {
// Stop loading animation for this script
clearInterval(loadingIntervals[index]);
process.stdout.write('\r✅ ');
console.log(`${folderName} linked`);
}
});
// Handle exit event
childProcess.on('exit', code => {
if (code !== 0) {
clearInterval(loadingIntervals[index]);
process.stdout.write('\r⛔ ');
console.error(`${folderName} not linked and exited with code ${code}`);
}
});
} catch (error) {
clearInterval(loadingIntervals[index]);
process.stdout.write('\r⛔ ');
console.error(`${folderName} not linked. Error: ${error}`);
}
}));
};
init();