|
|
|
/**
|
|
|
|
* Created by zcf_1 on 2017/5/2.
|
|
|
|
*/
|
|
|
|
BI.MultiSelectList = BI.inherit(BI.Widget, {
|
|
|
|
_defaultConfig: function () {
|
|
|
|
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
|
|
|
|
baseCls: 'bi-multi-select-list',
|
|
|
|
itemsCreator: BI.emptyFn,
|
|
|
|
valueFormatter: BI.emptyFn
|
|
|
|
})
|
|
|
|
},
|
|
|
|
_init: function () {
|
|
|
|
BI.MultiSelectList.superclass._init.apply(this, arguments);
|
|
|
|
|
|
|
|
var self = this, o = this.options;
|
|
|
|
this.storeValue = {};
|
|
|
|
|
|
|
|
var assertShowValue = function () {
|
|
|
|
BI.isKey(self._startValue) && self.storeValue.value[self.storeValue.type === BI.Selection.All ? "remove" : "pushDistinct"](self._startValue);
|
|
|
|
self.trigger.setValue(self.storeValue);
|
|
|
|
};
|
|
|
|
|
|
|
|
this.adapter = BI.createWidget({
|
|
|
|
type: "bi.multi_select_loader",
|
|
|
|
cls: "popup-multi-select-list bi-border-left bi-border-right bi-border-bottom",
|
|
|
|
itemsCreator: o.itemsCreator,
|
|
|
|
valueFormatter: o.valueFormatter,
|
|
|
|
// onLoaded: o.onLoaded,
|
|
|
|
el: {
|
|
|
|
height: ""
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.adapter.on(BI.MultiSelectLoader.EVENT_CHANGE, function () {
|
|
|
|
self.storeValue = this.getValue();
|
|
|
|
self._adjust(function () {
|
|
|
|
assertShowValue();
|
|
|
|
self.fireEvent(BI.MultiSelectList.EVENT_CHANGE);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
this.searcherPane = BI.createWidget({
|
|
|
|
type: "bi.multi_select_search_pane",
|
|
|
|
cls: "bi-border-left bi-border-right bi-border-bottom",
|
|
|
|
valueFormatter: o.valueFormatter,
|
|
|
|
keywordGetter: function () {
|
|
|
|
return self.trigger.getKeyword();
|
|
|
|
},
|
|
|
|
itemsCreator: function (op, callback) {
|
|
|
|
op.keyword = self.trigger.getKeyword();
|
|
|
|
this.setKeyword(op.keyword);
|
|
|
|
o.itemsCreator(op, callback);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.searcherPane.setVisible(false);
|
|
|
|
|
|
|
|
this.trigger = BI.createWidget({
|
|
|
|
type: "bi.searcher",
|
|
|
|
isAutoSearch: false,
|
|
|
|
isAutoSync: false,
|
|
|
|
onSearch: function (op, callback) {
|
|
|
|
callback();
|
|
|
|
},
|
|
|
|
adapter: this.adapter,
|
|
|
|
popup: this.searcherPane,
|
|
|
|
height: 200,
|
|
|
|
masker: false,
|
|
|
|
listeners: [{
|
|
|
|
eventName: BI.Searcher.EVENT_START,
|
|
|
|
action: function () {
|
|
|
|
self._showSearcherPane();
|
|
|
|
self._setStartValue("");
|
|
|
|
this.setValue(self.storeValue);
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
eventName: BI.Searcher.EVENT_STOP,
|
|
|
|
action: function () {
|
|
|
|
self._showAdapter();
|
|
|
|
self._setStartValue("");
|
|
|
|
self.adapter.setValue(self.storeValue);
|
|
|
|
//需要刷新回到初始界面,否则搜索的结果不能放在最前面
|
|
|
|
self.adapter.populate();
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
eventName: BI.Searcher.EVENT_PAUSE,
|
|
|
|
action: function () {
|
|
|
|
if (this.hasMatched()) {
|
|
|
|
var keyword = this.getKeyword();
|
|
|
|
self._join({
|
|
|
|
type: BI.Selection.Multi,
|
|
|
|
value: [keyword]
|
|
|
|
}, function () {
|
|
|
|
self._showAdapter();
|
|
|
|
self.adapter.setValue(self.storeValue);
|
|
|
|
self._setStartValue(keyword);
|
|
|
|
assertShowValue();
|
|
|
|
self._setStartValue("");
|
|
|
|
self.fireEvent(BI.MultiSelectList.EVENT_CHANGE);
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
self._showAdapter();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
eventName: BI.Searcher.EVENT_SEARCHING,
|
|
|
|
action: function () {
|
|
|
|
var keywords = this.getKeyword();
|
|
|
|
var last = BI.last(keywords);
|
|
|
|
keywords = BI.initial(keywords || []);
|
|
|
|
if (keywords.length > 0) {
|
|
|
|
self._joinKeywords(keywords, function () {
|
|
|
|
if (BI.isEndWithBlank(last)) {
|
|
|
|
self.adapter.setValue(self.storeValue);
|
|
|
|
assertShowValue();
|
|
|
|
self.adapter.populate();
|
|
|
|
self._setStartValue("");
|
|
|
|
} else {
|
|
|
|
self.adapter.setValue(self.storeValue);
|
|
|
|
assertShowValue();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
eventName: BI.Searcher.EVENT_CHANGE,
|
|
|
|
action: function (value, obj) {
|
|
|
|
if (obj instanceof BI.MultiSelectBar) {
|
|
|
|
self._joinAll(this.getValue(), function () {
|
|
|
|
assertShowValue();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
self._join(this.getValue(), function () {//安徽省 北京
|
|
|
|
assertShowValue();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.vtape",
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: this.trigger,
|
|
|
|
height: 30
|
|
|
|
}, {
|
|
|
|
el: this.adapter,
|
|
|
|
height: "fill"
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.absolute",
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: this.searcherPane,
|
|
|
|
top: 30,
|
|
|
|
bottom: 0,
|
|
|
|
left: 0,
|
|
|
|
right: 0
|
|
|
|
}]
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
_showAdapter: function () {
|
|
|
|
this.adapter.setVisible(true);
|
|
|
|
this.searcherPane.setVisible(false);
|
|
|
|
},
|
|
|
|
|
|
|
|
_showSearcherPane: function () {
|
|
|
|
this.searcherPane.setVisible(true);
|
|
|
|
this.adapter.setVisible(false);
|
|
|
|
},
|
|
|
|
|
|
|
|
_defaultState: function () {
|
|
|
|
this.trigger.stopEditing();
|
|
|
|
},
|
|
|
|
|
|
|
|
_assertValue: function (val) {
|
|
|
|
val || (val = {});
|
|
|
|
val.type || (val.type = BI.Selection.Multi);
|
|
|
|
val.value || (val.value = []);
|
|
|
|
},
|
|
|
|
|
|
|
|
_makeMap: function (values) {
|
|
|
|
return BI.makeObject(values || []);
|
|
|
|
},
|
|
|
|
|
|
|
|
_joinKeywords: function (keywords, callback) {
|
|
|
|
var self = this, o = this.options;
|
|
|
|
this._assertValue(this.storeValue);
|
|
|
|
if (!this._allData) {
|
|
|
|
o.itemsCreator({
|
|
|
|
type: BI.MultiSelectList.REQ_GET_ALL_DATA
|
|
|
|
}, function (ob) {
|
|
|
|
self._allData = BI.pluck(ob.items, "value");
|
|
|
|
digest(self._allData);
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
digest(this._allData)
|
|
|
|
}
|
|
|
|
|
|
|
|
function digest(items) {
|
|
|
|
var selectedMap = self._makeMap(items);
|
|
|
|
BI.each(keywords, function (i, val) {
|
|
|
|
if (BI.isNotNull(selectedMap[val])) {
|
|
|
|
self.storeValue.value[self.storeValue.type === BI.Selection.Multi ? "pushDistinct" : "remove"](val);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
self._adjust(callback);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_joinAll: function (res, callback) {
|
|
|
|
var self = this, o = this.options;
|
|
|
|
this._assertValue(res);
|
|
|
|
o.itemsCreator({
|
|
|
|
type: BI.MultiSelectList.REQ_GET_ALL_DATA,
|
|
|
|
keyword: self.trigger.getKeyword()
|
|
|
|
}, function (ob) {
|
|
|
|
var items = BI.pluck(ob.items, "value");
|
|
|
|
if (self.storeValue.type === res.type) {
|
|
|
|
var change = false;
|
|
|
|
var map = self._makeMap(self.storeValue.value);
|
|
|
|
BI.each(items, function (i, v) {
|
|
|
|
if (BI.isNotNull(map[v])) {
|
|
|
|
change = true;
|
|
|
|
delete map[v];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
change && (self.storeValue.value = BI.values(map));
|
|
|
|
self._adjust(callback);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var selectedMap = self._makeMap(self.storeValue.value);
|
|
|
|
var notSelectedMap = self._makeMap(res.value);
|
|
|
|
var newItems = [];
|
|
|
|
BI.each(items, function (i, item) {
|
|
|
|
if (BI.isNotNull(selectedMap[items[i]])) {
|
|
|
|
delete selectedMap[items[i]];
|
|
|
|
}
|
|
|
|
if (BI.isNull(notSelectedMap[items[i]])) {
|
|
|
|
newItems.push(item);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
self.storeValue.value = newItems.concat(BI.values(selectedMap));
|
|
|
|
self._adjust(callback);
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
_adjust: function (callback) {
|
|
|
|
var self = this, o = this.options;
|
|
|
|
if (!this._count) {
|
|
|
|
o.itemsCreator({
|
|
|
|
type: BI.MultiSelectList.REQ_GET_DATA_LENGTH
|
|
|
|
}, function (res) {
|
|
|
|
self._count = res.count;
|
|
|
|
adjust();
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
adjust();
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
function adjust() {
|
|
|
|
if (self.storeValue.type === BI.Selection.All && self.storeValue.value.length >= self._count) {
|
|
|
|
self.storeValue = {
|
|
|
|
type: BI.Selection.Multi,
|
|
|
|
value: []
|
|
|
|
}
|
|
|
|
} else if (self.storeValue.type === BI.Selection.Multi && self.storeValue.value.length >= self._count) {
|
|
|
|
self.storeValue = {
|
|
|
|
type: BI.Selection.All,
|
|
|
|
value: []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_join: function (res, callback) {
|
|
|
|
var self = this, o = this.options;
|
|
|
|
this._assertValue(res);
|
|
|
|
this._assertValue(this.storeValue);
|
|
|
|
if (this.storeValue.type === res.type) {
|
|
|
|
var map = this._makeMap(this.storeValue.value);
|
|
|
|
BI.each(res.value, function (i, v) {
|
|
|
|
if (!map[v]) {
|
|
|
|
self.storeValue.value.push(v);
|
|
|
|
map[v] = v;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var change = false;
|
|
|
|
BI.each(res.assist, function (i, v) {
|
|
|
|
if (BI.isNotNull(map[v])) {
|
|
|
|
change = true;
|
|
|
|
delete map[v];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
change && (this.storeValue.value = BI.values(map));
|
|
|
|
self._adjust(callback);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._joinAll(res, callback);
|
|
|
|
},
|
|
|
|
|
|
|
|
_setStartValue: function (value) {
|
|
|
|
this._startValue = value;
|
|
|
|
this.adapter.setStartValue(value);
|
|
|
|
},
|
|
|
|
|
|
|
|
isAllSelected: function () {
|
|
|
|
return this.adapter.isAllSelected();
|
|
|
|
},
|
|
|
|
|
|
|
|
resize: function () {
|
|
|
|
// this.trigger.getCounter().adjustView();
|
|
|
|
// this.trigger.adjustView();
|
|
|
|
},
|
|
|
|
setValue: function (v) {
|
|
|
|
this.storeValue = v || {};
|
|
|
|
this._assertValue(this.storeValue);
|
|
|
|
this.adapter.setValue(this.storeValue);
|
|
|
|
this.trigger.setValue(this.storeValue);
|
|
|
|
},
|
|
|
|
|
|
|
|
getValue: function () {
|
|
|
|
return this.storeValue;
|
|
|
|
},
|
|
|
|
|
|
|
|
populate: function () {
|
|
|
|
this._count = null;
|
|
|
|
this._allData = null;
|
|
|
|
this.adapter.populate.apply(this.adapter, arguments);
|
|
|
|
this.trigger.populate.apply(this.trigger, arguments);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
BI.extend(BI.MultiSelectList, {
|
|
|
|
REQ_GET_DATA_LENGTH: 0,
|
|
|
|
REQ_GET_ALL_DATA: -1
|
|
|
|
});
|
|
|
|
|
|
|
|
BI.MultiSelectList.EVENT_CHANGE = "BI.MultiSelectList.EVENT_CHANGE";
|
|
|
|
BI.shortcut("bi.multi_select_list", BI.MultiSelectList);
|