guy
7 years ago
9 changed files with 1837 additions and 157 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,90 @@ |
|||||||
|
/** |
||||||
|
* Created by roy on 15/8/14. |
||||||
|
*/ |
||||||
|
BI.DownListCombo = BI.inherit(BI.Widget, { |
||||||
|
_defaultConfig: function () { |
||||||
|
return BI.extend(BI.DownListCombo.superclass._defaultConfig.apply(this, arguments), { |
||||||
|
baseCls: "bi-multilayer-down-list-combo", |
||||||
|
height: 24, |
||||||
|
items: [], |
||||||
|
adjustLength: 0, |
||||||
|
direction: "bottom", |
||||||
|
trigger: "click", |
||||||
|
container: null, |
||||||
|
stopPropagation: false, |
||||||
|
el: {} |
||||||
|
}); |
||||||
|
}, |
||||||
|
|
||||||
|
_init: function () { |
||||||
|
BI.DownListCombo.superclass._init.apply(this, arguments); |
||||||
|
var self = this, o = this.options; |
||||||
|
this.popupview = BI.createWidget({ |
||||||
|
type: "bi.multi_layer_down_list_popup", |
||||||
|
items: o.items, |
||||||
|
chooseType: o.chooseType, |
||||||
|
value: o.value |
||||||
|
}); |
||||||
|
|
||||||
|
this.popupview.on(BI.DownListPopup.EVENT_CHANGE, function (value) { |
||||||
|
self.fireEvent(BI.DownListCombo.EVENT_CHANGE, value); |
||||||
|
self.downlistcombo.hideView(); |
||||||
|
}); |
||||||
|
|
||||||
|
this.popupview.on(BI.DownListPopup.EVENT_SON_VALUE_CHANGE, function (value, fatherValue) { |
||||||
|
self.fireEvent(BI.DownListCombo.EVENT_SON_VALUE_CHANGE, value, fatherValue); |
||||||
|
self.downlistcombo.hideView(); |
||||||
|
}); |
||||||
|
|
||||||
|
|
||||||
|
this.downlistcombo = BI.createWidget({ |
||||||
|
element: this, |
||||||
|
type: "bi.combo", |
||||||
|
trigger: o.trigger, |
||||||
|
isNeedAdjustWidth: false, |
||||||
|
container: o.container, |
||||||
|
adjustLength: o.adjustLength, |
||||||
|
direction: o.direction, |
||||||
|
stopPropagation: o.stopPropagation, |
||||||
|
el: BI.createWidget(o.el, { |
||||||
|
type: "bi.icon_trigger", |
||||||
|
extraCls: o.iconCls ? o.iconCls : "pull-down-font", |
||||||
|
width: o.width, |
||||||
|
height: o.height |
||||||
|
}), |
||||||
|
popup: { |
||||||
|
el: this.popupview, |
||||||
|
stopPropagation: true, |
||||||
|
maxHeight: 1000 |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
this.downlistcombo.on(BI.Combo.EVENT_BEFORE_POPUPVIEW, function () { |
||||||
|
self.fireEvent(BI.DownListCombo.EVENT_BEFORE_POPUPVIEW); |
||||||
|
}); |
||||||
|
}, |
||||||
|
|
||||||
|
hideView: function () { |
||||||
|
this.downlistcombo.hideView(); |
||||||
|
}, |
||||||
|
|
||||||
|
showView: function () { |
||||||
|
this.downlistcombo.showView(); |
||||||
|
}, |
||||||
|
|
||||||
|
populate: function (items) { |
||||||
|
this.popupview.populate(items); |
||||||
|
}, |
||||||
|
|
||||||
|
setValue: function (v) { |
||||||
|
this.popupview.setValue(v); |
||||||
|
}, |
||||||
|
getValue: function () { |
||||||
|
return this.popupview.getValue(); |
||||||
|
} |
||||||
|
}); |
||||||
|
BI.DownListCombo.EVENT_CHANGE = "EVENT_CHANGE"; |
||||||
|
BI.DownListCombo.EVENT_SON_VALUE_CHANGE = "EVENT_SON_VALUE_CHANGE"; |
||||||
|
BI.DownListCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW"; |
||||||
|
|
||||||
|
BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo); |
@ -0,0 +1,324 @@ |
|||||||
|
/** |
||||||
|
* Created by roy on 15/9/8. |
||||||
|
* 处理popup中的item分组样式 |
||||||
|
* 一个item分组中的成员大于一时,该分组设置为单选,并且默认状态第一个成员设置为已选择项 |
||||||
|
*/ |
||||||
|
BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { |
||||||
|
constants: { |
||||||
|
nextIcon: "pull-right-e-font", |
||||||
|
height: 25, |
||||||
|
iconHeight: 12, |
||||||
|
iconWidth: 12, |
||||||
|
hgap: 0, |
||||||
|
vgap: 0, |
||||||
|
border: 1 |
||||||
|
}, |
||||||
|
_defaultConfig: function () { |
||||||
|
var conf = BI.MultiLayerDownListPopup.superclass._defaultConfig.apply(this, arguments); |
||||||
|
return BI.extend(conf, { |
||||||
|
baseCls: "bi-down-list-popup", |
||||||
|
items: [], |
||||||
|
chooseType: BI.Selection.Multi |
||||||
|
}); |
||||||
|
}, |
||||||
|
_init: function () { |
||||||
|
BI.MultiLayerDownListPopup.superclass._init.apply(this, arguments); |
||||||
|
this.singleValues = []; |
||||||
|
this.childValueMap = {}; |
||||||
|
this.fatherValueMap = {}; |
||||||
|
var self = this, o = this.options, children = this._createPopupItems(o.items); |
||||||
|
this.popup = BI.createWidget({ |
||||||
|
type: "bi.button_tree", |
||||||
|
items: BI.createItems(children, |
||||||
|
{}, { |
||||||
|
adjustLength: -2 |
||||||
|
} |
||||||
|
), |
||||||
|
layouts: [{ |
||||||
|
type: "bi.vertical", |
||||||
|
hgap: this.constants.hgap, |
||||||
|
vgap: this.constants.vgap |
||||||
|
}], |
||||||
|
value: this._digest(o.value), |
||||||
|
chooseType: o.chooseType |
||||||
|
}); |
||||||
|
|
||||||
|
this.popup.on(BI.ButtonTree.EVENT_CHANGE, function (value, object) { |
||||||
|
var changedValue = value; |
||||||
|
if (BI.isNotNull(self.childValueMap[value])) { |
||||||
|
changedValue = self.childValueMap[value]; |
||||||
|
self.fireEvent(BI.MultiLayerDownListPopup.EVENT_SON_VALUE_CHANGE, changedValue, self.fatherValueMap[value]); |
||||||
|
} else { |
||||||
|
self.fireEvent(BI.MultiLayerDownListPopup.EVENT_CHANGE, changedValue, object); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
if (!self.singleValues.contains(changedValue)) { |
||||||
|
var item = self.getValue(); |
||||||
|
var result = []; |
||||||
|
BI.each(item, function (i, valueObject) { |
||||||
|
if (valueObject.value != changedValue) { |
||||||
|
result.push(valueObject); |
||||||
|
} |
||||||
|
}); |
||||||
|
self.setValue(result); |
||||||
|
} |
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
BI.createWidget({ |
||||||
|
type: "bi.vertical", |
||||||
|
element: this, |
||||||
|
items: [this.popup] |
||||||
|
}); |
||||||
|
|
||||||
|
}, |
||||||
|
_createPopupItems: function (items) { |
||||||
|
var self = this, result = []; |
||||||
|
BI.each(items, function (i, it) { |
||||||
|
var item_done = { |
||||||
|
type: "bi.down_list_group", |
||||||
|
items: [] |
||||||
|
}; |
||||||
|
|
||||||
|
BI.each(it, function (i, item) { |
||||||
|
if (BI.isNotEmptyArray(item.children) && !BI.isEmpty(item.el)) { |
||||||
|
item.type = "bi.combo_group"; |
||||||
|
item.cls = "down-list-group"; |
||||||
|
item.trigger = "hover"; |
||||||
|
item.isNeedAdjustWidth = false; |
||||||
|
item.el.title = item.el.title || item.el.text; |
||||||
|
item.el.type = "bi.down_list_group_item"; |
||||||
|
item.el.logic = { |
||||||
|
dynamic: true |
||||||
|
}; |
||||||
|
item.el.height = self.constants.height; |
||||||
|
item.el.iconCls2 = self.constants.nextIcon; |
||||||
|
item.popup = { |
||||||
|
lgap: 4, |
||||||
|
el: { |
||||||
|
type: "bi.button_tree", |
||||||
|
chooseType: 0, |
||||||
|
layouts: [{ |
||||||
|
type: "bi.vertical" |
||||||
|
}] |
||||||
|
|
||||||
|
} |
||||||
|
}; |
||||||
|
item.el.childValues = []; |
||||||
|
BI.each(item.children, function (i, child) { |
||||||
|
child = child.el ? BI.extend(child.el, {children: child.children}) : child; |
||||||
|
var fatherValue = BI.deepClone(item.el.value); |
||||||
|
var childValue = BI.deepClone(child.value); |
||||||
|
self.singleValues.push(child.value); |
||||||
|
child.type = "bi.down_list_item"; |
||||||
|
child.extraCls = " child-down-list-item"; |
||||||
|
child.title = child.title || child.text; |
||||||
|
child.textRgap = 10; |
||||||
|
child.isNeedAdjustWidth = false; |
||||||
|
child.logic = { |
||||||
|
dynamic: true |
||||||
|
}; |
||||||
|
child.father = fatherValue; |
||||||
|
self.fatherValueMap[self._createChildValue(fatherValue, childValue)] = fatherValue; |
||||||
|
self.childValueMap[self._createChildValue(fatherValue, childValue)] = childValue; |
||||||
|
child.value = self._createChildValue(fatherValue, childValue); |
||||||
|
item.el.childValues.push(child.value); |
||||||
|
if (BI.isNotEmptyArray(child.children)) { |
||||||
|
child.type = "bi.down_list_group_item"; |
||||||
|
self._createChildren(child); |
||||||
|
child.height = self.constants.height; |
||||||
|
child.iconCls2 = self.constants.nextIcon; |
||||||
|
item.el.childValues = BI.concat(item.el.childValues, child.childValues); |
||||||
|
} |
||||||
|
}); |
||||||
|
} else { |
||||||
|
item.type = "bi.down_list_item"; |
||||||
|
item.title = item.title || item.text; |
||||||
|
item.textRgap = 10; |
||||||
|
item.isNeedAdjustWidth = false; |
||||||
|
item.logic = { |
||||||
|
dynamic: true |
||||||
|
}; |
||||||
|
} |
||||||
|
var el_done = {}; |
||||||
|
el_done.el = item; |
||||||
|
item_done.items.push(el_done); |
||||||
|
}); |
||||||
|
if (self._isGroup(item_done.items)) { |
||||||
|
BI.each(item_done.items, function (i, item) { |
||||||
|
self.singleValues.push(item.el.value); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
result.push(item_done); |
||||||
|
if (self._needSpliter(i, items.length)) { |
||||||
|
var spliter_container = BI.createWidget({ |
||||||
|
type: "bi.vertical", |
||||||
|
items: [{ |
||||||
|
el: { |
||||||
|
type: "bi.layout", |
||||||
|
cls: "bi-down-list-spliter bi-border-top cursor-pointer", |
||||||
|
height: 0 |
||||||
|
} |
||||||
|
|
||||||
|
}], |
||||||
|
cls: "bi-down-list-spliter-container cursor-pointer", |
||||||
|
lgap: 10, |
||||||
|
rgap: 10 |
||||||
|
}); |
||||||
|
result.push(spliter_container); |
||||||
|
} |
||||||
|
}); |
||||||
|
return result; |
||||||
|
}, |
||||||
|
|
||||||
|
_createChildren: function (child) { |
||||||
|
var self = this; |
||||||
|
child.childValues = []; |
||||||
|
BI.each(child.children, function (i, c) { |
||||||
|
var fatherValue = BI.deepClone(child.value); |
||||||
|
var childValue = BI.deepClone(c.value); |
||||||
|
c.type = "bi.down_list_item"; |
||||||
|
c.title = c.title || c.text; |
||||||
|
c.textRgap = 10; |
||||||
|
c.isNeedAdjustWidth = false; |
||||||
|
c.logic = { |
||||||
|
dynamic: true |
||||||
|
}; |
||||||
|
c.father = fatherValue; |
||||||
|
self.fatherValueMap[self._createChildValue(fatherValue, childValue)] = fatherValue; |
||||||
|
self.childValueMap[self._createChildValue(fatherValue, childValue)] = childValue; |
||||||
|
c.value = self._createChildValue(fatherValue, childValue); |
||||||
|
child.childValues.push(c.value); |
||||||
|
}); |
||||||
|
}, |
||||||
|
|
||||||
|
_isGroup: function (i) { |
||||||
|
return i.length > 1; |
||||||
|
}, |
||||||
|
|
||||||
|
_needSpliter: function (i, itemLength) { |
||||||
|
return i < itemLength - 1; |
||||||
|
}, |
||||||
|
|
||||||
|
_createChildValue: function (fatherValue, childValue) { |
||||||
|
var fValue = fatherValue; |
||||||
|
if(BI.isArray(fatherValue)) { |
||||||
|
fValue = fatherValue.join("_"); |
||||||
|
} |
||||||
|
return fValue + "_" + childValue; |
||||||
|
}, |
||||||
|
|
||||||
|
_digest: function (valueItem) { |
||||||
|
var self = this; |
||||||
|
var valueArray = []; |
||||||
|
BI.each(valueItem, function (i, item) { |
||||||
|
var value; |
||||||
|
if (BI.isNotNull(item.childValue)) { |
||||||
|
value = self._createChildValue(item.value, item.childValue); |
||||||
|
} else { |
||||||
|
value = item.value; |
||||||
|
} |
||||||
|
valueArray.push(value); |
||||||
|
} |
||||||
|
); |
||||||
|
return valueArray; |
||||||
|
}, |
||||||
|
|
||||||
|
_checkValues: function (values) { |
||||||
|
var self = this, o = this.options; |
||||||
|
var value = []; |
||||||
|
BI.each(o.items, function (idx, itemGroup) { |
||||||
|
BI.each(itemGroup, function (id, item) { |
||||||
|
if(BI.isNotNull(item.children)) { |
||||||
|
var childValues = getChildrenValue(item); |
||||||
|
var v = joinValue(childValues, values[idx]); |
||||||
|
if(BI.isNotEmptyString(v)) { |
||||||
|
value.push(v); |
||||||
|
} |
||||||
|
}else{ |
||||||
|
if(item.value === values[idx][0]) { |
||||||
|
value.push(values[idx][0]); |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
}); |
||||||
|
return value; |
||||||
|
|
||||||
|
function joinValue (sources, targets) { |
||||||
|
var value = ""; |
||||||
|
BI.some(sources, function (idx, s) { |
||||||
|
return BI.some(targets, function (id, t) { |
||||||
|
if(s === t) { |
||||||
|
value = s; |
||||||
|
return true; |
||||||
|
} |
||||||
|
}); |
||||||
|
}); |
||||||
|
return value; |
||||||
|
} |
||||||
|
|
||||||
|
function getChildrenValue (item) { |
||||||
|
var children = []; |
||||||
|
if(BI.isNotNull(item.children)) { |
||||||
|
BI.each(item.children, function (idx, child) { |
||||||
|
children = BI.concat(children, getChildrenValue(child)); |
||||||
|
}); |
||||||
|
} else { |
||||||
|
children.push(item.value); |
||||||
|
} |
||||||
|
return children; |
||||||
|
} |
||||||
|
}, |
||||||
|
|
||||||
|
populate: function (items) { |
||||||
|
BI.MultiLayerDownListPopup.superclass.populate.apply(this, arguments); |
||||||
|
var self = this; |
||||||
|
self.childValueMap = {}; |
||||||
|
self.fatherValueMap = {}; |
||||||
|
self.singleValues = []; |
||||||
|
var children = self._createPopupItems(items); |
||||||
|
var popupItem = BI.createItems(children, |
||||||
|
{}, { |
||||||
|
adjustLength: -2 |
||||||
|
} |
||||||
|
); |
||||||
|
self.popup.populate(popupItem); |
||||||
|
}, |
||||||
|
|
||||||
|
setValue: function (valueItem) { |
||||||
|
this.popup.setValue(this._digest(valueItem)); |
||||||
|
}, |
||||||
|
|
||||||
|
_getValue: function () { |
||||||
|
var v = []; |
||||||
|
BI.each(this.popup.getAllButtons(), function (i, item) { |
||||||
|
i % 2 === 0 && v.push(item.getValue()); |
||||||
|
}); |
||||||
|
return v; |
||||||
|
}, |
||||||
|
|
||||||
|
getValue: function () { |
||||||
|
var self = this, result = []; |
||||||
|
var values = this._checkValues(this._getValue()); |
||||||
|
BI.each(values, function (i, value) { |
||||||
|
var valueItem = {}; |
||||||
|
if (BI.isNotNull(self.childValueMap[value])) { |
||||||
|
var fartherValue = self.fatherValueMap[value]; |
||||||
|
valueItem.childValue = self.childValueMap[value]; |
||||||
|
valueItem.value = fartherValue.split("_"); |
||||||
|
} else { |
||||||
|
valueItem.value = value; |
||||||
|
} |
||||||
|
result.push(valueItem); |
||||||
|
}); |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
BI.MultiLayerDownListPopup.EVENT_CHANGE = "EVENT_CHANGE"; |
||||||
|
BI.MultiLayerDownListPopup.EVENT_SON_VALUE_CHANGE = "EVENT_SON_VALUE_CHANGE"; |
||||||
|
BI.shortcut("bi.multi_layer_down_list_popup", BI.MultiLayerDownListPopup); |
Loading…
Reference in new issue