-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreateView.js
41 lines (33 loc) · 1.01 KB
/
createView.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
const fs = require('fs')
const path = require('path')
const viewName = process.argv[2]
if (!viewName) {
console.error('Please specify a View name')
process.exit(1)
}
// Create the component directory
const componentDir = path.join(__dirname, 'src', 'views', viewName)
fs.mkdirSync(componentDir)
// Create the HTML file
const htmlContent = `<section id="${viewName}view">
<h1>${viewName}</h1>
</section>
`
const htmlPath = path.join(componentDir, `${viewName}.html`)
fs.writeFileSync(htmlPath, htmlContent)
// Create the SCSS file
const scssContent = `@import '../../styles/mixin.scss'; // remove if not needed
#${viewName}view {
// Component styles go here
}
`
const scssPath = path.join(componentDir, `${viewName}.scss`)
fs.writeFileSync(scssPath, scssContent)
// Create the JS file
const jsContent = `function ${viewName}() {
console.log("${viewName}");
}
`
const jsPath = path.join(componentDir, `${viewName}.js`)
fs.writeFileSync(jsPath, jsContent)
console.log(`Component '${viewName}' created successfully`)