forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode-helper.ts
More file actions
26 lines (24 loc) · 788 Bytes
/
node-helper.ts
File metadata and controls
26 lines (24 loc) · 788 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
// 仅使用类型
import { Node } from '@alilc/lowcode-designer';
export const getClosestNode = (node: Node, until: (node: Node) => boolean): Node | undefined => {
if (!node) {
return undefined;
}
if (until(node)) {
return node;
} else {
// @ts-ignore
return getClosestNode(node.getParent(), until);
}
};
/**
* 判断节点是否可被点击
* @param {Node} node 节点
* @param {unknown} e 点击事件
* @returns {boolean} 是否可点击,true表示可点击
*/
export const canClickNode = (node: Node, e: unknown): boolean => {
const onClickHook = node.componentMeta?.getMetadata().configure?.advanced?.callbacks?.onClickHook;
const canClick = typeof onClickHook === 'function' ? onClickHook(e as MouseEvent, node) : true;
return canClick;
};