-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.js
78 lines (63 loc) · 3.32 KB
/
setup.js
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
const fs = require('fs');
const readline = require('readline');
const path = require('path');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
const manifestJsonPath = path.join(__dirname, 'manifest.json');
const manifestContent = JSON.parse(fs.readFileSync(manifestJsonPath, 'utf8'));
const currentPluginName = manifestContent.name;
const currentPluginSlug = manifestContent.id;
const currentPluginPascalCase = camelize(currentPluginName).charAt(0).toUpperCase() + camelize(currentPluginName).slice(1);
function replaceInFile(filePath, currentValueRegex, replaceValue) {
const fileContent = fs.readFileSync(filePath, 'utf8');
const updatedContent = fileContent.replace(currentValueRegex, replaceValue);
fs.writeFileSync(filePath, updatedContent, 'utf8');
}
function camelize(str) {
return str.replace(/(?:^\w|[A-Z]|\b\w|\s+)/g, function(match, index) {
if (+match === 0) return "";
return index === 0 ? match.toLowerCase() : match.toUpperCase();
});
}
function isValidName(name) {
return /^[a-zA-Z0-9\s]+$/.test(name);
}
function updateProject() {
rl.question(`Enter your plugin name (current: "${currentPluginName}"): `, (pluginName) => {
if (!isValidName(pluginName)) {
console.log("Invalid plugin name. Please use only alphanumeric characters and spaces.");
rl.close();
return;
}
pluginName = pluginName || currentPluginName;
const slug = pluginName.toLowerCase().replace(/ /g, '-');
const camelCaseName = camelize(pluginName);
const pascalCaseName = camelCaseName.charAt(0).toUpperCase() + camelCaseName.slice(1);
// Paths to the files you want to update
const manifestJsonPath = path.join(__dirname, 'manifest.json');
const packageJsonPath = path.join(__dirname, 'package.json');
const mainTsPath = path.join(__dirname, 'src', 'main.ts');
const pluginSettingsTsPath = path.join(__dirname, 'src', 'settings', 'pluginSettings.ts');
const settingsTabTsPath = path.join(__dirname, 'src', 'ui', 'settingsTab.ts');
// const esbuildConfigPath = path.join(__dirname, 'esbuild.config.mjs');
const communityPluginsJsonPath = path.join(__dirname, 'testVault', '.obsidian', 'community-plugins.json');
//Before changing any file, check if all files exists to prevent chnaging the name only in some files
// Name replacement
replaceInFile(manifestJsonPath, new RegExp(`"name": "${currentPluginName}"`), `"name": "${pluginName}"`);
replaceInFile(mainTsPath, new RegExp(`${currentPluginName}`, "g"), `${pluginName}`);
// SLUG replacement
replaceInFile(manifestJsonPath, new RegExp(`"id": "${currentPluginSlug}"`), `"id": "${slug}"`);
replaceInFile(packageJsonPath, new RegExp(`"name": "${currentPluginSlug}"`), `"name": "${slug}"`);
replaceInFile(communityPluginsJsonPath, new RegExp(`"${currentPluginSlug}"`), `"${slug}"`);
replaceInFile(mainTsPath, new RegExp(`${currentPluginSlug}`, "g"), slug);
// PascalCase replacement
replaceInFile(mainTsPath, new RegExp(`${currentPluginPascalCase}`, "g"), pascalCaseName);
replaceInFile(pluginSettingsTsPath, new RegExp(`${currentPluginPascalCase}`, "g"), pascalCaseName);
replaceInFile(settingsTabTsPath, new RegExp(`${currentPluginPascalCase}`, "g"), pascalCaseName);
console.log('Project customized successfully.');
rl.close();
});
}
updateProject();