* commit '0081aa7b37bb698753c7bfbf56c62ac161a88278': 更新 update BI-24217 search_text_value_combo && bubble高度字体规范 && color_picker图片更新es6
Before Width: | Height: | Size: 865 B After Width: | Height: | Size: 771 B |
After Width: | Height: | Size: 725 B |
After Width: | Height: | Size: 637 B |
After Width: | Height: | Size: 744 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,18 @@
|
||||
.bi-search-multi-text-value-combo .multi-select-trigger-icon-button { |
||||
font-size: 16px; |
||||
} |
||||
.bi-search-multi-text-value-combo.combo-error .bi-multi-select-searcher .tip-text-style { |
||||
color: #ff4949; |
||||
} |
||||
.bi-search-multi-text-value-combo .trigger-up { |
||||
display: none; |
||||
} |
||||
.bi-search-multi-text-value-combo .trigger-down { |
||||
display: block; |
||||
} |
||||
.bi-search-multi-text-value-combo.combo-show .trigger-up { |
||||
display: block; |
||||
} |
||||
.bi-search-multi-text-value-combo.combo-show .trigger-down { |
||||
display: none; |
||||
} |
@ -0,0 +1,28 @@
|
||||
@import "../../index"; |
||||
|
||||
.bi-search-multi-text-value-combo{ |
||||
& .multi-select-trigger-icon-button{ |
||||
font-size: 16px; |
||||
} |
||||
&.combo-error { |
||||
& .bi-multi-select-searcher { |
||||
& .tip-text-style{ |
||||
color: @color-bi-text-failure; |
||||
} |
||||
} |
||||
} |
||||
& .trigger-up { |
||||
display: none; |
||||
} |
||||
& .trigger-down { |
||||
display: block; |
||||
} |
||||
&.combo-show { |
||||
& .trigger-up { |
||||
display: block; |
||||
} |
||||
& .trigger-down { |
||||
display: none; |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,474 @@
|
||||
/** |
||||
* |
||||
* @class BI.SearchMultiTextValueCombo |
||||
* @extends BI.Single |
||||
*/ |
||||
BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, { |
||||
|
||||
_defaultConfig: function () { |
||||
return BI.extend(BI.SearchMultiTextValueCombo.superclass._defaultConfig.apply(this, arguments), { |
||||
baseCls: "bi-multi-select-combo bi-search-multi-text-value-combo", |
||||
height: 24, |
||||
items: [] |
||||
}); |
||||
}, |
||||
|
||||
_init: function () { |
||||
BI.SearchMultiTextValueCombo.superclass._init.apply(this, arguments); |
||||
var self = this, o = this.options; |
||||
var assertShowValue = function () { |
||||
BI.isKey(self._startValue) && self.storeValue.value[self.storeValue.type === BI.Selection.All ? "remove" : "pushDistinct"](self._startValue); |
||||
self._updateAllValue(); |
||||
self._checkError(); |
||||
self.trigger.getSearcher().setState(self.storeValue); |
||||
self.trigger.getCounter().setButtonChecked(self.storeValue); |
||||
}; |
||||
this.storeValue = o.value || {}; |
||||
this._updateAllValue(); |
||||
|
||||
this._assertValue(this.storeValue); |
||||
this._checkError(); |
||||
|
||||
// 标记正在请求数据
|
||||
this.requesting = false; |
||||
|
||||
this.trigger = BI.createWidget({ |
||||
type: "bi.search_multi_select_trigger", |
||||
text: o.text, |
||||
height: o.height, |
||||
// adapter: this.popup,
|
||||
masker: { |
||||
offset: { |
||||
left: 1, |
||||
top: 1, |
||||
right: 2, |
||||
bottom: 33 |
||||
} |
||||
}, |
||||
allValueGetter: function () { |
||||
return self.allValue; |
||||
}, |
||||
valueFormatter: o.valueFormatter, |
||||
itemsCreator: function (op, callback) { |
||||
self._itemsCreator(op, function (res) { |
||||
if (op.times === 1 && BI.isNotNull(op.keywords)) { |
||||
// 预防trigger内部把当前的storeValue改掉
|
||||
self.trigger.setValue(BI.deepClone(self.getValue())); |
||||
} |
||||
callback.apply(self, arguments); |
||||
}); |
||||
}, |
||||
value: this.storeValue |
||||
}); |
||||
|
||||
this.trigger.on(BI.MultiSelectTrigger.EVENT_START, function () { |
||||
self._setStartValue(""); |
||||
this.getSearcher().setValue(self.storeValue); |
||||
}); |
||||
this.trigger.on(BI.MultiSelectTrigger.EVENT_STOP, function () { |
||||
self._setStartValue(""); |
||||
}); |
||||
this.trigger.on(BI.MultiSelectTrigger.EVENT_PAUSE, function () { |
||||
if (this.getSearcher().hasMatched()) { |
||||
var keyword = this.getSearcher().getKeyword(); |
||||
self._join({ |
||||
type: BI.Selection.Multi, |
||||
value: [keyword] |
||||
}, function () { |
||||
self.combo.setValue(self.storeValue); |
||||
self._setStartValue(keyword); |
||||
assertShowValue(); |
||||
self._populate(); |
||||
self._setStartValue(""); |
||||
}); |
||||
} |
||||
}); |
||||
this.trigger.on(BI.MultiSelectTrigger.EVENT_SEARCHING, function (keywords) { |
||||
var last = BI.last(keywords); |
||||
keywords = BI.initial(keywords || []); |
||||
if (keywords.length > 0) { |
||||
self._joinKeywords(keywords, function () { |
||||
if (BI.isEndWithBlank(last)) { |
||||
self.combo.setValue(self.storeValue); |
||||
assertShowValue(); |
||||
self.combo.populate(); |
||||
self._setStartValue(""); |
||||
} else { |
||||
self.combo.setValue(self.storeValue); |
||||
assertShowValue(); |
||||
} |
||||
}); |
||||
} |
||||
}); |
||||
|
||||
this.trigger.on(BI.MultiSelectTrigger.EVENT_CHANGE, function (value, obj) { |
||||
if (obj instanceof BI.MultiSelectBar) { |
||||
self._joinAll(this.getValue(), function () { |
||||
assertShowValue(); |
||||
}); |
||||
} else { |
||||
self._join(this.getValue(), function () { |
||||
assertShowValue(); |
||||
}); |
||||
} |
||||
}); |
||||
this.trigger.on(BI.MultiSelectTrigger.EVENT_BEFORE_COUNTER_POPUPVIEW, function () { |
||||
this.getCounter().setValue(self.storeValue); |
||||
}); |
||||
this.trigger.on(BI.MultiSelectTrigger.EVENT_COUNTER_CLICK, function () { |
||||
if (!self.combo.isViewVisible()) { |
||||
self.combo.showView(); |
||||
} |
||||
}); |
||||
|
||||
this.combo = BI.createWidget({ |
||||
type: "bi.combo", |
||||
toggle: false, |
||||
el: this.trigger, |
||||
adjustLength: 1, |
||||
popup: { |
||||
type: "bi.search_multi_select_popup_view", |
||||
ref: function () { |
||||
self.popup = this; |
||||
self.trigger.setAdapter(this); |
||||
}, |
||||
listeners: [{ |
||||
eventName: BI.MultiSelectPopupView.EVENT_CHANGE, |
||||
action: function () { |
||||
self.storeValue = this.getValue(); |
||||
self._adjust(function () { |
||||
assertShowValue(); |
||||
}); |
||||
} |
||||
}, { |
||||
eventName: BI.MultiSelectPopupView.EVENT_CLICK_CONFIRM, |
||||
action: function () { |
||||
self._defaultState(); |
||||
} |
||||
}, { |
||||
eventName: BI.MultiSelectPopupView.EVENT_CLICK_CLEAR, |
||||
action: function () { |
||||
self.setValue(); |
||||
self._defaultState(); |
||||
} |
||||
}], |
||||
itemsCreator: BI.bind(self._itemsCreator, this), |
||||
valueFormatter: o.valueFormatter, |
||||
onLoaded: function () { |
||||
BI.nextTick(function () { |
||||
self.combo.adjustWidth(); |
||||
self.combo.adjustHeight(); |
||||
self.trigger.getCounter().adjustView(); |
||||
self.trigger.getSearcher().adjustView(); |
||||
}); |
||||
} |
||||
}, |
||||
value: o.value, |
||||
hideChecker: function (e) { |
||||
return triggerBtn.element.find(e.target).length === 0; |
||||
} |
||||
}); |
||||
|
||||
this.combo.on(BI.Combo.EVENT_BEFORE_HIDEVIEW, function () { |
||||
self.element.removeClass("combo-show"); |
||||
}); |
||||
|
||||
this.combo.on(BI.Combo.EVENT_BEFORE_POPUPVIEW, function () { |
||||
self.element.removeClass("combo-show").addClass("combo-show"); |
||||
this.setValue(self.storeValue); |
||||
BI.nextTick(function () { |
||||
self._populate(); |
||||
}); |
||||
}); |
||||
// 当退出的时候如果还在处理请求,则等请求结束后再对外发确定事件
|
||||
this.wants2Quit = false; |
||||
this.combo.on(BI.Combo.EVENT_AFTER_HIDEVIEW, function () { |
||||
// important:关闭弹出时又可能没有退出编辑状态
|
||||
self.trigger.stopEditing(); |
||||
if (self.requesting === true) { |
||||
self.wants2Quit = true; |
||||
} else { |
||||
self.fireEvent(BI.SearchMultiTextValueCombo.EVENT_CONFIRM); |
||||
} |
||||
}); |
||||
|
||||
var triggerBtn = BI.createWidget({ |
||||
type: "bi.trigger_icon_button", |
||||
width: o.height, |
||||
height: o.height, |
||||
cls: "multi-select-trigger-icon-button" |
||||
}); |
||||
triggerBtn.on(BI.TriggerIconButton.EVENT_CHANGE, function () { |
||||
self.trigger.getCounter().hideView(); |
||||
if (self.combo.isViewVisible()) { |
||||
self.combo.hideView(); |
||||
} else { |
||||
self.combo.showView(); |
||||
} |
||||
}); |
||||
BI.createWidget({ |
||||
type: "bi.absolute", |
||||
element: this, |
||||
items: [{ |
||||
el: this.combo, |
||||
left: 0, |
||||
right: 0, |
||||
top: 0, |
||||
bottom: 0 |
||||
}, { |
||||
el: triggerBtn, |
||||
right: 0, |
||||
top: 0, |
||||
bottom: 0 |
||||
}] |
||||
}); |
||||
this._checkError(); |
||||
}, |
||||
|
||||
_defaultState: function () { |
||||
this.trigger.stopEditing(); |
||||
this.combo.hideView(); |
||||
}, |
||||
|
||||
_assertValue: function (val) { |
||||
var o = this.options; |
||||
val || (val = {}); |
||||
val.type || (val.type = BI.Selection.Multi); |
||||
val.value || (val.value = []); |
||||
BI.remove(val.value, function (idx, value) { |
||||
return !BI.contains(BI.map(o.items, "value"), value); |
||||
}); |
||||
}, |
||||
|
||||
_makeMap: function (values) { |
||||
return BI.makeObject(values || []); |
||||
}, |
||||
|
||||
_joinKeywords: function (keywords, callback) { |
||||
var self = this, o = this.options; |
||||
this._assertValue(this.storeValue); |
||||
this.requesting = true; |
||||
this._itemsCreator({ |
||||
type: BI.SearchMultiTextValueCombo.REQ_GET_ALL_DATA, |
||||
keywords: keywords |
||||
}, function (ob) { |
||||
var values = BI.map(ob.items, "value"); |
||||
digest(values); |
||||
}); |
||||
|
||||
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); |
||||
this.requesting = true; |
||||
this._itemsCreator({ |
||||
type: BI.SearchMultiTextValueCombo.REQ_GET_ALL_DATA, |
||||
keywords: [this.trigger.getKey()] |
||||
}, function (ob) { |
||||
var items = BI.map(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) { |
||||
this._itemsCreator({ |
||||
type: BI.SearchMultiTextValueCombo.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: [] |
||||
}; |
||||
} |
||||
self._updateAllValue(); |
||||
self._checkError(); |
||||
if (self.wants2Quit === true) { |
||||
self.fireEvent(BI.SearchMultiTextValueCombo.EVENT_CONFIRM); |
||||
self.wants2Quit = false; |
||||
} |
||||
self.requesting = false; |
||||
} |
||||
}, |
||||
|
||||
_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.popup.setStartValue(value); |
||||
}, |
||||
|
||||
_getItemsByTimes: function (items, times) { |
||||
var res = []; |
||||
for (var i = (times - 1) * 10; items[i] && i < times * 10; i++) { |
||||
res.push(items[i]); |
||||
} |
||||
return res; |
||||
}, |
||||
|
||||
_hasNextByTimes: function (items, times) { |
||||
return times * 10 < items.length; |
||||
}, |
||||
|
||||
_itemsCreator: function (options, callback) { |
||||
var self = this, o = this.options; |
||||
var items = o.items; |
||||
var keywords = (options.keywords || []).slice(); |
||||
if (options.keyword) { |
||||
keywords.push(options.keyword); |
||||
} |
||||
BI.each(keywords, function (i, kw) { |
||||
var search = BI.Func.getSearchResult(items, kw); |
||||
items = search.match.concat(search.find); |
||||
}); |
||||
if (options.selectedValues) {// 过滤
|
||||
var filter = BI.makeObject(options.selectedValues, true); |
||||
items = BI.filter(items, function (i, ob) { |
||||
return !filter[ob.value]; |
||||
}); |
||||
} |
||||
if (options.type == BI.MultiSelectCombo.REQ_GET_ALL_DATA) { |
||||
callback({ |
||||
items: items |
||||
}); |
||||
return; |
||||
} |
||||
if (options.type == BI.MultiSelectCombo.REQ_GET_DATA_LENGTH) { |
||||
callback({count: items.length}); |
||||
return; |
||||
} |
||||
callback({ |
||||
items: self._getItemsByTimes(items, options.times), |
||||
hasNext: self._hasNextByTimes(items, options.times) |
||||
}); |
||||
}, |
||||
|
||||
_checkError: function () { |
||||
var v = this.storeValue.value || []; |
||||
if(BI.isNotEmptyArray(v)) { |
||||
v = BI.isArray(v) ? v : [v]; |
||||
var result = BI.find(this.allValue, function (idx, value) { |
||||
return !BI.contains(v, value); |
||||
}); |
||||
if (BI.isNull(result)) { |
||||
this.element.removeClass("combo-error"); |
||||
} else { |
||||
this.element.addClass("combo-error"); |
||||
} |
||||
} else { |
||||
v.length === this.allValue.length ? this.element.removeClass("combo-error") : this.element.addClass("combo-error"); |
||||
} |
||||
}, |
||||
|
||||
_updateAllValue: function () { |
||||
this.storeValue = this.storeValue || {}; |
||||
this.allValue = BI.deepClone(this.storeValue.value || []); |
||||
}, |
||||
|
||||
setValue: function (v) { |
||||
this.storeValue = v || {}; |
||||
this._updateAllValue(); |
||||
this._assertValue(this.storeValue); |
||||
this.combo.setValue(this.storeValue); |
||||
this._checkError(); |
||||
}, |
||||
|
||||
getValue: function () { |
||||
return BI.deepClone(this.storeValue); |
||||
}, |
||||
|
||||
_populate: function () { |
||||
this._count = null; |
||||
this.combo.populate(); |
||||
}, |
||||
|
||||
populate: function (items) { |
||||
this.options.items = items; |
||||
this._populate(); |
||||
} |
||||
}); |
||||
|
||||
BI.extend(BI.SearchMultiTextValueCombo, { |
||||
REQ_GET_DATA_LENGTH: 1, |
||||
REQ_GET_ALL_DATA: -1 |
||||
}); |
||||
|
||||
BI.SearchMultiTextValueCombo.EVENT_CONFIRM = "EVENT_CONFIRM"; |
||||
|
||||
BI.shortcut("bi.search_multi_text_value_combo", BI.SearchMultiTextValueCombo); |
@ -0,0 +1,151 @@
|
||||
BI.SearchMultiSelectTrigger = BI.inherit(BI.Trigger, { |
||||
|
||||
constants: { |
||||
height: 14, |
||||
rgap: 4, |
||||
lgap: 4 |
||||
}, |
||||
|
||||
_defaultConfig: function () { |
||||
return BI.extend(BI.SearchMultiSelectTrigger.superclass._defaultConfig.apply(this, arguments), { |
||||
baseCls: "bi-multi-select-trigger bi-border", |
||||
itemsCreator: BI.emptyFn, |
||||
valueFormatter: BI.emptyFn, |
||||
searcher: {}, |
||||
switcher: {}, |
||||
|
||||
adapter: null, |
||||
masker: {} |
||||
}); |
||||
}, |
||||
|
||||
_init: function () { |
||||
BI.SearchMultiSelectTrigger.superclass._init.apply(this, arguments); |
||||
|
||||
var self = this, o = this.options; |
||||
if (o.height) { |
||||
this.setHeight(o.height - 2); |
||||
} |
||||
|
||||
this.searcher = BI.createWidget(o.searcher, { |
||||
type: "bi.search_multi_select_searcher", |
||||
height: o.height, |
||||
itemsCreator: o.itemsCreator, |
||||
valueFormatter: o.valueFormatter, |
||||
allValueGetter: o.allValueGetter, |
||||
popup: {}, |
||||
adapter: o.adapter, |
||||
masker: o.masker, |
||||
value: o.value, |
||||
text: o.text |
||||
}); |
||||
this.searcher.on(BI.MultiSelectSearcher.EVENT_START, function () { |
||||
self.fireEvent(BI.SearchMultiSelectTrigger.EVENT_START); |
||||
}); |
||||
this.searcher.on(BI.MultiSelectSearcher.EVENT_PAUSE, function () { |
||||
self.fireEvent(BI.SearchMultiSelectTrigger.EVENT_PAUSE); |
||||
}); |
||||
this.searcher.on(BI.MultiSelectSearcher.EVENT_SEARCHING, function () { |
||||
self.fireEvent(BI.SearchMultiSelectTrigger.EVENT_SEARCHING, arguments); |
||||
}); |
||||
this.searcher.on(BI.MultiSelectSearcher.EVENT_STOP, function () { |
||||
self.fireEvent(BI.SearchMultiSelectTrigger.EVENT_STOP); |
||||
}); |
||||
this.searcher.on(BI.MultiSelectSearcher.EVENT_CHANGE, function () { |
||||
self.fireEvent(BI.SearchMultiSelectTrigger.EVENT_CHANGE, arguments); |
||||
}); |
||||
this.numberCounter = BI.createWidget(o.switcher, { |
||||
type: "bi.multi_select_check_selected_switcher", |
||||
valueFormatter: o.valueFormatter, |
||||
itemsCreator: o.itemsCreator, |
||||
adapter: o.adapter, |
||||
masker: o.masker, |
||||
value: o.value |
||||
}); |
||||
this.numberCounter.on(BI.MultiSelectCheckSelectedSwitcher.EVENT_TRIGGER_CHANGE, function () { |
||||
self.fireEvent(BI.SearchMultiSelectTrigger.EVENT_COUNTER_CLICK); |
||||
}); |
||||
this.numberCounter.on(BI.MultiSelectCheckSelectedSwitcher.EVENT_BEFORE_POPUPVIEW, function () { |
||||
self.fireEvent(BI.SearchMultiSelectTrigger.EVENT_BEFORE_COUNTER_POPUPVIEW); |
||||
}); |
||||
|
||||
var wrapNumberCounter = BI.createWidget({ |
||||
type: "bi.right_vertical_adapt", |
||||
hgap: 4, |
||||
items: [{ |
||||
el: this.numberCounter |
||||
}] |
||||
}); |
||||
|
||||
var wrapper = BI.createWidget({ |
||||
type: "bi.htape", |
||||
element: this, |
||||
items: [ |
||||
{ |
||||
el: this.searcher, |
||||
width: "fill" |
||||
}, { |
||||
el: wrapNumberCounter, |
||||
width: 0 |
||||
}, { |
||||
el: BI.createWidget(), |
||||
width: 24 |
||||
}] |
||||
}); |
||||
|
||||
this.numberCounter.on(BI.Events.VIEW, function (b) { |
||||
BI.nextTick(function () {// 自动调整宽度
|
||||
wrapper.attr("items")[1].width = (b === true ? self.numberCounter.element.outerWidth() + 8 : 0); |
||||
wrapper.resize(); |
||||
}); |
||||
}); |
||||
|
||||
this.element.click(function (e) { |
||||
if (self.element.__isMouseInBounds__(e) && !self.numberCounter.element.__isMouseInBounds__(e)) { |
||||
self.numberCounter.hideView(); |
||||
} |
||||
}); |
||||
}, |
||||
|
||||
getCounter: function () { |
||||
return this.numberCounter; |
||||
}, |
||||
|
||||
getSearcher: function () { |
||||
return this.searcher; |
||||
}, |
||||
|
||||
stopEditing: function () { |
||||
this.searcher.stopSearch(); |
||||
this.numberCounter.hideView(); |
||||
}, |
||||
|
||||
setAdapter: function (adapter) { |
||||
this.searcher.setAdapter(adapter); |
||||
this.numberCounter.setAdapter(adapter); |
||||
}, |
||||
|
||||
setValue: function (ob) { |
||||
this.searcher.setValue(ob); |
||||
this.numberCounter.setValue(ob); |
||||
}, |
||||
|
||||
getKey: function () { |
||||
return this.searcher.getKey(); |
||||
}, |
||||
|
||||
getValue: function () { |
||||
return this.searcher.getValue(); |
||||
} |
||||
}); |
||||
|
||||
BI.SearchMultiSelectTrigger.EVENT_TRIGGER_CLICK = "EVENT_TRIGGER_CLICK"; |
||||
BI.SearchMultiSelectTrigger.EVENT_COUNTER_CLICK = "EVENT_COUNTER_CLICK"; |
||||
BI.SearchMultiSelectTrigger.EVENT_CHANGE = "EVENT_CHANGE"; |
||||
BI.SearchMultiSelectTrigger.EVENT_START = "EVENT_START"; |
||||
BI.SearchMultiSelectTrigger.EVENT_STOP = "EVENT_STOP"; |
||||
BI.SearchMultiSelectTrigger.EVENT_PAUSE = "EVENT_PAUSE"; |
||||
BI.SearchMultiSelectTrigger.EVENT_SEARCHING = "EVENT_SEARCHING"; |
||||
BI.SearchMultiSelectTrigger.EVENT_BEFORE_COUNTER_POPUPVIEW = "EVENT_BEFORE_COUNTER_POPUPVIEW"; |
||||
|
||||
BI.shortcut("bi.search_multi_select_trigger", BI.SearchMultiSelectTrigger); |
@ -0,0 +1,173 @@
|
||||
/** |
||||
* 多选加载数据面板 |
||||
* Created by guy on 15/11/2. |
||||
* @class BI.SearchMultiSelectLoader |
||||
* @extends Widget |
||||
*/ |
||||
BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { |
||||
|
||||
_defaultConfig: function () { |
||||
return BI.extend(BI.SearchMultiSelectLoader.superclass._defaultConfig.apply(this, arguments), { |
||||
baseCls: "bi-multi-select-loader", |
||||
logic: { |
||||
dynamic: true |
||||
}, |
||||
el: { |
||||
height: 400 |
||||
}, |
||||
valueFormatter: BI.emptyFn, |
||||
itemsCreator: BI.emptyFn, |
||||
onLoaded: BI.emptyFn |
||||
}); |
||||
}, |
||||
|
||||
_init: function () { |
||||
BI.SearchMultiSelectLoader.superclass._init.apply(this, arguments); |
||||
|
||||
var self = this, opts = this.options; |
||||
var hasNext = false; |
||||
|
||||
this.storeValue = opts.value || {}; |
||||
this._assertValue(this.storeValue); |
||||
|
||||
this.button_group = BI.createWidget({ |
||||
type: "bi.select_list", |
||||
element: this, |
||||
logic: opts.logic, |
||||
el: BI.extend({ |
||||
onLoaded: opts.onLoaded, |
||||
el: { |
||||
type: "bi.loader", |
||||
isDefaultInit: false, |
||||
logic: { |
||||
dynamic: true, |
||||
scrolly: true |
||||
}, |
||||
el: { |
||||
chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI, |
||||
behaviors: { |
||||
redmark: function () { |
||||
return true; |
||||
} |
||||
}, |
||||
layouts: [{ |
||||
type: "bi.vertical" |
||||
}] |
||||
} |
||||
} |
||||
}, opts.el), |
||||
itemsCreator: function (op, callback) { |
||||
var startValue = self._startValue; |
||||
self.storeValue && (op = BI.extend(op || {}, { |
||||
selectedValues: BI.isKey(startValue) && self.storeValue.type === BI.Selection.Multi |
||||
? self.storeValue.value.concat(startValue) : self.storeValue.value |
||||
})); |
||||
opts.itemsCreator(op, function (ob) { |
||||
hasNext = ob.hasNext; |
||||
var firstItems = []; |
||||
if (op.times === 1 && self.storeValue) { |
||||
var json = BI.map(self.storeValue.value, function (i, v) { |
||||
var txt = opts.valueFormatter(v) || v; |
||||
return { |
||||
text: txt, |
||||
value: v, |
||||
title: txt, |
||||
selected: self.storeValue.type === BI.Selection.Multi |
||||
}; |
||||
}); |
||||
if (BI.isKey(self._startValue) && !self.storeValue.value.contains(self._startValue)) { |
||||
var txt = opts.valueFormatter(startValue) || startValue; |
||||
json.unshift({ |
||||
text: txt, |
||||
value: startValue, |
||||
title: txt, |
||||
selected: true |
||||
}); |
||||
} |
||||
firstItems = self._createItems(json); |
||||
} |
||||
callback(firstItems.concat(self._createItems(ob.items)), ob.keyword || ""); |
||||
if (op.times === 1 && self.storeValue) { |
||||
BI.isKey(startValue) && self.storeValue.value[self.storeValue.type === BI.Selection.All ? "remove" : "pushDistinct"](startValue); |
||||
self.setValue(self.storeValue); |
||||
} |
||||
(op.times === 1) && self._scrollToTop(); |
||||
}); |
||||
}, |
||||
hasNext: function () { |
||||
return hasNext; |
||||
}, |
||||
value: this.storeValue |
||||
}); |
||||
this.button_group.on(BI.Controller.EVENT_CHANGE, function () { |
||||
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
||||
}); |
||||
this.button_group.on(BI.SelectList.EVENT_CHANGE, function () { |
||||
self.fireEvent(BI.SearchMultiSelectLoader.EVENT_CHANGE, arguments); |
||||
}); |
||||
}, |
||||
|
||||
_createItems: function (items) { |
||||
return BI.createItems(items, { |
||||
type: "bi.multi_select_item", |
||||
logic: this.options.logic, |
||||
height: 24, |
||||
selected: this.isAllSelected() |
||||
}); |
||||
}, |
||||
|
||||
_scrollToTop: function () { |
||||
var self = this; |
||||
BI.delay(function () { |
||||
self.button_group.element.scrollTop(0); |
||||
}, 30); |
||||
}, |
||||
|
||||
isAllSelected: function () { |
||||
return this.button_group.isAllSelected(); |
||||
}, |
||||
|
||||
_assertValue: function (val) { |
||||
val || (val = {}); |
||||
val.type || (val.type = BI.Selection.Multi); |
||||
val.value || (val.value = []); |
||||
}, |
||||
|
||||
setStartValue: function (v) { |
||||
this._startValue = v; |
||||
}, |
||||
|
||||
setValue: function (v) { |
||||
this.storeValue = v || {}; |
||||
this._assertValue(this.storeValue); |
||||
this.button_group.setValue(this.storeValue); |
||||
}, |
||||
|
||||
getValue: function () { |
||||
return this.button_group.getValue(); |
||||
}, |
||||
|
||||
getAllButtons: function () { |
||||
return this.button_group.getAllButtons(); |
||||
}, |
||||
|
||||
empty: function () { |
||||
this.button_group.empty(); |
||||
}, |
||||
|
||||
populate: function (items) { |
||||
arguments[0] = this._createItems(items); |
||||
this.button_group.populate.apply(this.button_group, arguments); |
||||
}, |
||||
|
||||
resetHeight: function (h) { |
||||
this.button_group.resetHeight(h); |
||||
}, |
||||
|
||||
resetWidth: function (w) { |
||||
this.button_group.resetWidth(w); |
||||
} |
||||
}); |
||||
|
||||
BI.SearchMultiSelectLoader.EVENT_CHANGE = "EVENT_CHANGE"; |
||||
BI.shortcut("bi.search_multi_select_loader", BI.SearchMultiSelectLoader); |
@ -0,0 +1,88 @@
|
||||
BI.SearchMultiSelectPopupView = BI.inherit(BI.Widget, { |
||||
|
||||
_defaultConfig: function () { |
||||
return BI.extend(BI.SearchMultiSelectPopupView.superclass._defaultConfig.apply(this, arguments), { |
||||
baseCls: "bi-multi-select-popup-view", |
||||
maxWidth: "auto", |
||||
minWidth: 135, |
||||
maxHeight: 400, |
||||
valueFormatter: BI.emptyFn, |
||||
itemsCreator: BI.emptyFn, |
||||
onLoaded: BI.emptyFn |
||||
}); |
||||
}, |
||||
|
||||
_init: function () { |
||||
BI.SearchMultiSelectPopupView.superclass._init.apply(this, arguments); |
||||
var self = this, opts = this.options; |
||||
|
||||
this.loader = BI.createWidget({ |
||||
type: "bi.search_multi_select_loader", |
||||
itemsCreator: opts.itemsCreator, |
||||
valueFormatter: opts.valueFormatter, |
||||
onLoaded: opts.onLoaded, |
||||
value: opts.value |
||||
}); |
||||
|
||||
this.popupView = BI.createWidget({ |
||||
type: "bi.multi_popup_view", |
||||
stopPropagation: false, |
||||
maxWidth: opts.maxWidth, |
||||
minWidth: opts.minWidth, |
||||
maxHeight: opts.maxHeight, |
||||
element: this, |
||||
buttons: [BI.i18nText("BI-Basic_Clears"), BI.i18nText("BI-Basic_Sure")], |
||||
el: this.loader, |
||||
value: opts.value |
||||
}); |
||||
|
||||
this.popupView.on(BI.MultiPopupView.EVENT_CHANGE, function () { |
||||
self.fireEvent(BI.SearchMultiSelectPopupView.EVENT_CHANGE); |
||||
}); |
||||
this.popupView.on(BI.MultiPopupView.EVENT_CLICK_TOOLBAR_BUTTON, function (index) { |
||||
switch (index) { |
||||
case 0: |
||||
self.fireEvent(BI.SearchMultiSelectPopupView.EVENT_CLICK_CLEAR); |
||||
break; |
||||
case 1: |
||||
self.fireEvent(BI.SearchMultiSelectPopupView.EVENT_CLICK_CONFIRM); |
||||
break; |
||||
} |
||||
}); |
||||
}, |
||||
|
||||
isAllSelected: function () { |
||||
return this.loader.isAllSelected(); |
||||
}, |
||||
|
||||
setStartValue: function (v) { |
||||
this.loader.setStartValue(v); |
||||
}, |
||||
|
||||
setValue: function (v) { |
||||
this.popupView.setValue(v); |
||||
}, |
||||
|
||||
getValue: function () { |
||||
return this.popupView.getValue(); |
||||
}, |
||||
|
||||
populate: function (items) { |
||||
this.popupView.populate.apply(this.popupView, arguments); |
||||
}, |
||||
|
||||
resetHeight: function (h) { |
||||
this.popupView.resetHeight(h); |
||||
}, |
||||
|
||||
resetWidth: function (w) { |
||||
this.popupView.resetWidth(w); |
||||
} |
||||
}); |
||||
|
||||
BI.SearchMultiSelectPopupView.EVENT_CHANGE = "EVENT_CHANGE"; |
||||
BI.SearchMultiSelectPopupView.EVENT_CLICK_CONFIRM = "EVENT_CLICK_CONFIRM"; |
||||
BI.SearchMultiSelectPopupView.EVENT_CLICK_CLEAR = "EVENT_CLICK_CLEAR"; |
||||
|
||||
|
||||
BI.shortcut("bi.search_multi_select_popup_view", BI.SearchMultiSelectPopupView); |
@ -0,0 +1,169 @@
|
||||
BI.SearchMultiSelectSearcher = BI.inherit(BI.Widget, { |
||||
|
||||
_defaultConfig: function () { |
||||
return BI.extend(BI.SearchMultiSelectSearcher.superclass._defaultConfig.apply(this, arguments), { |
||||
baseCls: "bi-multi-select-searcher", |
||||
itemsCreator: BI.emptyFn, |
||||
el: {}, |
||||
popup: {}, |
||||
valueFormatter: BI.emptyFn, |
||||
adapter: null, |
||||
masker: {} |
||||
}); |
||||
}, |
||||
|
||||
_init: function () { |
||||
BI.SearchMultiSelectSearcher.superclass._init.apply(this, arguments); |
||||
var self = this, o = this.options; |
||||
this.editor = BI.createWidget(o.el, { |
||||
type: "bi.multi_select_editor", |
||||
height: o.height, |
||||
text: o.text |
||||
}); |
||||
|
||||
this.searcher = BI.createWidget({ |
||||
type: "bi.searcher", |
||||
element: this, |
||||
height: o.height, |
||||
isAutoSearch: false, |
||||
isAutoSync: false, |
||||
onSearch: function (op, callback) { |
||||
callback(); |
||||
}, |
||||
el: this.editor, |
||||
|
||||
popup: BI.extend({ |
||||
type: "bi.multi_select_search_pane", |
||||
valueFormatter: o.valueFormatter, |
||||
keywordGetter: function () { |
||||
return self.editor.getValue(); |
||||
}, |
||||
itemsCreator: function (op, callback) { |
||||
var keyword = self.editor.getValue(); |
||||
op.keywords = [keyword]; |
||||
this.setKeyword(keyword); |
||||
o.itemsCreator(op, callback); |
||||
}, |
||||
value: o.value |
||||
}, o.popup), |
||||
|
||||
adapter: o.adapter, |
||||
masker: o.masker |
||||
}); |
||||
this.searcher.on(BI.Searcher.EVENT_START, function () { |
||||
self.fireEvent(BI.SearchMultiSelectSearcher.EVENT_START); |
||||
}); |
||||
this.searcher.on(BI.Searcher.EVENT_PAUSE, function () { |
||||
if (this.hasMatched()) { |
||||
|
||||
} |
||||
self.fireEvent(BI.SearchMultiSelectSearcher.EVENT_PAUSE); |
||||
}); |
||||
this.searcher.on(BI.Searcher.EVENT_STOP, function () { |
||||
self.fireEvent(BI.SearchMultiSelectSearcher.EVENT_STOP); |
||||
}); |
||||
this.searcher.on(BI.Searcher.EVENT_CHANGE, function () { |
||||
self.fireEvent(BI.SearchMultiSelectSearcher.EVENT_CHANGE, arguments); |
||||
}); |
||||
this.searcher.on(BI.Searcher.EVENT_SEARCHING, function () { |
||||
var keywords = this.getKeywords(); |
||||
self.fireEvent(BI.SearchMultiSelectSearcher.EVENT_SEARCHING, keywords); |
||||
}); |
||||
if(BI.isNotNull(o.value)) { |
||||
this.setState(o.value); |
||||
} |
||||
}, |
||||
|
||||
adjustView: function () { |
||||
this.searcher.adjustView(); |
||||
}, |
||||
|
||||
isSearching: function () { |
||||
return this.searcher.isSearching(); |
||||
}, |
||||
|
||||
stopSearch: function () { |
||||
this.searcher.stopSearch(); |
||||
}, |
||||
|
||||
getKeyword: function () { |
||||
return this.editor.getValue(); |
||||
}, |
||||
|
||||
hasMatched: function () { |
||||
return this.searcher.hasMatched(); |
||||
}, |
||||
|
||||
hasChecked: function () { |
||||
return this.searcher.getView() && this.searcher.getView().hasChecked(); |
||||
}, |
||||
|
||||
setAdapter: function (adapter) { |
||||
this.searcher.setAdapter(adapter); |
||||
}, |
||||
|
||||
setState: function (obj) { |
||||
var o = this.options; |
||||
var ob = {}; |
||||
ob.type = obj.type; |
||||
ob.value = o.allValueGetter() || []; |
||||
if (ob.type === BI.Selection.All) { |
||||
if (ob.value.length === 0) { |
||||
this.editor.setState(BI.Selection.All); |
||||
} else if (BI.size(ob.assist) <= 20) { |
||||
var state = ""; |
||||
BI.each(ob.assist, function (i, v) { |
||||
if (i === 0) { |
||||
state += "" + (o.valueFormatter(v + "") || v); |
||||
} else { |
||||
state += "," + (o.valueFormatter(v + "") || v); |
||||
} |
||||
}); |
||||
this.editor.setState(state); |
||||
} else { |
||||
this.editor.setState(BI.Selection.Multi); |
||||
} |
||||
} else { |
||||
if (ob.value.length === 0) { |
||||
this.editor.setState(BI.Selection.None); |
||||
} else if (BI.size(ob.value) <= 20) { |
||||
var state = ""; |
||||
BI.each(ob.value, function (i, v) { |
||||
if (i === 0) { |
||||
state += "" + (o.valueFormatter(v + "") || v); |
||||
} else { |
||||
state += "," + (o.valueFormatter(v + "") || v); |
||||
} |
||||
}); |
||||
this.editor.setState(state); |
||||
} else { |
||||
this.editor.setState(BI.Selection.Multi); |
||||
} |
||||
} |
||||
}, |
||||
|
||||
setValue: function (ob) { |
||||
this.setState(ob); |
||||
this.searcher.setValue(ob); |
||||
}, |
||||
|
||||
getKey: function () { |
||||
return this.editor.getValue(); |
||||
}, |
||||
|
||||
getValue: function () { |
||||
return this.searcher.getValue(); |
||||
}, |
||||
|
||||
populate: function (items) { |
||||
this.searcher.populate.apply(this.searcher, arguments); |
||||
} |
||||
}); |
||||
|
||||
BI.SearchMultiSelectSearcher.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW"; |
||||
BI.SearchMultiSelectSearcher.EVENT_CHANGE = "EVENT_CHANGE"; |
||||
BI.SearchMultiSelectSearcher.EVENT_START = "EVENT_START"; |
||||
BI.SearchMultiSelectSearcher.EVENT_STOP = "EVENT_STOP"; |
||||
BI.SearchMultiSelectSearcher.EVENT_PAUSE = "EVENT_PAUSE"; |
||||
BI.SearchMultiSelectSearcher.EVENT_SEARCHING = "EVENT_SEARCHING"; |
||||
BI.shortcut("bi.search_multi_select_searcher", BI.SearchMultiSelectSearcher); |