ddei-editor/plugins/core/menus/menu-enable-autoobi.ts

80 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {DDeiEnumBusCommandType} from "ddei-framework";
import {DDeiMenuBase} from "ddei-framework";
/**
* 取消/开启 自动避障
*/
class MenuEnableAutoObi extends DDeiMenuBase {
name: string = "ddei-core-menu-enable-auto-obi"
/**
* 缺省实例
*/
static defaultIns: MenuEnableAutoObi = new MenuEnableAutoObi();
defaultOptions: object = {
'label': 'ddei.enableAutoObi',
'disabled': false
}
static configuration(options, fullConfig: boolean = false) {
//解析options只使用自己相关的
if (options) {
let newOptions = {}
if (fullConfig) {
if (fullConfig) {
if (options[MenuEnableAutoObi.defaultIns.name]) {
for (let i in options[MenuEnableAutoObi.defaultIns.name]) {
newOptions[i] = options[MenuEnableAutoObi.defaultIns.name][i]
}
}
}
} else {
newOptions = options
}
if (newOptions && Object.keys(newOptions).length !== 0) {
let panels = new MenuEnableAutoObi(newOptions);
return panels;
}
}
return MenuEnableAutoObi;
}
static modify(fn) {
return MenuEnableAutoObi.defaultIns.modify(fn)
}
/**
* 执行的方法
*/
action(model: object, evt: Event): void {
if (model?.baseModelType == 'DDeiLine') {
model.autoObiPolicy = 2
let ddInstance = model.stage.ddInstance
model.refreshLinePoints()
ddInstance.bus.push(DDeiEnumBusCommandType.RefreshShape);
ddInstance.bus.executeAll();
}
}
/**
* 判定是否显示的方法
*/
isVisiable(model: object): boolean {
//当前控件为表格控件TODO 或者布局方式为表格的容器控件
if (!this.disabled && model?.baseModelType == 'DDeiLine' && ((model.stage.ddInstance.GLOBAL_AUTO_OBI && model.autoObiPolicy == 1) || (!model.stage.ddInstance.GLOBAL_AUTO_OBI && !model.autoObiPolicy))) {
return true
}
return false;
}
}
export default MenuEnableAutoObi;