forked from yamada-ui/yamada-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plopfile.js
197 lines (163 loc) · 4.89 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
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
const fs = require("fs").promises
const path = require("path")
const { findPackages } = require("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 workspaces = [
"data-display",
"disclosure",
"feedback",
"forms",
"layouts",
"media-and-icons",
"navigation",
"overlay",
"transitions",
"typography",
]
module.exports = function (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 fs.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 fs.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 fs.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:",
},
{
type: "list",
name: "packageType",
message: "Where does this belong?:",
default: "layouts",
choices: workspaces,
},
{
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, packageType, 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 packageType}}`,
base: "plop/component/storybook",
data: { packageName, packageType },
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 },
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:",
},
],
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
},
})
}