-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcancel.ts
112 lines (91 loc) · 2.85 KB
/
cancel.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
import { Flags, ux } from '@oclif/core'
import prompts from 'prompts'
import logSymbols from 'log-symbols'
import * as api from '../../rest/api'
import { AuthCommand } from '../authCommand'
import commonMessages from '../../messages/common-messages'
import { splitConfigFilePath } from '../../services/util'
import { loadChecklyConfig } from '../../services/checkly-config-loader'
import { ImportPlan } from '../../rest/projects'
export default class ImportCancelCommand extends AuthCommand {
static hidden = false
static description = 'Cancels an ongoing import plan that has not been committed yet.'
static flags = {
config: Flags.string({
char: 'c',
description: commonMessages.configFile,
}),
}
async run (): Promise<void> {
const { flags } = await this.parse(ImportCancelCommand)
const {
config: configFilename,
} = flags
const { configDirectory, configFilenames } = splitConfigFilePath(configFilename)
const {
config: checklyConfig,
} = await loadChecklyConfig(configDirectory, configFilenames)
const {
logicalId,
} = checklyConfig
const { data: cancelablePlans } = await api.projects.findImportPlans(logicalId, {
onlyUncommitted: true,
})
const plans = await this.#selectPlans(cancelablePlans)
if (this.fancy) {
ux.action.start('Canceling selected plan(s)')
}
try {
for (const plan of plans) {
await api.projects.cancelImportPlan(plan.id)
this.log(`${logSymbols.success} Canceled plan ${plan.id}`)
}
if (this.fancy) {
ux.action.stop('✅ ')
}
} catch (err) {
if (this.fancy) {
ux.action.stop('❌')
}
throw err
}
}
async #selectPlans (plans: ImportPlan[]): Promise<ImportPlan[]> {
const choices: prompts.Choice[] = plans.map(plan => ({
title: `Plan #1 from ${new Date(plan.createdAt)}`,
value: plan.id,
description: `ID: ${plan.id}`,
}))
choices.unshift({
title: 'Exit without canceling',
value: 'exit',
description: 'No changes will be made.',
})
if (plans.length > 0) {
choices.push({
title: 'Cancel all plans',
value: 'all',
description: 'All uncommitted plans will be canceled.',
})
}
const plansById = plans.reduce((m, plan) => m.set(plan.id, plan), new Map<string, ImportPlan>())
const { planId } = await prompts({
name: 'planId',
type: 'select',
message: `Found ${plans.length} cancelable plan(s). Which one to cancel?`,
choices,
})
if (planId === 'exit') {
this.log('Exiting without making any changes.')
this.exit(0)
}
if (planId === 'all') {
return plans
}
const plan = plansById.get(planId)
if (plan === undefined) {
throw new Error('Bug: plan ID missing from plan map')
}
return [plan]
}
}