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.
138 lines
3.8 KiB
138 lines
3.8 KiB
8 years ago
|
/**
|
||
|
* Created by GUY on 2015/6/26.
|
||
|
*/
|
||
|
|
||
|
BI.Navigation = BI.inherit(BI.Widget, {
|
||
|
_defaultConfig: function(){
|
||
|
return BI.extend(BI.Navigation.superclass._defaultConfig.apply(this,arguments), {
|
||
|
direction: "bottom",//top, bottom, left, right, custom
|
||
|
logic: {
|
||
|
dynamic: false
|
||
|
},
|
||
|
defaultShowIndex: 0,
|
||
|
tab: {
|
||
|
type: "bi.button_group",
|
||
|
items: [],
|
||
|
layouts: []
|
||
|
},
|
||
|
cardCreator: function(v){
|
||
|
return BI.createWidget();
|
||
|
},
|
||
|
|
||
|
afterCardCreated: BI.emptyFn,
|
||
|
afterCardShow: BI.emptyFn
|
||
|
})
|
||
|
},
|
||
|
|
||
|
_init: function(){
|
||
|
BI.Navigation.superclass._init.apply(this,arguments);
|
||
|
var self = this, o = this.options;
|
||
|
this.tab = BI.createWidget(this.options.tab, {type: "bi.button_group"});
|
||
|
this.cardMap = {};
|
||
|
this.showIndex = 0;
|
||
|
this.layout = BI.createWidget({
|
||
|
type: "bi.card"
|
||
|
});
|
||
|
BI.createWidget(BI.extend({
|
||
|
element: this.element
|
||
|
}, BI.LogicFactory.createLogic(BI.LogicFactory.createLogicTypeByDirection(o.direction), BI.extend({}, o.logic, {
|
||
|
items: BI.LogicFactory.createLogicItemsByDirection(o.direction, this.tab, this.layout)
|
||
|
}))));
|
||
|
|
||
|
|
||
|
new BI.ShowListener({
|
||
|
eventObj: this.tab,
|
||
|
cardLayout: this.layout,
|
||
|
cardNameCreator: function(v){
|
||
|
return self.showIndex + v;
|
||
|
},
|
||
|
cardCreator: function(v){
|
||
|
var card = o.cardCreator(v);
|
||
|
self.cardMap[v] = card;
|
||
|
return card;
|
||
|
},
|
||
|
afterCardCreated: BI.bind(this.afterCardCreated, this),
|
||
|
afterCardShow: BI.bind(this.afterCardShow, this)
|
||
|
})
|
||
|
if(o.defaultShowIndex !== false){
|
||
|
this.setSelect(o.defaultShowIndex);
|
||
|
}
|
||
|
},
|
||
|
|
||
|
afterCardCreated: function(v){
|
||
|
var self = this;
|
||
|
this.cardMap[v].on(BI.Controller.EVENT_CHANGE, function(type, value, obj){
|
||
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
|
||
|
if(type === BI.Events.CLICK) {
|
||
|
self.fireEvent(BI.Navigation.EVENT_CHANGE, obj);
|
||
|
}
|
||
|
})
|
||
|
this.options.afterCardCreated.apply(this, arguments);
|
||
|
},
|
||
|
|
||
|
afterCardShow: function(v){
|
||
|
this.showIndex = v;
|
||
|
this.options.afterCardShow.apply(this, arguments);
|
||
|
},
|
||
|
|
||
|
populate: function(){
|
||
|
var card = this.layout.getShowingCard();
|
||
|
if(card){
|
||
|
return card.populate.apply(card, arguments);
|
||
|
}
|
||
|
},
|
||
|
|
||
|
setSelect: function(v){
|
||
|
this.showIndex = v;
|
||
|
if(!this.layout.isCardExisted(v)){
|
||
|
var card = this.options.cardCreator(v);
|
||
|
this.cardMap[v] = card;
|
||
|
this.layout.addCardByName(v, card);
|
||
|
this.afterCardCreated(v);
|
||
|
}
|
||
|
this.layout.showCardByName(v);
|
||
|
BI.nextTick(BI.bind(this.afterCardShow, this, v));
|
||
|
},
|
||
|
|
||
|
getSelect: function(){
|
||
|
return this.showIndex;
|
||
|
},
|
||
|
|
||
|
getSelectedCard: function(){
|
||
|
if(BI.isKey(this.showIndex)){
|
||
|
return this.cardMap[this.showIndex];
|
||
|
}
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* @override
|
||
|
*/
|
||
|
setValue: function(v){
|
||
|
var card = this.layout.getShowingCard();
|
||
|
if(card){
|
||
|
card.setValue(v);
|
||
|
}
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* @override
|
||
|
*/
|
||
|
getValue: function(){
|
||
|
var card = this.layout.getShowingCard();
|
||
|
if(card){
|
||
|
return card.getValue();
|
||
|
}
|
||
|
},
|
||
|
|
||
|
empty: function(){
|
||
|
this.layout.deleteAllCard();
|
||
|
this.cardMap = {};
|
||
|
},
|
||
|
|
||
|
destroy: function(){
|
||
|
BI.Navigation.superclass.destroy.apply(this, arguments);
|
||
|
}
|
||
|
});
|
||
|
BI.Navigation.EVENT_CHANGE = "EVENT_CHANGE";
|
||
|
|
||
|
$.shortcut("bi.navigation", BI.Navigation);
|