-
Notifications
You must be signed in to change notification settings - Fork 2
/
Wizard.ts
81 lines (70 loc) · 2.24 KB
/
Wizard.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
import CancellationToken from 'cancellationtoken';
import Log from './Log';
import { AstrometryWizard } from './shared/BackOfficeStatus';
import Astrometry from "./Astrometry";
const logger = Log.logger(__filename);
export default abstract class Wizard {
readonly astrometry: Astrometry;
cancelator: null | ((reason?:any)=>(void)) = null;
wizardStatus: AstrometryWizard;
private onNext: Array<()=>(void)> = [];
private onDiscard: Array<()=>(void)> = [];
constructor(astrometry: Astrometry) {
this.astrometry = astrometry;
this.wizardStatus = this.astrometry.currentStatus.runningWizard!;
}
abstract start: ()=>(Promise<void>);
public interrupt() {
if (this.cancelator !== null) {
this.cancelator();
}
}
public discard=()=> {
const todo = this.onDiscard;
this.onNext = [];
this.onDiscard = [];
for(const t of todo) {
try {
t();
} catch(e) {
logger.error("Discard failed", e);
}
}
}
public next() {
const todo = this.onNext;
this.onNext = [];
this.onDiscard = [];
for(const t of todo) {
try {
t();
} catch(e) {
logger.error("Next failed", e);
}
}
}
// If the user request abort, interruptor will get called
protected setInterruptor(interruptor:null | ((reason?:any)=>(void))) {
this.cancelator = interruptor;
if (interruptor !== null) {
this.wizardStatus.paused = false;
}
this.wizardStatus.interruptible = interruptor !== null;
}
// When paused, the wizard can get discarded
protected setPaused(paused: boolean) {
this.setInterruptor(null);
this.wizardStatus.paused = paused;
}
async waitNext(nextTitle:string = "next") {
this.setPaused(true);
this.wizardStatus.hasNext = nextTitle;
await new Promise((resolve, reject)=> {
this.onNext.push(resolve);
this.onDiscard.push(()=> {
reject(new CancellationToken.CancellationError("User abort"));
});
});
this.wizardStatus.hasNext = null;
}
};