-
Notifications
You must be signed in to change notification settings - Fork 2
/
plopfile.js
214 lines (197 loc) · 10.5 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
const fs = require('fs')
const { DefaultParser, DatabaseType } = require('prisma-datamodel')
const pluralize = require('pluralize')
const camelcase = require('camelcase')
const path = require('path')
const { PROJECT_ROOT } = require('./lib/paths')
const parser = DefaultParser.create(DatabaseType.postgres)
const { types: allTypes } = parser.parseFromSchemaString(fs.readFileSync('./prisma/datamodel.prisma', 'utf8'))
// Only simple types are supported currently
const types = allTypes
.filter(type => !type.isEmbedded && !type.isEnum && !type.isLinkTable)
.sort((a, b) => a.name.localeCompare(b.name))
const selectType = name => types.find(t => t.name === name)
module.exports = function (plop) {
plop.setWelcomeMessage('What can I do for you?')
// ████████╗██╗ ██╗██████╗ ███████╗
// ╚══██╔══╝╚██╗ ██╔╝██╔══██╗██╔════╝
// ██║ ╚████╔╝ ██████╔╝█████╗
// ██║ ╚██╔╝ ██╔═══╝ ██╔══╝
// ██║ ██║ ██║ ███████╗
// ╚═╝ ╚═╝ ╚═╝ ╚══════╝
plop.setGenerator('type', {
description: 'Generate nexus-prisma type binding for a model. These fields will be only accessible from GQL!',
prompts: [{
type: 'list',
name: 'type',
message: 'Select prisma model to generate binding for',
choices: types.map(type => type.name).filter(type => !fs.existsSync(`src/resolvers/${type}/${type}.type.js`))
}, {
type: 'checkbox',
name: 'fields',
message: 'Select fields to include in GraphQL scheme',
choices: ({ type }) => selectType(type).fields.map(f => ({ name: f.name, checked: f.name !== 'password' }))
}],
actions: data => {
data.connection = pluralize(camelcase(data.type)) + 'Connection'
return [{
type: 'add',
path: path.join(PROJECT_ROOT, 'src/resolvers/{{type}}/{{type}}.type.js'),
templateFile: 'templates/type.hbs'
}]
}
})
// ██████╗ ██╗ ██╗███████╗██████╗ ██╗ ██╗
// ██╔═══██╗██║ ██║██╔════╝██╔══██╗╚██╗ ██╔╝
// ██║ ██║██║ ██║█████╗ ██████╔╝ ╚████╔╝
// ██║▄▄ ██║██║ ██║██╔══╝ ██╔══██╗ ╚██╔╝
// ╚██████╔╝╚██████╔╝███████╗██║ ██║ ██║
// ╚══▀▀═╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝ ╚═╝
plop.setGenerator('query', {
description: 'Generate nexus-prisma query binding for a model. (Select one/select many)',
prompts: [{
type: 'list',
name: 'type',
message: 'Select prisma model to generate binding for',
choices: types.map(type => type.name)
}, {
type: 'checkbox',
name: 'fields',
message: 'Select queries to include in GraphQL scheme',
choices: ({ type }) => [{
name: 'Select by unique identifier (' + camelcase(type) + ')',
value: camelcase(type),
checked: true
}, {
name: 'Select by where clause (' + pluralize(camelcase(type)) + ')',
value: pluralize(camelcase(type)),
checked: true
}, {
name: 'Relay typed connection (' + pluralize(camelcase(type)) + 'Connection)',
value: pluralize(camelcase(type)) + 'Connection',
checked: true
}]
}],
actions: data => {
return [{
type: 'add',
path: path.join(PROJECT_ROOT, 'src/resolvers/{{type}}/{{type}}.query.js'),
templateFile: 'templates/query.hbs'
}]
}
})
// ███╗ ███╗██╗ ██╗████████╗ █████╗ ████████╗██╗ ██████╗ ███╗ ██╗
// ████╗ ████║██║ ██║╚══██╔══╝██╔══██╗╚══██╔══╝██║██╔═══██╗████╗ ██║
// ██╔████╔██║██║ ██║ ██║ ███████║ ██║ ██║██║ ██║██╔██╗ ██║
// ██║╚██╔╝██║██║ ██║ ██║ ██╔══██║ ██║ ██║██║ ██║██║╚██╗██║
// ██║ ╚═╝ ██║╚██████╔╝ ██║ ██║ ██║ ██║ ██║╚██████╔╝██║ ╚████║
// ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝
// createUser updateUser updateManyUsers upsertUser deleteUser deleteManyUsers
plop.setGenerator('mutation', {
description: 'Generate nexus-prisma mutation binding for a model',
prompts: [{
type: 'list',
name: 'type',
message: 'Select prisma model to generate binding for',
choices: types.map(type => type.name)
}, {
type: 'checkbox',
name: 'fields',
message: 'Select mutations to include in GraphQL scheme',
choices: ({ type }) => [
`create${type}`,
`update${type}`,
`updateMany${pluralize(type)}`,
`upsert${type}`,
`delete${type}`,
`deleteMany${pluralize(type)}`
].map(c => ({
name: c,
value: c,
checked: true
}))
}],
actions: data => {
return [{
type: 'add',
path: path.join(PROJECT_ROOT, 'src/resolvers/{{type}}/{{type}}.mutations.js'),
templateFile: 'templates/mutations.hbs'
}]
}
})
// ██╗███╗ ██╗██████╗ ██╗ ██╗████████╗ ████████╗██╗ ██╗██████╗ ███████╗
// ██║████╗ ██║██╔══██╗██║ ██║╚══██╔══╝ ╚══██╔══╝╚██╗ ██╔╝██╔══██╗██╔════╝
// ██║██╔██╗ ██║██████╔╝██║ ██║ ██║ ██║ ╚████╔╝ ██████╔╝█████╗
// ██║██║╚██╗██║██╔═══╝ ██║ ██║ ██║ ██║ ╚██╔╝ ██╔═══╝ ██╔══╝
// ██║██║ ╚████║██║ ╚██████╔╝ ██║ ██║ ██║ ██║ ███████╗
// ╚═╝╚═╝ ╚═══╝╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝
plop.setGenerator('create input types', {
description: 'Generate nexus-prisma create input bindings for a model',
prompts: [{
type: 'list',
name: 'type',
message: 'Select prisma model to generate binding for',
choices: types.map(type => type.name)
}, {
type: 'checkbox',
name: 'fields',
message: 'Select input fields to include in GraphQL scheme',
choices: ({ type }) => selectType(type).fields
.filter(f => !f.isReadOnly || f.isId)
.map(f => ({ name: f.name, checked: true }))
}],
actions: data => {
return [{
type: 'add',
path: path.join(PROJECT_ROOT, 'src/resolvers/{{type}}/{{type}}.createInput.js'),
templateFile: 'templates/createInput.hbs'
}]
}
})
plop.setGenerator('update input types', {
description: 'Generate nexus-prisma update input bindings for a model',
prompts: [{
type: 'list',
name: 'type',
message: 'Select prisma model to generate binding for',
choices: types.map(type => type.name)
}, {
type: 'checkbox',
name: 'fields',
message: 'Select input fields to include in GraphQL scheme',
choices: ({ type }) => selectType(type).fields
.filter(f => !f.isReadOnly)
.map(f => ({ name: f.name, checked: true }))
}],
actions: data => {
return [{
type: 'add',
path: path.join(PROJECT_ROOT, 'src/resolvers/{{type}}/{{type}}.updateInput.js'),
templateFile: 'templates/updateInput.hbs'
}]
}
})
// ███████╗██╗ ██╗██████╗ ███████╗ ██████╗██████╗ ██╗██████╗ ████████╗██╗ ██████╗ ███╗ ██╗
// ██╔════╝██║ ██║██╔══██╗██╔════╝██╔════╝██╔══██╗██║██╔══██╗╚══██╔══╝██║██╔═══██╗████╗ ██║
// ███████╗██║ ██║██████╔╝███████╗██║ ██████╔╝██║██████╔╝ ██║ ██║██║ ██║██╔██╗ ██║
// ╚════██║██║ ██║██╔══██╗╚════██║██║ ██╔══██╗██║██╔═══╝ ██║ ██║██║ ██║██║╚██╗██║
// ███████║╚██████╔╝██████╔╝███████║╚██████╗██║ ██║██║██║ ██║ ██║╚██████╔╝██║ ╚████║
// ╚══════╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝
plop.setGenerator('create subscription', {
description: 'Generate nexus-prisma subscription bindings for a model',
prompts: [{
type: 'list',
name: 'type',
message: 'Select prisma model to generate binding for',
choices: types.map(type => type.name)
}],
actions: data => {
data.camelCaseType = camelcase(data.type)
return [{
type: 'add',
path: path.join(PROJECT_ROOT, 'src/resolvers/{{type}}/{{type}}.subscription.js'),
templateFile: 'templates/subscription.hbs'
}]
}
})
}