mirror of
https://gitee.com/hoslay/ddei-editor.git
synced 2025-12-07 01:28:28 +08:00
80 lines
2.0 KiB
TypeScript
80 lines
2.0 KiB
TypeScript
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;
|