forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
317 lines
8.4 KiB
317 lines
8.4 KiB
import { |
|
shortcut, |
|
Widget, |
|
extend, |
|
emptyFn, |
|
VerticalLayout, |
|
createWidget, |
|
Controller, |
|
Events, |
|
isEmpty, |
|
nextTick, |
|
bind, |
|
isNumber, |
|
isObject, |
|
isFunction, |
|
makeObject, |
|
isArray, |
|
each |
|
} from "@/core"; |
|
import { ButtonGroup, Loader } from "@/base"; |
|
|
|
@shortcut() |
|
export class MultiSelectInnerLoader extends Widget { |
|
static xtype = "bi.multi_select_inner_loader"; |
|
|
|
static EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
_defaultConfig() { |
|
return extend(super._defaultConfig(...arguments), { |
|
baseCls: "bi-multi-select-inner-loader", |
|
|
|
direction: "top", |
|
isDefaultInit: true, // 是否默认初始化数据 |
|
logic: { |
|
dynamic: true, |
|
scrolly: true, |
|
}, |
|
|
|
// 下面是button_group的属性 |
|
el: { |
|
type: ButtonGroup.xtype, |
|
chooseType: ButtonGroup.CHOOSE_TYPE_MULTI, |
|
behaviors: { |
|
redmark() { |
|
return true; |
|
}, |
|
}, |
|
layouts: [ |
|
{ |
|
type: VerticalLayout.xtype, |
|
} |
|
], |
|
}, |
|
|
|
items: [], |
|
itemsCreator: emptyFn, |
|
onLoaded: emptyFn, |
|
|
|
// 下面是分页信息 |
|
count: false, |
|
prev: false, |
|
next: {}, |
|
hasPrev: emptyFn, |
|
hasNext: emptyFn, |
|
}); |
|
} |
|
|
|
_nextLoad() { |
|
const self = this, |
|
o = this.options; |
|
this.next.setLoading(); |
|
if (this.cachItems && this.cachItems.length > 0) { |
|
this.next.setLoaded(); |
|
this.addItems(this.cachItems.slice(0, 100)); |
|
this.cachItems = this.cachItems.slice(100); |
|
|
|
return; |
|
} |
|
o.itemsCreator.apply(this, [ |
|
{ times: ++this.times }, |
|
function () { |
|
self.next.setLoaded(); |
|
self.addItems(...arguments); |
|
} |
|
]); |
|
} |
|
|
|
render() { |
|
const self = this, |
|
o = this.options; |
|
if (o.itemsCreator === false) { |
|
o.next = false; |
|
} |
|
this.button_group = createWidget(o.el, { |
|
type: ButtonGroup.xtype, |
|
chooseType: 0, |
|
items: o.items, |
|
behaviors: {}, |
|
layouts: [ |
|
{ |
|
type: VerticalLayout.xtype, |
|
} |
|
], |
|
value: o.value, |
|
}); |
|
this.button_group.on( |
|
Controller.EVENT_CHANGE, |
|
function (type, value, obj) { |
|
if (type === Events.CLICK) { |
|
const node = self.cachGroup.getNodeByValue(value); |
|
if (node) { |
|
node.setSelected(obj.isSelected()); |
|
} |
|
} |
|
self.fireEvent(Controller.EVENT_CHANGE, arguments); |
|
if (type === Events.CLICK) { |
|
self.fireEvent(Loader.EVENT_CHANGE, obj); |
|
} |
|
} |
|
); |
|
|
|
const renderEngine = Widget._renderEngine; |
|
Widget.registerRenderEngine(BI.Element.renderEngine); |
|
this.cachGroup = createWidget(o.el, { |
|
type: ButtonGroup.xtype, |
|
root: true, |
|
chooseType: 0, |
|
items: o.items, |
|
behaviors: {}, |
|
layouts: [ |
|
{ |
|
type: VerticalLayout.xtype, |
|
} |
|
], |
|
value: o.value, |
|
}); |
|
Widget.registerRenderEngine(renderEngine); |
|
|
|
if (o.next !== false) { |
|
this.next = createWidget( |
|
extend( |
|
{ |
|
type: "bi.loading_bar", |
|
}, |
|
o.next |
|
) |
|
); |
|
this.next.on(Controller.EVENT_CHANGE, type => { |
|
if (type === Events.CLICK) { |
|
self._nextLoad(); |
|
} |
|
}); |
|
} |
|
|
|
createWidget({ |
|
type: VerticalLayout.xtype, |
|
element: this, |
|
items: [this.button_group, this.next], |
|
}); |
|
|
|
o.isDefaultInit && |
|
isEmpty(o.items) && |
|
nextTick( |
|
bind(function () { |
|
o.isDefaultInit && isEmpty(o.items) && this._populate(); |
|
}, this) |
|
); |
|
} |
|
|
|
hasNext() { |
|
const o = this.options; |
|
if (isNumber(o.count)) { |
|
return this.count < o.count; |
|
} |
|
if (this.cachItems && this.cachItems.length > 0) { |
|
return true; |
|
} |
|
|
|
return !!o.hasNext.apply(this, [ |
|
{ |
|
times: this.times, |
|
count: this.count, |
|
} |
|
]); |
|
} |
|
|
|
addItems(items) { |
|
this.count += items.length; |
|
if (isObject(this.next)) { |
|
if (this.hasNext()) { |
|
this.options.items = this.options.items.concat(items); |
|
this.next.setLoaded(); |
|
} else { |
|
this.next.setEnd(); |
|
} |
|
} |
|
const renderEngine = Widget._renderEngine; |
|
Widget.registerRenderEngine(BI.Element.renderEngine); |
|
this.cachGroup.addItems(...arguments); |
|
Widget.registerRenderEngine(renderEngine); |
|
this.button_group.addItems(...arguments); |
|
} |
|
|
|
_populate(items) { |
|
const self = this, |
|
o = this.options; |
|
if (arguments.length === 0 && isFunction(o.itemsCreator)) { |
|
o.itemsCreator.apply(this, [ |
|
{ times: 1 }, |
|
function (items, keyword) { |
|
if (arguments.length === 0) { |
|
throw new Error("参数不能为空"); |
|
} |
|
self.populate(...arguments); |
|
o.onLoaded(); |
|
} |
|
]); |
|
|
|
return false; |
|
} |
|
this.options.items = (items || []).slice( |
|
0, |
|
100 + ((items || []).length % 100) |
|
); |
|
this.times = 1; |
|
this.count = 0; |
|
this.count += items.length; |
|
if (isObject(this.next)) { |
|
if (this.hasNext()) { |
|
this.next.setLoaded(); |
|
} else { |
|
this.next.invisible(); |
|
} |
|
} |
|
|
|
return true; |
|
} |
|
|
|
populate(items, keyword) { |
|
if (this._populate(...arguments)) { |
|
this.cachItems = []; |
|
const firstItemsCount = 100 + (items.length % 100); |
|
if (items.length > firstItemsCount) { |
|
this.cachItems = items.slice(firstItemsCount); |
|
} |
|
const renderEngine = Widget._renderEngine; |
|
Widget.registerRenderEngine(BI.Element.renderEngine); |
|
this.cachGroup.populate.call(this.cachGroup, items, keyword); |
|
Widget.registerRenderEngine(renderEngine); |
|
this.button_group.populate.call( |
|
this.button_group, |
|
items.slice(0, firstItemsCount), |
|
keyword |
|
); |
|
} |
|
} |
|
|
|
setNotSelectedValue() { |
|
this.button_group.setNotSelectedValue(...arguments); |
|
this.cachGroup.setNotSelectedValue(...arguments); |
|
} |
|
|
|
getNotSelectedValue() { |
|
return this.cachGroup.getNotSelectedValue(); |
|
} |
|
|
|
setAllSelected(v) { |
|
this.button_group.setAllSelected(v); |
|
this.cachGroup.setAllSelected(v); |
|
} |
|
|
|
setValue(value) { |
|
const map = makeObject(isArray(value) ? value : [value]); |
|
this.cachGroup.setValueMap.call(this.cachGroup, map); |
|
this.button_group.setValueMap.call(this.button_group, map); |
|
} |
|
|
|
getValue() { |
|
return this.cachGroup.getValue(...arguments); |
|
} |
|
|
|
getAllButtons() { |
|
return this.button_group.getAllButtons(); |
|
} |
|
|
|
getAllLeaves() { |
|
return this.button_group.getAllLeaves(); |
|
} |
|
|
|
getSelectedButtons() { |
|
return this.button_group.getSelectedButtons(); |
|
} |
|
|
|
getNotSelectedButtons() { |
|
return this.button_group.getNotSelectedButtons(); |
|
} |
|
|
|
getIndexByValue(value) { |
|
return this.button_group.getIndexByValue(value); |
|
} |
|
|
|
getNodeById(id) { |
|
return this.button_group.getNodeById(id); |
|
} |
|
|
|
getNodeByValue(value) { |
|
return this.button_group.getNodeByValue(value); |
|
} |
|
|
|
empty() { |
|
this.button_group.empty(); |
|
this.cachGroup.empty(); |
|
each([this.prev, this.next], (i, ob) => { |
|
ob && ob.setVisible(false); |
|
}); |
|
} |
|
}
|
|
|