forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~DAILER/fineui:es6 to es6 * commit '13582d01da4d51209121845c6bd73e9d3a441d93': update updatees6
Dailer-刘荣歆
2 years ago
33 changed files with 1108 additions and 2027 deletions
@ -1,92 +0,0 @@ |
|||||||
import { NodeButton } from "../../../base/single/button/button.node"; |
|
||||||
import { shortcut, extend, createWidget, Controller } from "../../../core"; |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 加号表示的组节点 |
|
||||||
* Created by GUY on 2015/9/6. |
|
||||||
* @class FirstPlusGroupNode |
|
||||||
* @extends NodeButton |
|
||||||
*/ |
|
||||||
@shortcut() |
|
||||||
export class FirstPlusGroupNode extends NodeButton { |
|
||||||
static xtype = "bi.first_plus_group_node"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
const conf = super._defaultConfig(...arguments); |
|
||||||
|
|
||||||
return extend(conf, { |
|
||||||
baseCls: `${conf.baseCls || ""} bi-first-plus-group-node bi-list-item`, |
|
||||||
logic: { |
|
||||||
dynamic: false, |
|
||||||
}, |
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
open: false, |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init.apply(this, arguments); |
|
||||||
const o = this.options; |
|
||||||
this.checkbox = createWidget({ |
|
||||||
type: "bi.first_tree_node_checkbox", |
|
||||||
stopPropagation: true, |
|
||||||
iconHeight: o.height, |
|
||||||
iconWidth: o.height, |
|
||||||
}); |
|
||||||
this.text = createWidget({ |
|
||||||
type: "bi.label", |
|
||||||
textAlign: "left", |
|
||||||
whiteSpace: "nowrap", |
|
||||||
textHeight: o.height, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
}); |
|
||||||
this.checkbox.on(Controller.EVENT_CHANGE, function (type) { |
|
||||||
if (type === BI.Events.CLICK) { |
|
||||||
if (this.isSelected()) { |
|
||||||
self.triggerExpand(); |
|
||||||
} else { |
|
||||||
self.triggerCollapse(); |
|
||||||
} |
|
||||||
} |
|
||||||
}); |
|
||||||
const type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); |
|
||||||
const items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, { |
|
||||||
width: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT, |
|
||||||
el: this.checkbox, |
|
||||||
}, this.text); |
|
||||||
BI.createWidget(BI.extend({ |
|
||||||
element: this, |
|
||||||
}, BI.LogicFactory.createLogic(type, BI.extend(o.logic, { |
|
||||||
items, |
|
||||||
})))); |
|
||||||
} |
|
||||||
|
|
||||||
doRedMark() { |
|
||||||
this.text.doRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unRedMark() { |
|
||||||
this.text.unRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.checkbox.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setOpened(v) { |
|
||||||
super.setOpened(...arguments); |
|
||||||
if (BI.isNotNull(this.checkbox)) { |
|
||||||
this.checkbox.setSelected(v); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
@ -1,89 +0,0 @@ |
|||||||
import { NodeButton } from "../../../base/single/button/button.node"; |
|
||||||
import { shortcut, extend, createWidget, isNotNull, Controller } from "../../../core"; |
|
||||||
|
|
||||||
/** |
|
||||||
* 加号表示的组节点 |
|
||||||
* Created by GUY on 2015/9/6. |
|
||||||
* @class LastPlusGroupNode |
|
||||||
* @extends NodeButton |
|
||||||
*/ |
|
||||||
@shortcut() |
|
||||||
export class LastPlusGroupNode extends NodeButton { |
|
||||||
static xtype = "bi.last_plus_group_node"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
const conf = super._defaultConfig(...arguments); |
|
||||||
|
|
||||||
return extend(conf, { |
|
||||||
baseCls: `${conf.baseCls || ""} bi-last-plus-group-node bi-list-item`, |
|
||||||
logic: { |
|
||||||
dynamic: false, |
|
||||||
}, |
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
open: false, |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
_init() { |
|
||||||
BI.LastPlusGroupNode.superclass._init.apply(this, arguments); |
|
||||||
const o = this.options; |
|
||||||
this.checkbox = createWidget({ |
|
||||||
type: "bi.last_tree_node_checkbox", |
|
||||||
stopPropagation: true, |
|
||||||
iconHeight: o.height, |
|
||||||
iconWidth: o.height, |
|
||||||
}); |
|
||||||
this.text = createWidget({ |
|
||||||
type: "bi.label", |
|
||||||
textAlign: "left", |
|
||||||
whiteSpace: "nowrap", |
|
||||||
textHeight: o.height, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
}); |
|
||||||
this.checkbox.on(Controller.EVENT_CHANGE, type => { |
|
||||||
if (type === BI.Events.CLICK) { |
|
||||||
if (this.checkbox.isSelected()) { |
|
||||||
this.triggerExpand(); |
|
||||||
} else { |
|
||||||
this.triggerCollapse(); |
|
||||||
} |
|
||||||
} |
|
||||||
}); |
|
||||||
const type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); |
|
||||||
const items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, { |
|
||||||
width: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT, |
|
||||||
el: this.checkbox, |
|
||||||
}, this.text); |
|
||||||
createWidget(extend({ |
|
||||||
element: this, |
|
||||||
}, BI.LogicFactory.createLogic(type, extend(o.logic, { |
|
||||||
items, |
|
||||||
})))); |
|
||||||
} |
|
||||||
|
|
||||||
doRedMark() { |
|
||||||
this.text.doRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unRedMark() { |
|
||||||
this.text.unRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.checkbox.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setOpened(v) { |
|
||||||
super.setOpened(...arguments); |
|
||||||
if (isNotNull(this.checkbox)) { |
|
||||||
this.checkbox.setSelected(v); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -1,91 +0,0 @@ |
|||||||
import { NodeButton } from "../../../base/single/button/button.node"; |
|
||||||
import { shortcut, extend, createWidget, Controller } from "../../../core"; |
|
||||||
|
|
||||||
/** |
|
||||||
* 加号表示的组节点 |
|
||||||
* Created by GUY on 2015/9/6. |
|
||||||
* @class BI.MidPlusGroupNode |
|
||||||
* @extends BI.NodeButton |
|
||||||
*/ |
|
||||||
@shortcut |
|
||||||
export class MidPlusGroupNode extends NodeButton { |
|
||||||
static xtype = "bi.mid_plus_group_node"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
const conf = super._defaultConfig(...arguments); |
|
||||||
|
|
||||||
return extend(conf, { |
|
||||||
baseCls: `${conf.baseCls || ""} bi-mid-plus-group-node bi-list-item`, |
|
||||||
logic: { |
|
||||||
dynamic: false, |
|
||||||
}, |
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
open: false, |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init(...arguments); |
|
||||||
const o = this.options; |
|
||||||
this.checkbox = createWidget({ |
|
||||||
type: "bi.mid_tree_node_checkbox", |
|
||||||
stopPropagation: true, |
|
||||||
iconHeight: o.height, |
|
||||||
iconWidth: o.height, |
|
||||||
}); |
|
||||||
this.text = createWidget({ |
|
||||||
type: "bi.label", |
|
||||||
textAlign: "left", |
|
||||||
whiteSpace: "nowrap", |
|
||||||
textHeight: o.height, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
}); |
|
||||||
this.checkbox.on(Controller.EVENT_CHANGE, type => { |
|
||||||
if (type === BI.Events.CLICK) { |
|
||||||
if (this.checkbox.isSelected()) { |
|
||||||
this.triggerExpand(); |
|
||||||
} else { |
|
||||||
this.triggerCollapse(); |
|
||||||
} |
|
||||||
} |
|
||||||
}); |
|
||||||
const type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); |
|
||||||
const items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, { |
|
||||||
width: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT, |
|
||||||
el: this.checkbox, |
|
||||||
}, this.text); |
|
||||||
createWidget(extend({ |
|
||||||
element: this, |
|
||||||
}, BI.LogicFactory.createLogic(type, extend(o.logic, { |
|
||||||
items, |
|
||||||
})))); |
|
||||||
} |
|
||||||
|
|
||||||
doRedMark() { |
|
||||||
this.text.doRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unRedMark() { |
|
||||||
this.text.unRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.checkbox.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setOpened(v) { |
|
||||||
super.setOpened(...arguments); |
|
||||||
if (BI.isNotNull(this.checkbox)) { |
|
||||||
this.checkbox.setSelected(v); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
@ -0,0 +1,2 @@ |
|||||||
|
export { MultiLayerSelectTreeCombo } from "./multilayerselecttree.combo"; |
||||||
|
export { MultiLayerSelectLevelTree } from "./multilayerselecttree.leveltree"; |
@ -1,77 +1,85 @@ |
|||||||
/** |
import { |
||||||
* Created by GUY on 2016/1/26. |
shortcut, |
||||||
* |
Widget, |
||||||
* @class BI.MultiLayerSelectTreePopup |
extend, |
||||||
* @extends BI.Pane |
i18nText, |
||||||
*/ |
emptyFn, |
||||||
|
createWidget, |
||||||
|
Controller, |
||||||
|
VerticalLayout, |
||||||
|
isArray |
||||||
|
} from "@/core"; |
||||||
|
import { MultiLayerSelectLevelTree } from "./multilayerselecttree.leveltree"; |
||||||
|
|
||||||
BI.MultiLayerSelectTreePopup = BI.inherit(BI.Widget, { |
@shortcut() |
||||||
|
export class MultiLayerSelectTreePopup extends Widget { |
||||||
|
static xtype = "bi.multilayer_select_tree_popup"; |
||||||
|
|
||||||
_defaultConfig: function () { |
static EVENT_CHANGE = "EVENT_CHANGE"; |
||||||
return BI.extend(BI.MultiLayerSelectTreePopup.superclass._defaultConfig.apply(this, arguments), { |
|
||||||
|
_defaultConfig() { |
||||||
|
return extend(super._defaultConfig(...arguments), { |
||||||
baseCls: "bi-multilayer-select-tree-popup", |
baseCls: "bi-multilayer-select-tree-popup", |
||||||
tipText: BI.i18nText("BI-No_Selected_Item"), |
tipText: i18nText("BI-No_Selected_Item"), |
||||||
isDefaultInit: false, |
isDefaultInit: false, |
||||||
itemsCreator: BI.emptyFn, |
itemsCreator: emptyFn, |
||||||
items: [], |
items: [], |
||||||
value: "", |
value: "", |
||||||
onLoaded: BI.emptyFn, |
onLoaded: emptyFn, |
||||||
minHeight: 240 |
minHeight: 240, |
||||||
}); |
}); |
||||||
}, |
} |
||||||
|
|
||||||
_init: function () { |
_init() { |
||||||
BI.MultiLayerSelectTreePopup.superclass._init.apply(this, arguments); |
super._init(...arguments); |
||||||
|
|
||||||
var self = this, o = this.options; |
const self = this, |
||||||
|
o = this.options; |
||||||
|
|
||||||
this.tree = BI.createWidget({ |
this.tree = createWidget({ |
||||||
type: "bi.multilayer_select_level_tree", |
type: MultiLayerSelectLevelTree.xtype, |
||||||
isDefaultInit: o.isDefaultInit, |
isDefaultInit: o.isDefaultInit, |
||||||
items: o.items, |
items: o.items, |
||||||
itemsCreator: o.itemsCreator, |
itemsCreator: o.itemsCreator, |
||||||
keywordGetter: o.keywordGetter, |
keywordGetter: o.keywordGetter, |
||||||
value: o.value, |
value: o.value, |
||||||
scrollable: null, |
scrollable: null, |
||||||
onLoaded: function () { |
onLoaded() { |
||||||
self.tree.check(); |
self.tree.check(); |
||||||
o.onLoaded(); |
o.onLoaded(); |
||||||
} |
}, |
||||||
}); |
}); |
||||||
|
|
||||||
BI.createWidget({ |
createWidget({ |
||||||
type: "bi.vertical", |
type: VerticalLayout.xtype, |
||||||
scrolly: false, |
scrolly: false, |
||||||
scrollable: true, |
scrollable: true, |
||||||
element: this, |
element: this, |
||||||
vgap: 5, |
vgap: 5, |
||||||
items: [this.tree] |
items: [this.tree], |
||||||
}); |
}); |
||||||
|
|
||||||
this.tree.on(BI.Controller.EVENT_CHANGE, function () { |
this.tree.on(Controller.EVENT_CHANGE, function () { |
||||||
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
self.fireEvent(Controller.EVENT_CHANGE, arguments); |
||||||
}); |
}); |
||||||
|
|
||||||
this.tree.on(BI.MultiLayerSelectLevelTree.EVENT_CHANGE, function () { |
this.tree.on(MultiLayerSelectLevelTree.EVENT_CHANGE, () => { |
||||||
self.fireEvent(BI.MultiLayerSelectTreePopup.EVENT_CHANGE); |
self.fireEvent(MultiLayerSelectTreePopup.EVENT_CHANGE); |
||||||
}); |
}); |
||||||
|
|
||||||
this.tree.css("min-height", BI.pixFormat(o.minHeight - 10)); |
this.tree.css("min-height", BI.pixFormat(o.minHeight - 10)); |
||||||
}, |
} |
||||||
|
|
||||||
getValue: function () { |
getValue() { |
||||||
return this.tree.getValue(); |
return this.tree.getValue(); |
||||||
}, |
} |
||||||
|
|
||||||
setValue: function (v) { |
setValue(v) { |
||||||
v = BI.isArray(v) ? v : [v]; |
v = isArray(v) ? v : [v]; |
||||||
this.tree.setValue(v); |
this.tree.setValue(v); |
||||||
}, |
} |
||||||
|
|
||||||
populate: function (items) { |
populate(items) { |
||||||
this.tree.populate(items); |
this.tree.populate(items); |
||||||
} |
} |
||||||
}); |
} |
||||||
|
|
||||||
BI.MultiLayerSelectTreePopup.EVENT_CHANGE = "EVENT_CHANGE"; |
|
||||||
BI.shortcut("bi.multilayer_select_tree_popup", BI.MultiLayerSelectTreePopup); |
|
||||||
|
@ -1,237 +1,301 @@ |
|||||||
/** |
import { |
||||||
* Created by Windy on 2018/2/2. |
shortcut, |
||||||
*/ |
emptyFn, |
||||||
BI.MultiLayerSelectTreeTrigger = BI.inherit(BI.Trigger, { |
i18nText, |
||||||
|
isNotNull, |
||||||
|
isKey, |
||||||
|
HorizontalFillLayout, |
||||||
|
Tree, |
||||||
|
deepClone, |
||||||
|
Func, |
||||||
|
concat, |
||||||
|
isNotEmptyArray, |
||||||
|
each, |
||||||
|
uniqBy, |
||||||
|
map, |
||||||
|
isFunction, |
||||||
|
find |
||||||
|
} from "@/core"; |
||||||
|
import { Trigger, Searcher } from "@/base"; |
||||||
|
import { StateEditor, DefaultTextEditor } from "@/case"; |
||||||
|
import { MultiLayerSelectTreeInsertSearchPane } from "./multilayerselecttree.insert.search.pane"; |
||||||
|
import { MultiLayerSelectTreePopup } from "./multilayerselecttree.popup"; |
||||||
|
|
||||||
props: function () { |
@shortcut() |
||||||
|
export class MultiLayerSelectTreeTrigger extends Trigger { |
||||||
|
static xtype = "bi.multilayer_select_tree_trigger"; |
||||||
|
|
||||||
|
static EVENT_FOCUS = "EVENT_FOCUS"; |
||||||
|
static EVENT_BLUR = "EVENT_BLUR"; |
||||||
|
static EVENT_SEARCHING = "EVENT_SEARCHING"; |
||||||
|
static EVENT_STOP = "EVENT_STOP"; |
||||||
|
static EVENT_START = "EVENT_START"; |
||||||
|
static EVENT_CHANGE = "EVENT_CHANGE"; |
||||||
|
static EVENT_ADD_ITEM = "EVENT_ADD_ITEM"; |
||||||
|
|
||||||
|
props() { |
||||||
return { |
return { |
||||||
extraCls: "bi-multi-layer-select-tree-trigger", |
extraCls: "bi-multi-layer-select-tree-trigger", |
||||||
height: 24, |
height: 24, |
||||||
itemsCreator: BI.emptyFn, |
itemsCreator: emptyFn, |
||||||
watermark: BI.i18nText("BI-Basic_Search"), |
watermark: i18nText("BI-Basic_Search"), |
||||||
allowSearchValue: false, |
allowSearchValue: false, |
||||||
title: BI.bind(this._getShowText, this) |
title: () => this._getShowText(), |
||||||
}; |
}; |
||||||
}, |
} |
||||||
|
|
||||||
render: function () { |
render() { |
||||||
var self = this, o = this.options; |
const self = this, |
||||||
|
o = this.options; |
||||||
if (o.itemsCreator === BI.emptyFn) { |
if (o.itemsCreator === BI.emptyFn) { |
||||||
this._initData(); |
this._initData(); |
||||||
} |
} |
||||||
|
|
||||||
return { |
return { |
||||||
type: "bi.horizontal_fill", |
type: HorizontalFillLayout.xtype, |
||||||
items: [ |
items: [ |
||||||
{ |
{ |
||||||
el: { |
el: { |
||||||
type: "bi.searcher", |
type: Searcher.xtype, |
||||||
ref: function () { |
ref() { |
||||||
self.searcher = this; |
self.searcher = this; |
||||||
}, |
}, |
||||||
masker: BI.isNotNull(o.container) ? { |
masker: isNotNull(o.container) |
||||||
|
? { |
||||||
|
offset: {}, |
||||||
|
container: o.container, |
||||||
|
} |
||||||
|
: { |
||||||
offset: {}, |
offset: {}, |
||||||
container: o.container |
|
||||||
} : { |
|
||||||
offset: {} |
|
||||||
}, |
}, |
||||||
isAutoSearch: false, |
isAutoSearch: false, |
||||||
el: { |
el: { |
||||||
type: "bi.default_text_editor", |
type: DefaultTextEditor.xtype, |
||||||
ref: function () { |
ref() { |
||||||
self.editor = this; |
self.editor = this; |
||||||
}, |
}, |
||||||
defaultText: o.defaultText, |
defaultText: o.defaultText, |
||||||
text: BI.isKey(o.value) ? this._digest(o.value) : o.text, |
text: isKey(o.value) |
||||||
|
? this._digest(o.value) |
||||||
|
: o.text, |
||||||
value: o.value, |
value: o.value, |
||||||
height: o.height, |
height: o.height, |
||||||
tipText: "", |
tipText: "", |
||||||
watermark: o.watermark, |
watermark: o.watermark, |
||||||
listeners: [{ |
listeners: [ |
||||||
eventName: BI.StateEditor.EVENT_FOCUS, |
{ |
||||||
action: function () { |
eventName: StateEditor.EVENT_FOCUS, |
||||||
self.fireEvent(BI.MultiLayerSelectTreeTrigger.EVENT_FOCUS); |
action() { |
||||||
} |
self.fireEvent( |
||||||
}, { |
MultiLayerSelectTreeTrigger.EVENT_FOCUS |
||||||
eventName: BI.StateEditor.EVENT_BLUR, |
); |
||||||
action: function () { |
}, |
||||||
self.fireEvent(BI.MultiLayerSelectTreeTrigger.EVENT_BLUR); |
}, |
||||||
} |
{ |
||||||
}, { |
eventName: StateEditor.EVENT_BLUR, |
||||||
eventName: BI.StateEditor.EVENT_CHANGE, |
action() { |
||||||
action: function () { |
self.fireEvent( |
||||||
self.fireEvent(BI.MultiLayerSelectTreeTrigger.EVENT_SEARCHING); |
MultiLayerSelectTreeTrigger.EVENT_BLUR |
||||||
|
); |
||||||
|
}, |
||||||
|
}, |
||||||
|
{ |
||||||
|
eventName: StateEditor.EVENT_CHANGE, |
||||||
|
action() { |
||||||
|
self.fireEvent( |
||||||
|
MultiLayerSelectTreeTrigger.EVENT_SEARCHING |
||||||
|
); |
||||||
|
}, |
||||||
} |
} |
||||||
}] |
], |
||||||
}, |
}, |
||||||
popup: { |
popup: { |
||||||
type: o.allowInsertValue ? "bi.multilayer_select_tree_insert_search_pane" : "bi.multilayer_select_tree_popup", |
type: o.allowInsertValue |
||||||
itemsCreator: o.itemsCreator === BI.emptyFn ? BI.emptyFn : function (op, callback) { |
? MultiLayerSelectTreeInsertSearchPane.xtype |
||||||
|
: MultiLayerSelectTreePopup.xtype, |
||||||
|
itemsCreator: |
||||||
|
o.itemsCreator === emptyFn |
||||||
|
? emptyFn |
||||||
|
: function (op, callback) { |
||||||
op.keyword = self.editor.getValue(); |
op.keyword = self.editor.getValue(); |
||||||
o.itemsCreator(op, callback); |
o.itemsCreator(op, callback); |
||||||
}, |
}, |
||||||
keywordGetter: function () { |
keywordGetter() { |
||||||
return self.editor.getValue(); |
return self.editor.getValue(); |
||||||
}, |
}, |
||||||
cls: "bi-card", |
cls: "bi-card", |
||||||
listeners: [{ |
listeners: [ |
||||||
eventName: BI.MultiLayerSelectTreeInsertSearchPane.EVENT_ADD_ITEM, |
{ |
||||||
action: function () { |
eventName: |
||||||
self.options.text = self.getSearcher().getKeyword(); |
MultiLayerSelectTreeInsertSearchPane.EVENT_ADD_ITEM, |
||||||
self.fireEvent(BI.MultiLayerSelectTreeTrigger.EVENT_ADD_ITEM); |
action() { |
||||||
} |
self.options.text = self |
||||||
}], |
.getSearcher() |
||||||
ref: function (_ref) { |
.getKeyword(); |
||||||
self.popup = _ref; |
self.fireEvent( |
||||||
|
MultiLayerSelectTreeTrigger.EVENT_ADD_ITEM |
||||||
|
); |
||||||
|
}, |
||||||
} |
} |
||||||
|
], |
||||||
|
ref(_ref) { |
||||||
|
self.popup = _ref; |
||||||
}, |
}, |
||||||
onSearch: function (obj, callback) { |
}, |
||||||
var keyword = obj.keyword; |
onSearch(obj, callback) { |
||||||
|
const keyword = obj.keyword; |
||||||
if (o.itemsCreator === BI.emptyFn) { |
if (o.itemsCreator === BI.emptyFn) { |
||||||
callback(self._getSearchItems(keyword)); |
callback(self._getSearchItems(keyword)); |
||||||
o.allowInsertValue && self.popup.setKeyword(keyword); |
o.allowInsertValue && |
||||||
|
self.popup.setKeyword(keyword); |
||||||
} else { |
} else { |
||||||
callback(); |
callback(); |
||||||
} |
} |
||||||
}, |
}, |
||||||
listeners: [{ |
listeners: [ |
||||||
eventName: BI.Searcher.EVENT_CHANGE, |
{ |
||||||
action: function () { |
eventName: Searcher.EVENT_CHANGE, |
||||||
self.fireEvent(BI.MultiLayerSelectTreeTrigger.EVENT_CHANGE); |
action() { |
||||||
|
self.fireEvent( |
||||||
|
MultiLayerSelectTreeTrigger.EVENT_CHANGE |
||||||
|
); |
||||||
|
}, |
||||||
} |
} |
||||||
}] |
], |
||||||
}, |
}, |
||||||
width: "fill", |
width: "fill", |
||||||
rgap: 24 |
rgap: 24, |
||||||
}, |
} |
||||||
] |
], |
||||||
}; |
}; |
||||||
}, |
} |
||||||
|
|
||||||
_initData: function () { |
_initData() { |
||||||
var o = this.options; |
const o = this.options; |
||||||
this.tree = new BI.Tree(); |
this.tree = new Tree(); |
||||||
this.nodes = BI.Tree.treeFormat(BI.deepClone(o.items)); |
this.nodes = Tree.treeFormat(deepClone(o.items)); |
||||||
this.tree.initTree(this.nodes); |
this.tree.initTree(this.nodes); |
||||||
}, |
} |
||||||
|
|
||||||
_getSearchItems: function (keyword) { |
_getSearchItems(keyword) { |
||||||
var self = this, o = this.options; |
const self = this, |
||||||
|
o = this.options; |
||||||
// 把数组搜索换成用BI.tree搜索节点, 搜到了就不再往下搜索
|
// 把数组搜索换成用BI.tree搜索节点, 搜到了就不再往下搜索
|
||||||
var items = []; |
const items = []; |
||||||
this.tree.traverse(function (node) { |
this.tree.traverse(node => { |
||||||
var find = BI.Func.getSearchResult(self.tree.isRoot(node) ? [] : BI.concat([node.text], (o.allowSearchValue ? [node.value] : [])), keyword); |
const find = Func.getSearchResult( |
||||||
|
self.tree.isRoot(node) |
||||||
|
? [] |
||||||
|
: concat( |
||||||
|
[node.text], |
||||||
|
o.allowSearchValue ? [node.value] : [] |
||||||
|
), |
||||||
|
keyword |
||||||
|
); |
||||||
if (find.find.length > 0 || find.match.length > 0) { |
if (find.find.length > 0 || find.match.length > 0) { |
||||||
items.push(node); |
items.push(node); |
||||||
|
|
||||||
return true; |
return true; |
||||||
} |
} |
||||||
}); |
}); |
||||||
|
|
||||||
return this._fillTreeStructure4Search(items, "id"); |
return this._fillTreeStructure4Search(items, "id"); |
||||||
}, |
} |
||||||
|
|
||||||
_createJson: function (node, open) { |
_createJson(node, open) { |
||||||
return { |
return { |
||||||
id: node.id, |
id: node.id, |
||||||
pId: node.pId, |
pId: node.pId, |
||||||
text: node.text, |
text: node.text, |
||||||
value: node.value, |
value: node.value, |
||||||
isParent: BI.isNotEmptyArray(node.children), |
isParent: isNotEmptyArray(node.children), |
||||||
open: open |
open, |
||||||
}; |
}; |
||||||
}, |
} |
||||||
|
|
||||||
_getChildren: function (node) { |
_getChildren(node) { |
||||||
var self = this; |
const self = this; |
||||||
node.children = node.children || []; |
node.children = node.children || []; |
||||||
var nodes = []; |
let nodes = []; |
||||||
BI.each(node.children, function (idx, child) { |
each(node.children, (idx, child) => { |
||||||
var children = self._getChildren(child); |
const children = self._getChildren(child); |
||||||
nodes = nodes.concat(children); |
nodes = nodes.concat(children); |
||||||
}); |
}); |
||||||
|
|
||||||
return node.children.concat(nodes); |
return node.children.concat(nodes); |
||||||
}, |
} |
||||||
|
|
||||||
// 将搜索到的节点进行补充,构造成一棵完整的树
|
_fillTreeStructure4Search(leaves) { |
||||||
_fillTreeStructure4Search: function (leaves) { |
const self = this; |
||||||
var self = this; |
let result = []; |
||||||
var result = []; |
const queue = []; |
||||||
var queue = []; |
each(leaves, (idx, node) => { |
||||||
BI.each(leaves, function (idx, node) { |
|
||||||
queue.push({ pId: node.pId }); |
queue.push({ pId: node.pId }); |
||||||
result.push(node); |
result.push(node); |
||||||
result = result.concat(self._getChildren(node)); |
result = result.concat(self._getChildren(node)); |
||||||
}); |
}); |
||||||
queue.reverse(); |
queue.reverse(); |
||||||
while (BI.isNotEmptyArray(queue)) { |
while (isNotEmptyArray(queue)) { |
||||||
var node = queue.pop(); |
const node = queue.pop(); |
||||||
var pNode = this.tree.search(this.tree.getRoot(), node.pId, "id"); |
const pNode = this.tree.search(this.tree.getRoot(), node.pId, "id"); |
||||||
if (pNode != null) { |
if (pNode != null) { |
||||||
pNode.open = true; |
pNode.open = true; |
||||||
queue.push({ pId: pNode.pId }); |
queue.push({ pId: pNode.pId }); |
||||||
result.push(pNode); |
result.push(pNode); |
||||||
} |
} |
||||||
} |
} |
||||||
return BI.uniqBy(BI.map(result, function (idx, node) { |
|
||||||
return self._createJson(node, node.open); |
|
||||||
}), "id"); |
|
||||||
}, |
|
||||||
|
|
||||||
_digest: function (v) { |
return uniqBy( |
||||||
var o = this.options; |
map(result, (idx, node) => self._createJson(node, node.open)), |
||||||
if (BI.isFunction(o.valueFormatter)) { |
"id" |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
_digest(v) { |
||||||
|
const o = this.options; |
||||||
|
if (isFunction(o.valueFormatter)) { |
||||||
return o.valueFormatter(v); |
return o.valueFormatter(v); |
||||||
} |
} |
||||||
|
|
||||||
var result = BI.find(o.items, function (i, item) { |
const result = find(o.items, (i, item) => item.value === v); |
||||||
return item.value === v; |
|
||||||
}); |
|
||||||
|
|
||||||
return BI.isNotNull(result) ? result.text : (o.text ?? v); |
return isNotNull(result) ? result.text : o.text ?? v; |
||||||
}, |
} |
||||||
|
|
||||||
_getShowText: function () { |
_getShowText() { |
||||||
return this.editor.getText(); |
return this.editor.getText(); |
||||||
}, |
} |
||||||
|
|
||||||
stopEditing: function () { |
stopEditing() { |
||||||
this.searcher.stopSearch(); |
this.searcher.stopSearch(); |
||||||
}, |
} |
||||||
|
|
||||||
getSearcher: function () { |
getSearcher() { |
||||||
return this.searcher; |
return this.searcher; |
||||||
}, |
} |
||||||
|
|
||||||
populate: function (items) { |
populate(items) { |
||||||
this.options.items = items; |
this.options.items = items; |
||||||
this._initData(items); |
this._initData(items); |
||||||
}, |
} |
||||||
|
|
||||||
setValue: function (v) { |
setValue(v) { |
||||||
this.editor.setState(this._digest(v[0])); |
this.editor.setState(this._digest(v[0])); |
||||||
}, |
} |
||||||
|
|
||||||
getValue: function () { |
getValue() { |
||||||
return this.searcher.getValue(); |
return this.searcher.getValue(); |
||||||
}, |
} |
||||||
|
|
||||||
focus: function () { |
focus() { |
||||||
this.searcher.focus(); |
this.searcher.focus(); |
||||||
}, |
} |
||||||
|
|
||||||
blur: function () { |
blur() { |
||||||
this.searcher.blur(); |
this.searcher.blur(); |
||||||
}, |
} |
||||||
|
|
||||||
setWaterMark: function (v) { |
setWaterMark(v) { |
||||||
this.searcher.setWaterMark(v); |
this.searcher.setWaterMark(v); |
||||||
} |
} |
||||||
}); |
} |
||||||
|
|
||||||
BI.MultiLayerSelectTreeTrigger.EVENT_FOCUS = "EVENT_FOCUS"; |
|
||||||
BI.MultiLayerSelectTreeTrigger.EVENT_BLUR = "EVENT_BLUR"; |
|
||||||
BI.MultiLayerSelectTreeTrigger.EVENT_SEARCHING = "EVENT_SEARCHING"; |
|
||||||
BI.MultiLayerSelectTreeTrigger.EVENT_STOP = "EVENT_STOP"; |
|
||||||
BI.MultiLayerSelectTreeTrigger.EVENT_START = "EVENT_START"; |
|
||||||
BI.MultiLayerSelectTreeTrigger.EVENT_CHANGE = "EVENT_CHANGE"; |
|
||||||
BI.MultiLayerSelectTreeTrigger.EVENT_ADD_ITEM = "EVENT_ADD_ITEM"; |
|
||||||
BI.shortcut("bi.multilayer_select_tree_trigger", BI.MultiLayerSelectTreeTrigger); |
|
||||||
|
@ -1,99 +0,0 @@ |
|||||||
/** |
|
||||||
* 加号表示的组节点 |
|
||||||
* |
|
||||||
* Created by GUY on 2016/1/27. |
|
||||||
* @class BI.MultiLayerSelectTreeFirstPlusGroupNode |
|
||||||
* @extends BI.NodeButton |
|
||||||
*/ |
|
||||||
BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { |
|
||||||
_defaultConfig: function () { |
|
||||||
var conf = BI.MultiLayerSelectTreeFirstPlusGroupNode.superclass._defaultConfig.apply(this, arguments); |
|
||||||
return BI.extend(conf, { |
|
||||||
extraCls: "bi-multilayer-select-tree-first-plus-group-node bi-list-item-active", |
|
||||||
layer: 0, // 第几层级
|
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
readonly: true, |
|
||||||
open: false, |
|
||||||
height: 24 |
|
||||||
}); |
|
||||||
}, |
|
||||||
_init: function () { |
|
||||||
BI.MultiLayerSelectTreeFirstPlusGroupNode.superclass._init.apply(this, arguments); |
|
||||||
var self = this, o = this.options; |
|
||||||
this.node = BI.createWidget({ |
|
||||||
type: "bi.select_tree_first_plus_group_node", |
|
||||||
cls: "bi-list-item-none", |
|
||||||
stopPropagation: true, |
|
||||||
logic: { |
|
||||||
dynamic: true |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
keyword: o.keyword, |
|
||||||
open: o.open, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py |
|
||||||
}); |
|
||||||
this.node.on(BI.Controller.EVENT_CHANGE, function (type) { |
|
||||||
self.setSelected(self.isSelected()); |
|
||||||
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
||||||
}); |
|
||||||
|
|
||||||
var items = []; |
|
||||||
// BI.count(0, o.layer, function (index) {
|
|
||||||
// items.push({
|
|
||||||
// type: "bi.layout",
|
|
||||||
// cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background",
|
|
||||||
// width: 12,
|
|
||||||
// height: o.height
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
items.push({ |
|
||||||
el: this.node, |
|
||||||
lgap: o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2 |
|
||||||
}); |
|
||||||
BI.createWidget({ |
|
||||||
type: "bi.horizontal_adapt", |
|
||||||
element: this, |
|
||||||
columnSize: BI.makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items: items |
|
||||||
}); |
|
||||||
}, |
|
||||||
|
|
||||||
isOnce: function () { |
|
||||||
return true; |
|
||||||
}, |
|
||||||
|
|
||||||
doRedMark: function () { |
|
||||||
this.node.doRedMark.apply(this.node, arguments); |
|
||||||
}, |
|
||||||
|
|
||||||
unRedMark: function () { |
|
||||||
this.node.unRedMark.apply(this.node, arguments); |
|
||||||
}, |
|
||||||
|
|
||||||
isSelected: function () { |
|
||||||
return this.node.isSelected(); |
|
||||||
}, |
|
||||||
|
|
||||||
setSelected: function (b) { |
|
||||||
BI.MultiLayerSelectTreeFirstPlusGroupNode.superclass.setSelected.apply(this, arguments); |
|
||||||
this.node.setSelected(b); |
|
||||||
}, |
|
||||||
|
|
||||||
doClick: function () { |
|
||||||
BI.NodeButton.superclass.doClick.apply(this, arguments); |
|
||||||
this.node.setSelected(this.isSelected()); |
|
||||||
}, |
|
||||||
|
|
||||||
setOpened: function (v) { |
|
||||||
BI.MultiLayerSelectTreeFirstPlusGroupNode.superclass.setOpened.apply(this, arguments); |
|
||||||
this.node.setOpened(v); |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
BI.shortcut("bi.multilayer_select_tree_first_plus_group_node", BI.MultiLayerSelectTreeFirstPlusGroupNode); |
|
@ -1,88 +0,0 @@ |
|||||||
/** |
|
||||||
* 加号表示的组节点 |
|
||||||
* |
|
||||||
* Created by GUY on 2016/1/27. |
|
||||||
* @class BI.MultiLayerSelectTreeLastPlusGroupNode |
|
||||||
* @extends BI.NodeButton |
|
||||||
*/ |
|
||||||
BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { |
|
||||||
_defaultConfig: function () { |
|
||||||
var conf = BI.MultiLayerSelectTreeLastPlusGroupNode.superclass._defaultConfig.apply(this, arguments); |
|
||||||
return BI.extend(conf, { |
|
||||||
extraCls: "bi-multilayer-select-tree-last-plus-group-node bi-list-item-active", |
|
||||||
layer: 0, // 第几层级
|
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
readonly: true, |
|
||||||
open: false, |
|
||||||
height: 24 |
|
||||||
}); |
|
||||||
}, |
|
||||||
_init: function () { |
|
||||||
BI.MultiLayerSelectTreeLastPlusGroupNode.superclass._init.apply(this, arguments); |
|
||||||
var self = this, o = this.options; |
|
||||||
this.node = BI.createWidget({ |
|
||||||
type: "bi.select_tree_last_plus_group_node", |
|
||||||
cls: "bi-list-item-none", |
|
||||||
stopPropagation: true, |
|
||||||
logic: { |
|
||||||
dynamic: true |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
keyword: o.keyword, |
|
||||||
open: o.open, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py |
|
||||||
}); |
|
||||||
this.node.on(BI.Controller.EVENT_CHANGE, function (type) { |
|
||||||
self.setSelected(self.isSelected()); |
|
||||||
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
||||||
}); |
|
||||||
|
|
||||||
var items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.node, |
|
||||||
lgap: o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2 |
|
||||||
}); |
|
||||||
BI.createWidget({ |
|
||||||
type: "bi.horizontal_adapt", |
|
||||||
element: this, |
|
||||||
columnSize: BI.makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items: items |
|
||||||
}); |
|
||||||
}, |
|
||||||
|
|
||||||
doRedMark: function () { |
|
||||||
this.node.doRedMark.apply(this.node, arguments); |
|
||||||
}, |
|
||||||
|
|
||||||
unRedMark: function () { |
|
||||||
this.node.unRedMark.apply(this.node, arguments); |
|
||||||
}, |
|
||||||
|
|
||||||
isSelected: function () { |
|
||||||
return this.node.isSelected(); |
|
||||||
}, |
|
||||||
|
|
||||||
setSelected: function (b) { |
|
||||||
BI.MultiLayerSelectTreeLastPlusGroupNode.superclass.setSelected.apply(this, arguments); |
|
||||||
this.node.setSelected(b); |
|
||||||
}, |
|
||||||
|
|
||||||
doClick: function () { |
|
||||||
BI.MultiLayerSelectTreeLastPlusGroupNode.superclass.doClick.apply(this, arguments); |
|
||||||
this.node.setSelected(this.isSelected()); |
|
||||||
}, |
|
||||||
|
|
||||||
setOpened: function (v) { |
|
||||||
BI.MultiLayerSelectTreeLastPlusGroupNode.superclass.setOpened.apply(this, arguments); |
|
||||||
this.node.setOpened(v); |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
BI.shortcut("bi.multilayer_select_tree_last_plus_group_node", BI.MultiLayerSelectTreeLastPlusGroupNode); |
|
@ -1,88 +0,0 @@ |
|||||||
/** |
|
||||||
* 加号表示的组节点 |
|
||||||
* |
|
||||||
* Created by GUY on 2016/1/27. |
|
||||||
* @class BI.MultiLayerSelectTreeMidPlusGroupNode |
|
||||||
* @extends BI.NodeButton |
|
||||||
*/ |
|
||||||
BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { |
|
||||||
_defaultConfig: function () { |
|
||||||
var conf = BI.MultiLayerSelectTreeMidPlusGroupNode.superclass._defaultConfig.apply(this, arguments); |
|
||||||
return BI.extend(conf, { |
|
||||||
extraCls: "bi-multilayer-select-tree-mid-plus-group-node bi-list-item-active", |
|
||||||
layer: 0, // 第几层级
|
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
readonly: true, |
|
||||||
open: false, |
|
||||||
height: 24 |
|
||||||
}); |
|
||||||
}, |
|
||||||
_init: function () { |
|
||||||
BI.MultiLayerSelectTreeMidPlusGroupNode.superclass._init.apply(this, arguments); |
|
||||||
var self = this, o = this.options; |
|
||||||
this.node = BI.createWidget({ |
|
||||||
type: "bi.select_tree_mid_plus_group_node", |
|
||||||
cls: "bi-list-item-none", |
|
||||||
stopPropagation: true, |
|
||||||
logic: { |
|
||||||
dynamic: true |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
keyword: o.keyword, |
|
||||||
open: o.open, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py |
|
||||||
}); |
|
||||||
this.node.on(BI.Controller.EVENT_CHANGE, function (type) { |
|
||||||
self.setSelected(self.isSelected()); |
|
||||||
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
||||||
}); |
|
||||||
|
|
||||||
var items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.node, |
|
||||||
lgap: o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2 |
|
||||||
}); |
|
||||||
BI.createWidget({ |
|
||||||
type: "bi.horizontal_adapt", |
|
||||||
element: this, |
|
||||||
columnSize: BI.makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items: items |
|
||||||
}); |
|
||||||
}, |
|
||||||
|
|
||||||
doRedMark: function () { |
|
||||||
this.node.doRedMark.apply(this.node, arguments); |
|
||||||
}, |
|
||||||
|
|
||||||
unRedMark: function () { |
|
||||||
this.node.unRedMark.apply(this.node, arguments); |
|
||||||
}, |
|
||||||
|
|
||||||
isSelected: function () { |
|
||||||
return this.node.isSelected(); |
|
||||||
}, |
|
||||||
|
|
||||||
setSelected: function (b) { |
|
||||||
BI.MultiLayerSelectTreeMidPlusGroupNode.superclass.setSelected.apply(this, arguments); |
|
||||||
this.node.setSelected(b); |
|
||||||
}, |
|
||||||
|
|
||||||
doClick: function () { |
|
||||||
BI.MultiLayerSelectTreeMidPlusGroupNode.superclass.doClick.apply(this, arguments); |
|
||||||
this.node.setSelected(this.isSelected()); |
|
||||||
}, |
|
||||||
|
|
||||||
setOpened: function (v) { |
|
||||||
BI.MultiLayerSelectTreeMidPlusGroupNode.superclass.setOpened.apply(this, arguments); |
|
||||||
this.node.setOpened(v); |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
BI.shortcut("bi.multilayer_select_tree_mid_plus_group_node", BI.MultiLayerSelectTreeMidPlusGroupNode); |
|
@ -1,92 +0,0 @@ |
|||||||
/** |
|
||||||
* 加号表示的组节点 |
|
||||||
* |
|
||||||
* Created by GUY on 2016/1/27. |
|
||||||
* @class BI.MultiLayerSelectTreePlusGroupNode |
|
||||||
* @extends BI.NodeButton |
|
||||||
*/ |
|
||||||
BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { |
|
||||||
_defaultConfig: function () { |
|
||||||
var conf = BI.MultiLayerSelectTreePlusGroupNode.superclass._defaultConfig.apply(this, arguments); |
|
||||||
return BI.extend(conf, { |
|
||||||
extraCls: "bi-multilayer-select-tree-first-plus-group-node bi-list-item-active", |
|
||||||
layer: 0, // 第几层级
|
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
readonly: true, |
|
||||||
open: false, |
|
||||||
height: 24 |
|
||||||
}); |
|
||||||
}, |
|
||||||
_init: function () { |
|
||||||
BI.MultiLayerSelectTreePlusGroupNode.superclass._init.apply(this, arguments); |
|
||||||
var self = this, o = this.options; |
|
||||||
this.node = BI.createWidget({ |
|
||||||
type: "bi.select_tree_plus_group_node", |
|
||||||
cls: "bi-list-item-none", |
|
||||||
stopPropagation: true, |
|
||||||
logic: { |
|
||||||
dynamic: true |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
keyword: o.keyword, |
|
||||||
open: o.open, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py |
|
||||||
}); |
|
||||||
this.node.on(BI.Controller.EVENT_CHANGE, function (type) { |
|
||||||
self.setSelected(self.isSelected()); |
|
||||||
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
||||||
}); |
|
||||||
|
|
||||||
var items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.node, |
|
||||||
lgap: o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2 |
|
||||||
}); |
|
||||||
BI.createWidget({ |
|
||||||
type: "bi.horizontal_adapt", |
|
||||||
element: this, |
|
||||||
columnSize: BI.makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items: items |
|
||||||
}); |
|
||||||
}, |
|
||||||
|
|
||||||
isOnce: function () { |
|
||||||
return true; |
|
||||||
}, |
|
||||||
|
|
||||||
doRedMark: function () { |
|
||||||
this.node.doRedMark.apply(this.node, arguments); |
|
||||||
}, |
|
||||||
|
|
||||||
unRedMark: function () { |
|
||||||
this.node.unRedMark.apply(this.node, arguments); |
|
||||||
}, |
|
||||||
|
|
||||||
isSelected: function () { |
|
||||||
return this.node.isSelected(); |
|
||||||
}, |
|
||||||
|
|
||||||
setSelected: function (b) { |
|
||||||
BI.MultiLayerSelectTreePlusGroupNode.superclass.setSelected.apply(this, arguments); |
|
||||||
this.node.setSelected(b); |
|
||||||
}, |
|
||||||
|
|
||||||
doClick: function () { |
|
||||||
BI.NodeButton.superclass.doClick.apply(this, arguments); |
|
||||||
this.node.setSelected(this.isSelected()); |
|
||||||
}, |
|
||||||
|
|
||||||
setOpened: function (v) { |
|
||||||
BI.MultiLayerSelectTreePlusGroupNode.superclass.setOpened.apply(this, arguments); |
|
||||||
this.node.setOpened(v); |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
BI.shortcut("bi.multilayer_select_tree_plus_group_node", BI.MultiLayerSelectTreePlusGroupNode); |
|
@ -1,4 +0,0 @@ |
|||||||
export { MultiLayerSingleTreeFirstPlusGroupNode } from "./node.first.plus"; |
|
||||||
export { MultiLayerSingleTreeLastPlusGroupNode } from "./node.last.plus"; |
|
||||||
export { MultiLayerSingleTreeMidPlusGroupNode } from "./node.mid.plus"; |
|
||||||
export { MultiLayerSingleTreePlusGroupNode } from "./node.plus"; |
|
@ -1,104 +0,0 @@ |
|||||||
import { |
|
||||||
shortcut, |
|
||||||
extend, |
|
||||||
createWidget, |
|
||||||
makeArray, |
|
||||||
HorizontalAdaptLayout, |
|
||||||
isNotNull, |
|
||||||
Controller, |
|
||||||
Events |
|
||||||
} from "@/core"; |
|
||||||
import { NodeButton } from "@/base"; |
|
||||||
import { FirstPlusGroupNode } from "@/case"; |
|
||||||
|
|
||||||
@shortcut() |
|
||||||
export class MultiLayerSingleTreeFirstPlusGroupNode extends NodeButton { |
|
||||||
static xtype = "bi.multilayer_single_tree_first_plus_group_node"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
const conf = super._defaultConfig(...arguments); |
|
||||||
|
|
||||||
return extend(conf, { |
|
||||||
extraCls: "bi-multilayer-single-tree-first-plus-group-node bi-list-item", |
|
||||||
layer: 0, // 第几层级
|
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
open: false, |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init(...arguments); |
|
||||||
const o = this.options; |
|
||||||
this.node = this._createNode(); |
|
||||||
|
|
||||||
const items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.node, |
|
||||||
lgap: (o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT) / 2, |
|
||||||
}); |
|
||||||
createWidget({ |
|
||||||
type: HorizontalAdaptLayout.xtype, |
|
||||||
element: this, |
|
||||||
columnSize: makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
doRedMark() { |
|
||||||
this.node.doRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unRedMark() { |
|
||||||
this.node.unRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.node.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setOpened(v) { |
|
||||||
super.setOpened(...arguments); |
|
||||||
if (isNotNull(this.node)) { |
|
||||||
this.node.setOpened(v); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
_createNode() { |
|
||||||
const o = this.options; |
|
||||||
|
|
||||||
return createWidget({ |
|
||||||
type: FirstPlusGroupNode.xtype, |
|
||||||
cls: "bi-list-item-none", |
|
||||||
logic: { |
|
||||||
dynamic: true, |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
open: o.open, |
|
||||||
isLastNode: o.isLastNode, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
listeners: [ |
|
||||||
{ |
|
||||||
eventName: Controller.EVENT_CHANGE, |
|
||||||
action: (...args) => { |
|
||||||
const [type] = args; |
|
||||||
if (type === Events.CLICK) { |
|
||||||
// 本身实现click功能
|
|
||||||
return; |
|
||||||
} |
|
||||||
this.fireEvent(Controller.EVENT_CHANGE, ...args); |
|
||||||
}, |
|
||||||
} |
|
||||||
], |
|
||||||
}); |
|
||||||
} |
|
||||||
} |
|
@ -1,103 +0,0 @@ |
|||||||
import { |
|
||||||
shortcut, |
|
||||||
extend, |
|
||||||
createWidget, |
|
||||||
makeArray, |
|
||||||
HorizontalAdaptLayout, |
|
||||||
isNotNull, |
|
||||||
Controller, |
|
||||||
Events |
|
||||||
} from "@/core"; |
|
||||||
import { NodeButton } from "@/base"; |
|
||||||
import { LastPlusGroupNode } from "@/case"; |
|
||||||
|
|
||||||
@shortcut() |
|
||||||
export class MultiLayerSingleTreeLastPlusGroupNode extends NodeButton { |
|
||||||
static xtype = "bi.multilayer_single_tree_last_plus_group_node"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
const conf = super._defaultConfig(...arguments); |
|
||||||
|
|
||||||
return extend(conf, { |
|
||||||
extraCls: "bi-multilayer-single-tree-last-plus-group-node bi-list-item", |
|
||||||
layer: 0, // 第几层级
|
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
open: false, |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init(...arguments); |
|
||||||
const o = this.options; |
|
||||||
this.node = this._createNode(); |
|
||||||
|
|
||||||
const items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.node, |
|
||||||
lgap: (o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT) / 2, |
|
||||||
}); |
|
||||||
createWidget({ |
|
||||||
type: HorizontalAdaptLayout.xtype, |
|
||||||
element: this, |
|
||||||
columnSize: makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
doRedMark() { |
|
||||||
this.node.doRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unRedMark() { |
|
||||||
this.node.unRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.node.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setOpened(v) { |
|
||||||
super.setOpened(...arguments); |
|
||||||
if (isNotNull(this.node)) { |
|
||||||
this.node.setOpened(v); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
_createNode() { |
|
||||||
const o = this.options; |
|
||||||
|
|
||||||
return createWidget({ |
|
||||||
type: LastPlusGroupNode.xtype, |
|
||||||
cls: "bi-list-item-none", |
|
||||||
logic: { |
|
||||||
dynamic: true, |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
open: o.open, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
listeners: [ |
|
||||||
{ |
|
||||||
eventName: Controller.EVENT_CHANGE, |
|
||||||
action: (...args) => { |
|
||||||
const [type] = args; |
|
||||||
if (type === Events.CLICK) { |
|
||||||
// 本身实现click功能
|
|
||||||
return; |
|
||||||
} |
|
||||||
this.fireEvent(Controller.EVENT_CHANGE, ...args); |
|
||||||
}, |
|
||||||
} |
|
||||||
], |
|
||||||
}); |
|
||||||
} |
|
||||||
} |
|
@ -1,103 +0,0 @@ |
|||||||
import { |
|
||||||
shortcut, |
|
||||||
extend, |
|
||||||
createWidget, |
|
||||||
makeArray, |
|
||||||
HorizontalAdaptLayout, |
|
||||||
isNotNull, |
|
||||||
Controller, |
|
||||||
Events |
|
||||||
} from "@/core"; |
|
||||||
import { NodeButton } from "@/base"; |
|
||||||
import { MidPlusGroupNode } from "@/case"; |
|
||||||
|
|
||||||
@shortcut() |
|
||||||
export class MultiLayerSingleTreeMidPlusGroupNode extends NodeButton { |
|
||||||
static xtype = "bi.multilayer_single_tree_mid_plus_group_node"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
const conf = super._defaultConfig(...arguments); |
|
||||||
|
|
||||||
return extend(conf, { |
|
||||||
extraCls: "bi-multilayer-single-tree-mid-plus-group-node bi-list-item", |
|
||||||
layer: 0, // 第几层级
|
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
open: false, |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init(...arguments); |
|
||||||
const o = this.options; |
|
||||||
this.node = this._createNode(); |
|
||||||
|
|
||||||
const items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.node, |
|
||||||
lgap: (o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT) / 2, |
|
||||||
}); |
|
||||||
createWidget({ |
|
||||||
type: HorizontalAdaptLayout.xtype, |
|
||||||
element: this, |
|
||||||
columnSize: makeArray(o.layer, 12), |
|
||||||
items, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
doRedMark() { |
|
||||||
this.node.doRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unRedMark() { |
|
||||||
this.node.unRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.node.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setOpened(v) { |
|
||||||
super.setOpened(...arguments); |
|
||||||
if (isNotNull(this.node)) { |
|
||||||
this.node.setOpened(v); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
_createNode() { |
|
||||||
const o = this.options; |
|
||||||
|
|
||||||
return createWidget({ |
|
||||||
type: MidPlusGroupNode.xtype, |
|
||||||
cls: "bi-list-item-none", |
|
||||||
logic: { |
|
||||||
dynamic: true, |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
open: o.open, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
listeners: [ |
|
||||||
{ |
|
||||||
eventName: Controller.EVENT_CHANGE, |
|
||||||
action: (...args) => { |
|
||||||
const [type] = args; |
|
||||||
if (type === Events.CLICK) { |
|
||||||
// 本身实现click功能
|
|
||||||
return; |
|
||||||
} |
|
||||||
this.fireEvent(Controller.EVENT_CHANGE, ...args); |
|
||||||
}, |
|
||||||
} |
|
||||||
], |
|
||||||
}); |
|
||||||
} |
|
||||||
} |
|
@ -1,120 +0,0 @@ |
|||||||
import { |
|
||||||
shortcut, |
|
||||||
extend, |
|
||||||
count, |
|
||||||
contains, |
|
||||||
createWidget, |
|
||||||
makeArray, |
|
||||||
Layout, |
|
||||||
HorizontalAdaptLayout, |
|
||||||
isNotNull, |
|
||||||
Controller, |
|
||||||
Events |
|
||||||
} from "@/core"; |
|
||||||
import { NodeButton } from "@/base"; |
|
||||||
import { PlusGroupNode } from "@/case"; |
|
||||||
|
|
||||||
@shortcut() |
|
||||||
export class MultiLayerSingleTreePlusGroupNode extends NodeButton { |
|
||||||
static xtype = "bi.multilayer_single_tree_plus_group_node"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
const conf = super._defaultConfig(...arguments); |
|
||||||
|
|
||||||
return extend(conf, { |
|
||||||
extraCls: "bi-multilayer-single-tree-plus-group-node bi-list-item", |
|
||||||
layer: 0, // 第几层级
|
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
open: false, |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init(...arguments); |
|
||||||
const o = this.options; |
|
||||||
this.node = this._createNode(); |
|
||||||
|
|
||||||
const needBlankLayers = []; |
|
||||||
let pNode = o.pNode; |
|
||||||
while (pNode) { |
|
||||||
if (pNode.isLastNode) { |
|
||||||
needBlankLayers.push(pNode.layer); |
|
||||||
} |
|
||||||
pNode = pNode.pNode; |
|
||||||
} |
|
||||||
|
|
||||||
const items = []; |
|
||||||
count(0, o.layer, index => { |
|
||||||
items.push({ |
|
||||||
type: Layout.xtype, |
|
||||||
cls: contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
||||||
width: 12, |
|
||||||
height: o.height, |
|
||||||
}); |
|
||||||
}); |
|
||||||
items.push(this.node); |
|
||||||
createWidget({ |
|
||||||
type: HorizontalAdaptLayout.xtype, |
|
||||||
element: this, |
|
||||||
columnSize: makeArray(o.layer, 12), |
|
||||||
items, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
doRedMark() { |
|
||||||
this.node.doRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unRedMark() { |
|
||||||
this.node.unRedMark(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.node.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setOpened(v) { |
|
||||||
super.setOpened(...arguments); |
|
||||||
if (isNotNull(this.node)) { |
|
||||||
this.node.setOpened(v); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
_createNode() { |
|
||||||
const o = this.options; |
|
||||||
|
|
||||||
return createWidget({ |
|
||||||
type: PlusGroupNode.xtype, |
|
||||||
cls: "bi-list-item-none", |
|
||||||
logic: { |
|
||||||
dynamic: true, |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
open: o.open, |
|
||||||
isLastNode: o.isLastNode, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
listeners: [ |
|
||||||
{ |
|
||||||
eventName: Controller.EVENT_CHANGE, |
|
||||||
action: (...args) => { |
|
||||||
const [type] = args; |
|
||||||
if (type === Events.CLICK) { |
|
||||||
// 本身实现click功能
|
|
||||||
return; |
|
||||||
} |
|
||||||
this.fireEvent(Controller.EVENT_CHANGE, ...args); |
|
||||||
}, |
|
||||||
} |
|
||||||
], |
|
||||||
}); |
|
||||||
} |
|
||||||
} |
|
@ -1,3 +0,0 @@ |
|||||||
export { MultiLayerSingleTreeFirstTreeLeafItem } from "./item.first.treeleaf"; |
|
||||||
export { MultiLayerSingleTreeLastTreeLeafItem } from "./item.last.treeleaf"; |
|
||||||
export { MultiLayerSingleTreeMidTreeLeafItem } from "./item.mid.treeleaf"; |
|
@ -1,87 +0,0 @@ |
|||||||
import { shortcut, extend, createWidget, Controller, Events, makeArray, HorizontalAdaptLayout } from "@/core"; |
|
||||||
import { BasicButton } from "@/base"; |
|
||||||
|
|
||||||
@shortcut() |
|
||||||
export class MultiLayerSingleTreeFirstTreeLeafItem extends BasicButton { |
|
||||||
static xtype = "bi.multilayer_single_tree_first_tree_leaf_item"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
return extend(super._defaultConfig(...arguments), { |
|
||||||
extraCls: "bi-multilayer-single-tree-first-tree-leaf-item bi-list-item-active", |
|
||||||
logic: { |
|
||||||
dynamic: false, |
|
||||||
}, |
|
||||||
layer: 0, |
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init(...arguments); |
|
||||||
const self = this, |
|
||||||
o = this.options; |
|
||||||
this.item = createWidget({ |
|
||||||
type: "bi.first_tree_leaf_item", |
|
||||||
cls: "bi-list-item-none", |
|
||||||
logic: { |
|
||||||
dynamic: true, |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
}); |
|
||||||
this.item.on(Controller.EVENT_CHANGE, function (type) { |
|
||||||
if (type === Events.CLICK) { |
|
||||||
// 本身实现click功能
|
|
||||||
return; |
|
||||||
} |
|
||||||
self.fireEvent(Controller.EVENT_CHANGE, arguments); |
|
||||||
}); |
|
||||||
|
|
||||||
const items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.item, |
|
||||||
lgap: (o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT) / 2, |
|
||||||
}); |
|
||||||
createWidget({ |
|
||||||
type: HorizontalAdaptLayout.xtype, |
|
||||||
element: this, |
|
||||||
columnSize: makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
doHighLight() { |
|
||||||
this.item.doHighLight(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unHighLight() { |
|
||||||
this.item.unHighLight(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
getId() { |
|
||||||
return this.options.id; |
|
||||||
} |
|
||||||
|
|
||||||
getPId() { |
|
||||||
return this.options.pId; |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.item.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setSelected(v) { |
|
||||||
super.setSelected(...arguments); |
|
||||||
this.item.setSelected(v); |
|
||||||
} |
|
||||||
} |
|
@ -1,87 +0,0 @@ |
|||||||
import { shortcut, extend, createWidget, Controller, Events, makeArray, HorizontalAdaptLayout } from "@/core"; |
|
||||||
import { BasicButton } from "@/base"; |
|
||||||
|
|
||||||
@shortcut() |
|
||||||
export class MultiLayerSingleTreeLastTreeLeafItem extends BasicButton { |
|
||||||
static xtype = "bi.multilayer_single_tree_last_tree_leaf_item"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
return extend(super._defaultConfig(...arguments), { |
|
||||||
extraCls: "bi-multilayer-single-tree-last-tree-leaf-item bi-list-item-active", |
|
||||||
logic: { |
|
||||||
dynamic: false, |
|
||||||
}, |
|
||||||
layer: 0, |
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init(...arguments); |
|
||||||
const self = this, |
|
||||||
o = this.options; |
|
||||||
this.item = createWidget({ |
|
||||||
type: "bi.last_tree_leaf_item", |
|
||||||
cls: "bi-list-item-none", |
|
||||||
logic: { |
|
||||||
dynamic: true, |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
}); |
|
||||||
this.item.on(Controller.EVENT_CHANGE, function (type) { |
|
||||||
if (type === Events.CLICK) { |
|
||||||
// 本身实现click功能
|
|
||||||
return; |
|
||||||
} |
|
||||||
self.fireEvent(Controller.EVENT_CHANGE, arguments); |
|
||||||
}); |
|
||||||
|
|
||||||
const items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.item, |
|
||||||
lgap: (o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT) / 2, |
|
||||||
}); |
|
||||||
createWidget({ |
|
||||||
type: HorizontalAdaptLayout.xtype, |
|
||||||
element: this, |
|
||||||
columnSize: makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
doHighLight() { |
|
||||||
this.item.doHighLight(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unHighLight() { |
|
||||||
this.item.unHighLight(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
getId() { |
|
||||||
return this.options.id; |
|
||||||
} |
|
||||||
|
|
||||||
getPId() { |
|
||||||
return this.options.pId; |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.item.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setSelected(v) { |
|
||||||
super.setSelected(...arguments); |
|
||||||
this.item.setSelected(v); |
|
||||||
} |
|
||||||
} |
|
@ -1,87 +0,0 @@ |
|||||||
import { shortcut, extend, createWidget, Controller, Events, makeArray, HorizontalAdaptLayout } from "@/core"; |
|
||||||
import { BasicButton } from "@/base"; |
|
||||||
|
|
||||||
@shortcut() |
|
||||||
export class MultiLayerSingleTreeMidTreeLeafItem extends BasicButton { |
|
||||||
static xtype = "bi.multilayer_single_tree_mid_tree_leaf_item"; |
|
||||||
|
|
||||||
_defaultConfig() { |
|
||||||
return extend(super._defaultConfig(...arguments), { |
|
||||||
extraCls: "bi-multilayer-single-tree-mid-tree-leaf-item bi-list-item-active", |
|
||||||
logic: { |
|
||||||
dynamic: false, |
|
||||||
}, |
|
||||||
layer: 0, |
|
||||||
id: "", |
|
||||||
pId: "", |
|
||||||
height: 24, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
_init() { |
|
||||||
super._init(...arguments); |
|
||||||
const self = this, |
|
||||||
o = this.options; |
|
||||||
this.item = createWidget({ |
|
||||||
type: "bi.mid_tree_leaf_item", |
|
||||||
cls: "bi-list-item-none", |
|
||||||
logic: { |
|
||||||
dynamic: true, |
|
||||||
}, |
|
||||||
id: o.id, |
|
||||||
pId: o.pId, |
|
||||||
height: o.height, |
|
||||||
hgap: o.hgap, |
|
||||||
text: o.text, |
|
||||||
value: o.value, |
|
||||||
py: o.py, |
|
||||||
keyword: o.keyword, |
|
||||||
}); |
|
||||||
this.item.on(Controller.EVENT_CHANGE, function (type) { |
|
||||||
if (type === Events.CLICK) { |
|
||||||
// 本身实现click功能
|
|
||||||
return; |
|
||||||
} |
|
||||||
self.fireEvent(Controller.EVENT_CHANGE, arguments); |
|
||||||
}); |
|
||||||
|
|
||||||
const items = []; |
|
||||||
|
|
||||||
items.push({ |
|
||||||
el: this.item, |
|
||||||
lgap: (o.layer * BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT) / 2, |
|
||||||
}); |
|
||||||
createWidget({ |
|
||||||
type: HorizontalAdaptLayout.xtype, |
|
||||||
element: this, |
|
||||||
columnSize: makeArray(o.layer, BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT / 2), |
|
||||||
items, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
doHighLight() { |
|
||||||
this.item.doHighLight(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
unHighLight() { |
|
||||||
this.item.unHighLight(...arguments); |
|
||||||
} |
|
||||||
|
|
||||||
getId() { |
|
||||||
return this.options.id; |
|
||||||
} |
|
||||||
|
|
||||||
getPId() { |
|
||||||
return this.options.pId; |
|
||||||
} |
|
||||||
|
|
||||||
doClick() { |
|
||||||
super.doClick(...arguments); |
|
||||||
this.item.setSelected(this.isSelected()); |
|
||||||
} |
|
||||||
|
|
||||||
setSelected(v) { |
|
||||||
super.setSelected(...arguments); |
|
||||||
this.item.setSelected(v); |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue