-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathmgnl.ts
308 lines (304 loc) · 9.49 KB
/
mgnl.ts
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
import { createNpmSearchHandler, npmSearchGenerator } from "./npm";
const pathOption = (description: string): Fig.Option => ({
name: ["-p", "--path"],
description,
args: {
name: "path",
template: "folders",
},
});
const prototypeOption = (description: string): Fig.Option => ({
name: ["-P", "--prototype"],
description,
args: {
name: "prototype",
},
});
const lightModuleGenerator: Fig.Generator = {
...npmSearchGenerator,
custom: createNpmSearchHandler(["magnolia-light-module"]),
};
const completionSpec: Fig.Spec = {
name: "mgnl",
description:
"Magnolia CLI is a command line interface (CLI) tool to set up and facilitate light development with Magnolia",
icon: "https://avatars.githubusercontent.com/u/25686615?s=200&v=4",
subcommands: [
{
name: "add-availability",
description: "This command makes a component available to a page",
args: [
{
name: "<[module-id:]path-to-component>",
description: "The component you want to make available",
},
{
name: "<path-to-page[@area]>",
description: "The page you want to make the component available to",
},
],
options: [
pathOption(
"The path to the light module that contains the page template"
),
{
name: "-g",
description:
"Add this parameter to autogenerate the component instead of providing plain availability",
},
],
},
{
name: "create-app",
description: "This command creates a content type and an app",
args: {
name: "name",
description: "The name of the new app. The name cannot contain spaces",
},
options: [
pathOption(
"The path to the light module where you want to create the app"
),
prototypeOption("The name of the prototype variant to create the app"),
],
},
{
name: "create-block",
description: "This command creates a block",
args: {
name: "blockName",
description:
"The name of the new block definition. The block name cannot contain spaces",
},
options: [
pathOption("The path to the light module to add the new block to"),
prototypeOption(
"The name of the prototype variant to create the block"
),
],
},
{
name: "create-component",
description: "This command creates a new component template",
args: {
name: "name",
description:
"The name of the new component template. The name cannot contain spaces",
},
options: [
pathOption(
"The path to the light module you want to add the component template to"
),
{
name: ["-a", "--available"],
description: "The page you want to make the component available to",
args: {
name: "<path-to-page[@area]>",
},
},
{
name: ["-g", "--autogenerate"],
description:
"Add this parameter to autogenerate the component instead of providing plain availability",
args: {
name: "<path-to-page[@area]>",
},
},
prototypeOption(
"The name of the prototype variant to create the component"
),
],
},
{
name: "create-content-type",
description: "This command creates a content type",
args: {
name: "name",
description:
"The name of the new content type. The name cannot contain spaces",
},
options: [
{
name: "-a",
description:
"Creates also a new app that references the content type. With the -a option, the command is functionally equivalent to the create-app command",
},
pathOption(
"The path to the light module where you want to create the content type"
),
prototypeOption(
"The name of the prototype variant to create the content type"
),
],
},
{
name: "create-light-module",
description:
"This command creates a new light module in the form of a set of empty light module folders",
args: {
name: "moduleName",
description:
"The name of the new light module. Avoid spaces and special characters since this name is used as folder name",
},
options: [
pathOption("The path of the parent directory for the new light module"),
prototypeOption(
"The name of the prototype variant to create the light module"
),
],
},
{
name: "create-page",
description: "This command creates a new page template",
args: {
name: "templateName",
description:
"The name of the new page template. The template name cannot contain spaces",
},
options: [
pathOption("The path to the light module to add the new template to"),
prototypeOption("The name of the prototype variant to create the page"),
],
},
{
name: "create-virtual-uri",
description:
"The command creates a virtual URI mapping configuration file (a YAML definition file) in the light module",
args: {
name: "virtualUriName",
description: "The name of the new URI configuration",
},
options: [
pathOption("The path to the light module"),
{
name: ["-f", "--formUri"],
description:
"The pattern to be matched in the requested URI. Enclose the <uri> value in quotes",
args: {
name: "uri",
},
},
{
name: ["-t", "--toUri"],
description:
"A concrete URI that the request is mapped to. Enclose the <prefix:uri> value in quotes",
args: {
name: "<prefix:uri>",
},
},
prototypeOption(
"The name of the prototype variant to create the mapping"
),
],
},
{
name: "customize-local-config",
description: "Run this command to create a local configuration",
options: [
pathOption(
"The path into which the mgnl-cli-prototypes folder and mgnl-cli.json file are installed"
),
],
},
{
name: "install",
description:
"Downloads and installs one or more light modules from npm to the light module directory",
args: {
name: "light-module-name",
description:
"At least one name of a light module to be downloaded from npm. If you are installing more than one module from the repository, separate the module names with a space",
isVariadic: true,
debounce: true,
generators: lightModuleGenerator,
},
options: [pathOption("The path to the light-modules folder")],
},
{
name: "jumpstart",
description:
"This command downloads, unpacks and pre-configures a Magnolia Tomcat server together with a specific webapp",
options: [
pathOption(
"The path to the light modules root folder which is observed for changes"
),
{
name: ["-m", "--magnolia-version"],
description:
"Use to choose a specific version of the Magnolia webapp. If not provided, the latest stable version of the specified webapp is downloaded",
args: {
name: "version",
},
},
{
name: ["-i", "--install-sample-module"],
description:
"If provided, a sample light module under the light modules root folder with the given name is created",
args: {
name: "name",
},
},
{
name: ["-s", "--snapshot"],
description:
"Downloads the latest snapshot development version of the specified webapp",
},
{
name: ["-w", "--webapp"],
description:
"Use to directly specify which Magnolia webapp you want to install",
args: {
name: "webapp",
suggestions: [
{ name: "magnolia-empty-webapp" },
{ name: "magnolia-community-webapp" },
{ name: "magnolia-community-demo-webapp" },
{ name: "magnolia-dx-core-webapp" },
{ name: "magnolia-dx-core-demo-webapp" },
],
},
},
],
},
{
name: "tab-completion",
description:
"Run the command to install or uninstall autocompletion for Magnolia CLI commands",
args: {
name: "command",
suggestions: [{ name: "install" }, { name: "uninstall" }],
},
},
{
name: "search",
description: "Searches for Magnolia-related packages available from npm",
args: {
name: "query",
generators: lightModuleGenerator,
description:
"The search query sent to the npm's API. The query can contain multiple terms separated with commas and no spaces",
},
},
{
name: "start",
description:
"This command starts up Magnolia and displays the main log file",
options: [
pathOption("The path to the apache-tomcat folder"),
{
name: "-d",
description:
"Does NOT ignore the open files limit check. The files limit check is ignored by default",
},
],
},
],
options: [
{
name: ["--help", "-h"],
description: "Show help for mgnl",
isPersistent: true,
},
],
};
export default completionSpec;