-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.js
121 lines (113 loc) · 2.79 KB
/
module.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
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
// Chalk
import chalk from "chalk";
// File System
import fs from "fs";
// Path
import path from "path";
const args = process.argv.slice(2);
if (args.length === 0) {
console.log(chalk.red("Please provide a module name."));
} else {
const moduleName = args[0];
const kebabCaseModuleName = moduleName
.replace(/([a-z])([A-Z])/g, "$1-$2")
.toLowerCase();
const modulePath = path.join("src", "modules", moduleName);
try {
fs.mkdirSync(modulePath, { recursive: true });
const listFolderNames = [
"components",
"constants",
"interfaces",
"router",
"hooks",
"views",
];
// Create seperates folders and files
listFolderNames.forEach((folderName) => {
fs.mkdirSync(path.join(modulePath, folderName));
switch (folderName) {
case "components":
fs.closeSync(
fs.openSync(path.join(modulePath, folderName, ".gitkeep"), "w")
);
break;
case "constants":
fs.closeSync(
fs.openSync(
path.join(
modulePath,
folderName,
`${kebabCaseModuleName}.constant.ts`
),
"w"
)
);
break;
case "hooks":
fs.closeSync(
fs.openSync(
path.join(
modulePath,
folderName,
`${kebabCaseModuleName}.hook.tsx`
),
"w"
)
);
break;
case "interfaces":
fs.closeSync(
fs.openSync(
path.join(
modulePath,
folderName,
`${kebabCaseModuleName}.interface.ts`
),
"w"
)
);
break;
case "router":
fs.closeSync(
fs.openSync(
path.join(
modulePath,
folderName,
`${kebabCaseModuleName}.router.tsx`
),
"w"
)
);
break;
case "views":
fs.closeSync(
fs.openSync(
path.join(
modulePath,
folderName,
`${kebabCaseModuleName}-main.tsx`
),
"w"
)
);
break;
default:
fs.closeSync(
fs.openSync(
path.join(modulePath, folderName, `${kebabCaseModuleName}.ts`),
"w"
)
);
break;
}
});
console.log(
chalk.green(
`Module "${moduleName}" directory structure created successfully. Let's check it out!`
)
);
} catch (err) {
console.error(chalk.red(`Error creating module "${moduleName}": ${err}`));
}
}