-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplopfile.js
68 lines (63 loc) · 1.81 KB
/
plopfile.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
const path = require('node:path')
const fs = require('node:fs')
const chalk = require('chalk')
const helpers = require('handlebars-helpers')()
const iconsList = fs
.readdirSync(path.join(__dirname, 'src/icons'))
.map((item) => item.substring(0, item.lastIndexOf('.')) || item)
module.exports = (
/** @type {import('plop').NodePlopAPI} */
plop
) => {
for (const prop in helpers) {
if (!prop.toLowerCase().includes('case')) {
plop.setHelper(prop, helpers[prop])
}
}
plop.setGenerator('icon', {
description: '📦 generate a new Icon',
prompts: [
{
type: 'input',
name: 'name',
message: 'What would you like to call your icon?',
validate: (icon) => {
if (icon === '') return chalk.red('⛔ Icon name cannot be empty')
else if (iconsList.includes(icon)) return chalk.red('⛔ Already exists')
else return true
}
},
{
type: 'confirm',
name: 'hasFilledProp',
message: `Will this icon have the ${chalk.blue('filled')} prop?`
},
{
type: 'confirm',
name: 'hasDisableProp',
message: `Will this icon have the ${chalk.yellowBright('disabled')} prop?`
},
{
type: 'confirm',
name: 'hasCustomProps',
message: `Will it have other ${chalk.greenBright('custom')} props?`
}
],
actions() {
const currentActions = [
{
type: 'add',
path: 'src/icons/{{ properCase name }}.tsx',
templateFile: 'generators/Icon.tsx.hbs'
},
{
type: 'append',
path: 'src/index.ts',
pattern: /(\/{3} @PLOP_EXPORTS)/g,
template: "export { {{ properCase name }} } from './icons/{{ properCase name }}'"
}
]
return currentActions
}
})
}