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