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
| import { gotoState, redo, undo } from '../../actions';
import stateHistory from '../../statehistory';
import store from '../../store';
export default class History {
private leftArrow: string;
private rightArrow: string;
private stateHistory: any;
private topic: string;
private unsubscribe: any;
private value: number;
private maximum: number;
constructor() {
this.leftArrow = '←';
this.rightArrow = '→';
this.stateHistory = stateHistory;
this.unsubscribe = store.subscribe(() => {
this.topic = store.getState().topic;
this.maximum = this.max();
this.value = this.val();
});
}
setState(stateIndex) {
store.dispatch(gotoState(stateIndex));
}
previousState() {
store.dispatch(undo());
}
nextState() {
store.dispatch(redo());
}
val() {
return this.stateHistory.past ? this.stateHistory.past.length : 0;
}
max() {
return (this.stateHistory.past ? this.stateHistory.past.length : 0) +
(this.stateHistory.present ? 1 : 0) +
(this.stateHistory.future ? this.stateHistory.future.length : 0) - 1;
}
ngOnDestroy() {
this.unsubscribe();
}
}
|