fineui是帆软报表和BI产品线所使用的前端框架。
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.

176 lines
4.6 KiB

8 years ago
/**
* Created by GUY on 2015/6/26.
*/
import { shortcut, Widget, Controller, extend, createWidget, bind, ShowListener, isFunction, each, nextTick, isKey, values } from "../../core";
8 years ago
@shortcut()
export class Navigation extends Widget {
static xtype = "bi.navigation";
static EVENT_CHANGE = "EVENT_CHANGE";
_defaultConfig() {
return extend(super._defaultConfig(arguments), {
7 years ago
direction: "bottom", // top, bottom, left, right, custom
8 years ago
logic: {
dynamic: false,
8 years ago
},
single: false,
showIndex: false,
8 years ago
tab: false,
cardCreator: (v) => {
return createWidget();
8 years ago
},
afterCardCreated: BI.emptyFn,
afterCardShow: BI.emptyFn,
7 years ago
});
}
8 years ago
render() {
const { direction, logic, cardCreator, showIndex } = this.options;
this.tab = createWidget(this.options.tab, { type: "bi.button_group" });
8 years ago
this.cardMap = {};
this.showIndex = 0;
this.layout = createWidget({
type: "bi.card",
8 years ago
});
createWidget(extend({
element: this,
}, BI.LogicFactory.createLogic(BI.LogicFactory.createLogicTypeByDirection(direction), extend({}, logic, {
items: BI.LogicFactory.createLogicItemsByDirection(direction, this.tab, this.layout),
8 years ago
}))));
new ShowListener({
8 years ago
eventObj: this.tab,
cardLayout: this.layout,
cardNameCreator: (v) => {
return this.showIndex + v;
8 years ago
},
cardCreator: (v) => {
Widget.execWithContext(this, () => {
this.cardMap[v] = cardCreator(v);
});
return this.cardMap[v];
8 years ago
},
afterCardCreated: bind(this.afterCardCreated, this),
afterCardShow: bind(this.afterCardShow, this),
8 years ago
});
if (isFunction(showIndex)) {
this.__watch(showIndex, (context, newValue) => {
this.setSelect(newValue);
});
}
}
8 years ago
created() {
const { showIndex } = this.options;
if (showIndex !== false) {
this.setSelect(showIndex);
8 years ago
}
}
8 years ago
_deleteOtherCards(currCardName) {
const { single } = this.options;
if (single === true) {
each(this.cardMap, (name, card) => {
if (name !== (currCardName + "")) {
this.layout.deleteCardByName(name);
delete this.cardMap[name];
}
});
}
}
afterCardCreated(v) {
this.cardMap[v].on(Controller.EVENT_CHANGE, (type, value, obj, ...args) => {
this.fireEvent(Controller.EVENT_CHANGE, type, value, obj, ...args);
8 years ago
if (type === BI.Events.CLICK) {
this.fireEvent(Navigation.EVENT_CHANGE, obj);
8 years ago
}
});
8 years ago
this.options.afterCardCreated.apply(this, arguments);
}
8 years ago
afterCardShow(v) {
8 years ago
this.showIndex = v;
this._deleteOtherCards(v);
8 years ago
this.options.afterCardShow.apply(this, arguments);
}
8 years ago
populate() {
const card = this.layout.getShowingCard();
8 years ago
if (card) {
8 years ago
return card.populate.apply(card, arguments);
}
}
8 years ago
_assertCard(v) {
const { cardCreator } = this.options;
8 years ago
if (!this.layout.isCardExisted(v)) {
Widget.execWithContext(this, () => {
this.cardMap[v] = cardCreator(v);
});
this.layout.addCardByName(v, this.cardMap[v]);
8 years ago
this.afterCardCreated(v);
}
}
setSelect(v) {
8 years ago
this._assertCard(v);
8 years ago
this.layout.showCardByName(v);
this._deleteOtherCards(v);
if (this.showIndex !== v) {
this.showIndex = v;
nextTick(bind(this.afterCardShow, this, v));
}
}
8 years ago
getSelect() {
8 years ago
return this.showIndex;
}
8 years ago
getSelectedCard() {
if (isKey(this.showIndex)) {
8 years ago
return this.cardMap[this.showIndex];
}
}
8 years ago
getAllCard() {
return values(this.cardMap);
}
8 years ago
/**
* @override
*/
setValue(v) {
const card = this.layout.getShowingCard();
8 years ago
if (card) {
8 years ago
card.setValue(v);
}
}
8 years ago
/**
* @override
*/
getValue() {
const card = this.layout.getShowingCard();
8 years ago
if (card) {
8 years ago
return card.getValue();
}
}
8 years ago
empty() {
8 years ago
this.layout.deleteAllCard();
this.cardMap = {};
}
destroy() {
super.destroy(arguments);
}
}
8 years ago