-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.cjs
More file actions
executable file
·258 lines (224 loc) · 7.67 KB
/
script.cjs
File metadata and controls
executable file
·258 lines (224 loc) · 7.67 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
#!/usr/bin/env node
const prompts = require('prompts');
// Require the file system module
const fs = require('fs');
const path = require('path');
const prompt = [
{
type: 'text',
name: 'name',
message: 'Project name',
initial: 'stratox-app',
validate: name => name.length <= 0 ? 'Required field' : true
},
{
type: 'toggle',
name: 'tailwind',
message: 'Install Tailwind?',
initial: true,
active: 'yes',
inactive: 'no'
},
{
type: prev => prev ? 'toggle' : null,
name: 'startoxTailwind',
message: 'Stratox design system?',
initial: false,
active: 'yes',
inactive: 'no'
},
{
type: 'toggle',
name: 'alpine',
message: 'Install Alpine?',
initial: false,
active: 'yes',
inactive: 'no'
},
{
type: 'toggle',
name: 'eslint',
message: 'ESlint for quality code?',
initial: false,
active: 'yes',
inactive: 'no'
}
];
const packageData = {
"name": "stratox-app",
"type": "module",
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview --host"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"terser": "^5.34.1",
"vite": "^5.4.8"
},
"dependencies": {
"@stratox/core": "^2.2.0",
"@stratox/pilot": "^1.2.0",
"@stratox/component": "^1.0.0",
"stratox": "^3.0.0"
}
}
function copyDir(src, dest) {
fs.mkdirSync(dest, { recursive: true });
let entries = fs.readdirSync(src, { withFileTypes: true });
for (let entry of entries) {
let srcPath = path.join(src, entry.name);
let destPath = path.join(dest, entry.name);
entry.isDirectory() ? copyDir(srcPath, destPath) : fs.copyFileSync(srcPath, destPath);
}
}
function readFile(target, replace) {
const sourceDir = path.join(__dirname, target);
let output = fs.readFileSync(sourceDir, 'utf-8');
if(typeof replace === "object") {
for (const [key, value] of Object.entries(replace)) {
output = output.replace('['+key.toUpperCase()+']', value);
}
}
return output;
}
function createProject(srource, target) {
const sourceDir = path.join(__dirname, srource);
const targetDir = process.cwd()+target;
try {
copyDir(sourceDir, targetDir);
} catch (err) {
console.error('Error initializing project:', err);
}
}
function createDir(dirname) {
const dir = path.join(process.cwd(), dirname);
try {
fs.mkdirSync(dir, { recursive: true });
} catch (err) {
console.error(`Error creating directory: ${err.message}`);
}
}
function createFile(filePath, content) {
// Specify the path for the new file
const textFilePath = path.join(process.cwd(), filePath);
// Write the file to the current directory
fs.writeFile(textFilePath, content, (err) => {
if (err) {
console.error('Error creating '+filePath+':', err);
process.exit(1);
}
});
}
// Remove a directory and all its files
function removeDirectory(directory) {
const directoryPath = path.join(process.cwd(), directory);
try {
fs.rmSync(directoryPath, { recursive: true, force: true });
} catch (err) {
console.error(`Error while removing directory: ${err.message}`);
}
}
// Rename a directory
function renameDirectory(oldP, newP) {
const oldPath = path.join(process.cwd(), oldP);
const newPath = path.join(process.cwd(), newP);
try {
fs.renameSync(oldPath, newPath);
} catch (err) {
console.error(`Error while renaming directory: ${err.message}`);
}
}
function toSeoUrl(url) {
return url.toString() // Convert to string
.normalize('NFD') // Change diacritics
.replace(/[\u0300-\u036f]/g,'') // Remove illegal characters
.replace(/\s+/g,'-') // Change whitespace to dashes
.toLowerCase() // Change to lowercase
.replace(/&/g,'-and-') // Replace ampersand
.replace(/[^a-z0-9\-]/g,'') // Remove anything that is not a letter, number or dash
.replace(/-+/g,'-') // Remove duplicate dashes
.replace(/^-*/,'') // Remove starting dashes
.replace(/-*$/,''); // Remove trailing dashes
}
function friendlyName(inputString) {
return replaceSpecialChar(inputString)
// Convert to lower case
.toLowerCase()
// Replace invalid characters with a space
.replace(/[^a-z0-9 -]/g, ' ')
// Collapse whitespace and replace by -
.replace(/\s+/g, '-')
// Collapse dashes
.replace(/-+/g, '-');
}
function replaceSpecialChar(str) {
const charMap = {
'é': 'e', 'è': 'e', 'ë': 'e', 'ê': 'e', 'É': 'E', 'È': 'E', 'Ë': 'E', 'Ê': 'E',
'á': 'a', 'à': 'a', 'ä': 'a', 'â': 'a', 'å': 'a', 'Á': 'A', 'À': 'A', 'Ä': 'A', 'Â': 'A', 'Å': 'A',
'ó': 'o', 'ò': 'o', 'ö': 'o', 'ô': 'o', 'Ó': 'O', 'Ò': 'O', 'Ö': 'O', 'Ô': 'O',
'í': 'i', 'ì': 'i', 'ï': 'i', 'î': 'i', 'Í': 'I', 'Ì': 'I', 'Ï': 'I', 'Î': 'I',
'ú': 'u', 'ù': 'u', 'ü': 'u', 'û': 'u', 'Ú': 'U', 'Ù': 'U', 'Ü': 'U', 'Û': 'U',
'ý': 'y', 'ÿ': 'y', 'Ý': 'Y', 'ø': 'o', 'Ø': 'O', 'œ': 'oe', 'Œ': 'OE', 'Æ': 'AE', 'ç': 'c', 'Ç': 'C'
};
return str.replace(/[éèëêÉÈËÊáàäâåÁÀÄÂÅóòöôÓÒÖÔíìïîÍÌÏÎúùüûÚÙÜÛýÿÝøØœŒÆçÇ]/g, match => charMap[match]);
}
(async () => {
let sucess = true, part1 = "import '@/assets/style.css';",
part2 = '', part3 = '', part4 = '';
const response = await prompts(prompt, {
onCancel: function() {
sucess = false;
}
});
const name = friendlyName(response.name ?? packageData.name);
packageData.name = name;
const projectPath = "./"+name;
if(sucess) {
createDir(projectPath);
if(response.tailwind) {
packageData.devDependencies['tailwindcss'] = "^3.4.1";
packageData.devDependencies['postcss'] = "^8.4.47";
createFile(projectPath+"/postcss.config.cjs", readFile("./configs/postcss.txt"));
if(response.startoxTailwind) {
packageData.devDependencies['@stratox/tailwind'] = "^1.1.0";
createFile(projectPath+"/tailwind.config.cjs", readFile("./configs/tailwind-stratox.txt"));
} else {
createFile(projectPath+"/tailwind.config.cjs", readFile("./configs/tailwind.txt"));
}
}
if(response.eslint) {
packageData.devDependencies['eslint'] = "^9.11.0";
packageData.scripts['lint'] = "eslint . --ext .js --fix --ignore-path .gitignore";
createFile(projectPath+"/.eslintrc.json", readFile("./configs/eslint.txt"));
}
if(response.alpine) {
packageData.dependencies['alpinejs'] = "^3.14.1";
}
// CREATE VITE CONFIG
const packageJsonStr = JSON.stringify(packageData, true, 2);
createFile(projectPath+"/package.json", packageJsonStr);
// Create project files
createProject('./templates', '/'+name);
// Can create mulitple src versions
renameDirectory(projectPath+"/src-default", projectPath+"/src");
if(response.alpine) {
part2 += "import Alpine from 'alpinejs';\n\nwindow.Alpine = Alpine;";
}
createFile(projectPath+"/src/main.js", readFile("./configs/main.txt", {
MAIN_PART_1: part1,
MAIN_PART_2: part2,
MAIN_PART_3: part3,
CONTENT_PART_1: part4
}));
console.log(`\nStratox has been installed successfully!`);
console.log(`To complete the installation, follow these commands:\n`);
console.log(`cd ${name}`);
console.log(`npm install`);
console.log(`npm run dev\n`);
} else {
console.log(`The installation has been canceled`);
}
})();