forked from yamada-ui/yamada-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplopfile.mjs
More file actions
234 lines (191 loc) · 6.4 KB
/
Copy pathplopfile.mjs
File metadata and controls
234 lines (191 loc) · 6.4 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
import { readdirSync } from "fs"
import { appendFile, readFile, writeFile } from "fs/promises"
import path from "path"
import { findPackages } from "find-packages"
const cwd = process.cwd()
const upperCase = (t) => t.charAt(0).toUpperCase() + t.slice(1)
const lowerCase = (t) => t.charAt(0).toLowerCase() + t.slice(1)
const camelCase = (t) => t.replace(/[-_](\w)/g, (_, c) => c.toUpperCase())
const dashCase = (t) => t.replace(/[A-Z]/g, (c) => "-" + c.toLowerCase())
const titleCase = (t) => t.replace(/[-_](\w)/g, (_, c) => " " + c.toUpperCase())
const descCase = (t) => t.replace(/[-_]/g, " ")
const validateDashCase = (i) => !/[A-Z]/.test(i) && !/_/.test(i)
const components = readdirSync("./packages/components").filter(
(n) => !n.includes("."),
)
const hooks = readdirSync("./packages/hooks").filter((n) => !n.includes("."))
const categories = readdirSync("./stories/components").filter(
(n) => !n.includes("."),
)
export default function plop(
/** @type {import('plop').NodePlopAPI} */
plop,
) {
plop.setHelper("upperCase", (text) => upperCase(camelCase(text)))
plop.setHelper("titleCase", (text) => upperCase(titleCase(text)))
plop.setHelper("descCase", (text) => descCase(text))
plop.setActionType("updateReact", async (answers) => {
if (!answers) return
const { packageName } = answers
const [project] = await findPackages(path.join(cwd, "packages", "react"))
const { manifest } = project
manifest.dependencies = {
...manifest.dependencies,
[`@yamada-ui/${dashCase(lowerCase(packageName))}`]: "workspace:*",
}
project.writeProjectManifest(manifest)
await appendFile(
path.join(cwd, "packages", "react", "src", "index.ts"),
`export * from '@yamada-ui/${dashCase(lowerCase(packageName))}'`,
)
})
plop.setActionType("updateTheme", async (answers) => {
if (!answers) return
const { packageName } = answers
let data = await readFile(
path.join(cwd, "packages", "theme", "src", "components", "index.ts"),
"utf8",
)
data =
`import { ${upperCase(
camelCase(packageName),
)} } from "./${packageName}"\n` + data
const keyword = "export default {"
const target = data.indexOf(keyword) + keyword.length
data =
data.slice(0, target) +
`\n ${upperCase(camelCase(packageName))},` +
data.slice(target)
await writeFile(
path.join(cwd, "packages", "theme", "src", "components", "index.ts"),
data,
)
})
plop.setGenerator("component", {
description: "Generates a component",
prompts: [
{
type: "input",
name: "packageName",
message: "Enter component name:",
validate: (input) => {
if (!input) return "component name is required."
if (!validateDashCase(input))
return `Please enter the component name in kebab case.`
if (components.includes(input)) return `${input} already exist.`
return true
},
},
{
type: "list",
name: "categoryName",
message: "Which category does this belong?:",
default: "layouts",
choices: [...categories, "Create new category."],
},
{
type: "input",
name: "newCategoryName",
message: "Enter category name:",
when: ({ categoryName }) => categoryName === "Create new category.",
validate: (input) => {
if (!input) return "category name is required."
if (!validateDashCase(input))
return `Please enter the category name in kebab case.`
if (categories.includes(input)) return `${input} already exist.`
return true
},
},
{
type: "list",
name: "componentType",
message: "Does this use a provider?:",
default: "No",
choices: ["Yes", "No"],
},
],
actions: (answers) => {
const actions = []
if (!answers) return actions
const { packageName, categoryName, newCategoryName, componentType } =
answers
actions.push({
type: "addMany",
templateFiles:
componentType === "Yes"
? "plop/component/package-multi/**"
: "plop/component/package/**",
destination: `./packages/components/{{dashCase packageName}}`,
base:
componentType === "Yes"
? "plop/component/package-multi"
: "plop/component/package",
data: { packageName },
abortOnFail: true,
})
actions.push({
type: "addMany",
templateFiles: "plop/component/storybook/**",
destination: `./stories/components/{{dashCase ${newCategoryName ? `newCategoryName` : `categoryName`}}}`,
base: "plop/component/storybook",
data: { packageName, categoryName: newCategoryName ?? categoryName },
abortOnFail: true,
})
actions.push({
type: "addMany",
templateFiles:
componentType === "Yes"
? "plop/component/theme-multi/**"
: "plop/component/theme/**",
destination: `./packages/theme/src/components`,
base:
componentType === "Yes"
? "plop/component/theme-multi"
: "plop/component/theme",
data: { packageName, categoryName: newCategoryName ?? categoryName },
abortOnFail: true,
})
actions.push({
type: "updateReact",
})
actions.push({
type: "updateTheme",
})
return actions
},
})
plop.setGenerator("hook", {
description: "Generates a hook",
prompts: [
{
type: "input",
name: "packageName",
message: "Enter custom hook name:",
validate: (input) => {
if (!input) return "custom hook name is required."
if (!validateDashCase(input))
return `Please enter the custom hook name in kebab case.`
if (hooks.includes(input)) return `${input} already exist.`
return true
},
},
],
actions: (answers) => {
const actions = []
if (!answers) return actions
const { packageName } = answers
actions.push({
type: "addMany",
templateFiles: "plop/hook/package/**",
destination: `./packages/hooks/{{dashCase packageName}}`,
base: "plop/hook/package",
data: { packageName },
abortOnFail: true,
})
actions.push({
type: "updateReact",
})
return actions
},
})
}