forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetecting.ts
More file actions
38 lines (33 loc) · 895 Bytes
/
detecting.ts
File metadata and controls
38 lines (33 loc) · 895 Bytes
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
import {
Detecting as InnerDetecting,
DocumentModel as InnerDocumentModel,
} from '@alilc/lowcode-designer';
import { documentSymbol, detectingSymbol } from './symbols';
export default class Detecting {
private readonly [documentSymbol]: InnerDocumentModel;
private readonly [detectingSymbol]: InnerDetecting;
constructor(document: InnerDocumentModel) {
this[documentSymbol] = document;
this[detectingSymbol] = document.designer.detecting;
}
/**
* hover 指定节点
* @param id 节点 id
*/
capture(id: string) {
this[detectingSymbol].capture(this[documentSymbol].getNode(id));
}
/**
* hover 离开指定节点
* @param id 节点 id
*/
release(id: string) {
this[detectingSymbol].release(this[documentSymbol].getNode(id));
}
/**
* 清空 hover 态
*/
leave() {
this[detectingSymbol].leave(this[documentSymbol]);
}
}