forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhistory.ts
More file actions
73 lines (63 loc) · 1.37 KB
/
history.ts
File metadata and controls
73 lines (63 loc) · 1.37 KB
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
import { History as InnerHistory, DocumentModel as InnerDocumentModel } from '@alilc/lowcode-designer';
import { historySymbol } from './symbols';
export default class History {
private readonly [historySymbol]: InnerHistory;
constructor(history: InnerHistory) {
this[historySymbol] = history;
}
/**
* 历史记录跳转到指定位置
* @param cursor
*/
go(cursor: number) {
this[historySymbol].go(cursor);
}
/**
* 历史记录后退
*/
back() {
this[historySymbol].back();
}
/**
* 历史记录前进
*/
forward() {
this[historySymbol].forward();
}
/**
* 保存当前状态
*/
savePoint() {
this[historySymbol].savePoint();
}
/**
* 当前是否是「保存点」,即是否有状态变更但未保存
* @returns
*/
isSavePoint() {
return this[historySymbol].isSavePoint();
}
/**
* 获取 state,判断当前是否为「可回退」、「可前进」的状态
* @returns
*/
getState() {
return this[historySymbol].getState();
}
/**
* 监听 state 变更事件
* @param func
* @returns
*/
onChangeState(func: () => any) {
return this[historySymbol].onStateChange(func);
}
/**
* 监听历史记录游标位置变更事件
* @param func
* @returns
*/
onChangeCursor(func: () => any) {
return this[historySymbol].onCursor(func);
}
}