-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
98 lines (85 loc) · 1.95 KB
/
index.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
export type TimeTravel<T> = {
get: () => T;
add: (newValue: T) => void;
undo: () => void;
redo: () => void;
};
type History<T> = {
past: T[];
present: T;
future: T[];
};
export function timeTravel<T>(
initialValue: T | T[],
{ limit = 10 }: { limit?: number }
): TimeTravel<T> {
const isArrayState = isArray(initialValue);
const history: History<T> = {
past: isArrayState ? initialValue.slice(0, initialValue.length - 1) : [],
present: isArrayState
? initialValue[initialValue.length - 1]
: initialValue,
future: [],
};
/**
*
* @returns the current value
*/
function get(): T {
return history.present;
}
/**
* Add a new value to the history
* @param newValue
* @returns void
* @example
* add(1)
* add([1, 2, 3])
*/
function add(newValue: T | T[]): void {
const currentVal = history.present;
if (history.past.length >= limit) {
history.past.shift();
}
const isArrayState = isArray(newValue);
const pastValue = isArrayState
? newValue.slice(0, newValue.length - 1)
: [];
history.past.push(...[currentVal, ...pastValue]);
const finalValue = isArrayState ? newValue[newValue.length - 1] : newValue;
history.present = finalValue;
}
/**
* Undo the last change
* @returns void
*/
function undo(): void {
if (!history.past.length) return;
if (history.future.length >= limit) {
history.future.shift();
}
history.future.push(history.present);
history.present = history.past.pop();
}
/**
* Redo the last change
* @returns void
*/
function redo(): void {
if (!history.future.length) return;
if (history.past.length >= limit) {
history.past.shift();
}
history.past.push(history.present);
history.present = history.future.pop();
}
function isArray(value: T | T[]): value is T[] {
return Array.isArray(value);
}
return {
get,
add,
undo,
redo,
};
}