mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-14 04:43:14 +00:00
38 lines
895 B
TypeScript
38 lines
895 B
TypeScript
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]);
|
|
}
|
|
} |