forked from listr2/listr2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subtasks.example.ts
160 lines (141 loc) · 3.99 KB
/
subtasks.example.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
import delay from 'delay'
/* eslint-disable @typescript-eslint/no-empty-function */
import { Listr } from '@root/index'
import { Logger } from '@utils/logger'
interface Ctx {
skip: boolean
}
const logger = new Logger({ useIcons: false })
async function main (): Promise<void> {
let task: Listr<Ctx>
logger.start('Example for subtasks.')
task = new Listr<Ctx>([
{
title: 'This task will execute.',
task: (ctx, task): Listr => task.newListr([
{
title: 'This is a subtask.',
task: async (): Promise<void> => {
await delay(3000)
}
}
])
}
], { concurrent: false })
try {
const context = await task.run()
logger.success(`Context: ${JSON.stringify(context)}`)
} catch(e) {
logger.fail(e)
}
logger.start('Example for subtasks with different renderer options.')
task = new Listr<Ctx>([
{
title: 'This task will execute.',
task: (ctx, task): Listr => task.newListr([
{
title: 'This is a subtask.',
task: async (): Promise<void> => {
await delay(3000)
}
},
{
title: 'This is an another subtask.',
task: async (): Promise<void> => {
await delay(2000)
}
}
], { concurrent: true })
},
{
title: 'This task will execute.',
task: (ctx, task): Listr => task.newListr([
{
title: 'This is a subtask.',
task: async (): Promise<void> => {
await delay(3000)
}
},
{
title: 'This is an another subtask.',
task: async (): Promise<void> => {
await delay(2000)
}
}
], { concurrent: true, rendererOptions: { collapse: false } })
}
], { concurrent: false })
try {
const context = await task.run()
logger.success(`Context: ${JSON.stringify(context)}`)
} catch(e) {
logger.fail(e)
}
logger.start('Example for subtasks with different disabled rendering from parent.')
task = new Listr<Ctx>([
{
title: 'This task will execute but will not render subtasks.',
task: (ctx, task): Listr => task.newListr([
{
title: 'This is a subtask.',
task: async (): Promise<void> => {
await delay(3000)
}
},
{
title: 'This is an another subtask.',
task: async (): Promise<void> => {
await delay(2000)
}
}
], { concurrent: true })
}
], { concurrent: false, rendererOptions: { showSubtasks: false } })
try {
const context = await task.run()
logger.success(`Context: ${JSON.stringify(context)}`)
} catch(e) {
logger.fail(e)
}
logger.start('Example for subtasks that change exit on error.')
task = new Listr<Ctx>([
{
title: 'This task will execute and not quit on errors.',
task: (ctx, task): Listr => task.newListr([
{
title: 'This is a subtask.',
task: async (): Promise<void> => {
throw new Error('I have failed [0]')
}
},
{
title: 'This is an another subtask.',
task: async (): Promise<void> => {
throw new Error('I have failed [1]')
}
},
{
title: 'This is yet an another subtask.',
task: async (ctx, task): Promise<void> => {
task.title = 'I have succeeded.'
}
}
], { exitOnError: false })
},
{
title: 'This task will execute.',
task: (): void => {
throw new Error('I will exit on error since I am a direct child of parent task.')
}
}
], { concurrent: false, exitOnError: true })
try {
const context = await task.run()
logger.success(`Context: ${JSON.stringify(context)}`)
} catch(e) {
logger.fail(e)
}
logger.data('You can also access all the errors spew out by the tasks by `task.err` which will return an array of errors.')
logger.fail(task.err.toString())
}
main()