-
Notifications
You must be signed in to change notification settings - Fork 43
/
prompts.ts
230 lines (217 loc) · 6.58 KB
/
prompts.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
import type { VersionCreateOptions } from 'cmds/versions/create';
import type { VersionUpdateOptions } from 'cmds/versions/update';
import type { Response } from 'node-fetch';
import type { Choice, PromptObject } from 'prompts';
import parse from 'parse-link-header';
import semver from 'semver';
import promptTerminal from './promptWrapper';
type SpecList = {
_id: string;
title: string;
}[];
type VersionList = {
version: string;
}[];
type ParsedDocs = {
next?: {
page: number;
url: string;
};
prev?: {
page: number;
url: string;
};
};
export function generatePrompts(versionList: VersionList, selectOnly = false): PromptObject[] {
return [
{
type: selectOnly ? null : 'select',
name: 'option',
message: 'Would you like to use an existing project version or create a new one?',
choices: [
{ title: 'Use existing', value: 'update' },
{ title: 'Create a new version', value: 'create' },
],
},
{
type: (prev, values) => {
return (selectOnly ? false : values.option !== 'update') ? null : 'select';
},
name: 'versionSelection',
message: 'Select your desired version',
choices: versionList.map(v => {
return {
title: v.version,
value: v.version,
};
}),
},
{
type: (prev, values) => {
return (selectOnly ? true : values.option === 'update') ? null : 'text';
},
name: 'newVersion',
message: "What's your new version?",
hint: '1.0.0',
},
];
}
function specOptions(specList: SpecList, parsedDocs: ParsedDocs, currPage: number, totalPages: number): Choice[] {
const specs = specList.map(s => {
return {
description: `API Definition ID: ${s._id}`, // eslint-disable-line no-underscore-dangle
title: s.title,
value: s._id, // eslint-disable-line no-underscore-dangle
};
});
if (parsedDocs?.prev?.page) {
specs.push({
description: 'Go to the previous page',
title: `< Prev (page ${currPage - 1} of ${totalPages})`,
value: 'prev',
});
}
if (parsedDocs?.next?.page) {
specs.push({
description: 'Go to the next page',
title: `Next (page ${currPage + 1} of ${totalPages}) >`,
value: 'next',
});
}
return specs;
}
const updateOasPrompt = (
specList: SpecList,
parsedDocs: ParsedDocs,
currPage: number,
totalPages: number,
getSpecs: (url: string) => Promise<Response>
): PromptObject[] => [
{
type: 'select',
name: 'specId',
message: 'Select your desired file to update',
choices: specOptions(specList, parsedDocs, currPage, totalPages),
async format(spec: string) {
if (spec === 'prev') {
try {
const newSpecs = await getSpecs(`${parsedDocs.prev.url}`);
const newParsedDocs = parse(newSpecs.headers.get('link'));
const newSpecList = await newSpecs.json();
// @todo: figure out how to add a stricter type here, see:
// https://github.com/readmeio/rdme/pull/570#discussion_r949715913
const { specId } = await promptTerminal(
updateOasPrompt(newSpecList, newParsedDocs, currPage - 1, totalPages, getSpecs)
);
return specId;
} catch (e) {
return null;
}
} else if (spec === 'next') {
try {
const newSpecs = await getSpecs(`${parsedDocs.next.url}`);
const newParsedDocs = parse(newSpecs.headers.get('link'));
const newSpecList = await newSpecs.json();
// @todo: figure out how to add a stricter type here, see:
// https://github.com/readmeio/rdme/pull/570#discussion_r949715913
const { specId } = await promptTerminal(
updateOasPrompt(newSpecList, newParsedDocs, currPage + 1, totalPages, getSpecs)
);
return specId;
} catch (e) {
return null;
}
}
return spec;
},
},
];
export function createOasPrompt(
specList: SpecList,
parsedDocs: ParsedDocs,
totalPages: number,
getSpecs: ((url: string) => Promise<Response>) | null
): PromptObject[] {
return [
{
type: 'select',
name: 'option',
message: 'Would you like to update an existing OAS file or create a new one?',
choices: [
{ title: 'Update existing', value: 'update' },
{ title: 'Create a new spec', value: 'create' },
],
async format(picked: 'update' | 'create') {
if (picked === 'update') {
// @todo: figure out how to add a stricter type here, see:
// https://github.com/readmeio/rdme/pull/570#discussion_r949715913
const { specId } = await promptTerminal(updateOasPrompt(specList, parsedDocs, 1, totalPages, getSpecs));
return specId;
}
return picked;
},
},
];
}
export function createVersionPrompt(
versionList: VersionList,
opts: VersionCreateOptions & VersionUpdateOptions,
isUpdate?: {
is_stable: boolean;
}
): PromptObject[] {
return [
{
type: opts.fork || isUpdate ? null : 'select',
name: 'from',
message: 'Which version would you like to fork from?',
choices: versionList.map(v => {
return {
title: v.version,
value: v.version,
};
}),
},
{
type: opts.newVersion || !isUpdate ? null : 'text',
name: 'newVersion',
message: 'What should the version be renamed to?',
initial: opts.newVersion || false,
hint: '1.0.0',
validate(val: string) {
return semver.valid(semver.coerce(val)) ? true : 'Please specify a semantic version.';
},
},
{
type: opts.main || isUpdate?.is_stable ? null : 'confirm',
name: 'is_stable',
message: 'Would you like to make this version the main version for this project?',
},
{
type: opts.beta ? null : 'confirm',
name: 'is_beta',
message: 'Should this version be in beta?',
},
{
type: (prev, values) => {
return opts.isPublic || opts.main || values.is_stable ? null : 'confirm';
},
name: 'is_hidden',
message: 'Would you like to make this version public?',
},
{
type: (prev, values) => {
return opts.deprecated || opts.main || !isUpdate || values.is_stable ? null : 'confirm';
},
name: 'is_deprecated',
message: 'Would you like to deprecate this version?',
},
];
}
export function deleteDocsPrompt(version: string): PromptObject {
return {
type: 'confirm',
name: 'deleteAll',
message: `This action will delete all docs under version ${version} from ReadMe, would you like to continue?`,
};
}