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.

110 lines
2.9 KiB

7 years ago
/**
* 当没有元素时有提示信息的view
*
* Created by GUY on 2015/9/8.
* @class BI.Pane
* @extends BI.Widget
* @abstract
*/
BI.Pane = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.Pane.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-pane",
tipText: BI.i18nText("BI-No_Selected_Item"),
overlap: true,
onLoaded: BI.emptyFn
})
},
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
},
_assertTip: function () {
var o = this.options;
if (!this._tipText) {
this._tipText = BI.createWidget({
type: "bi.label",
cls: "bi-tips",
text: o.tipText,
height: 25
});
BI.createWidget({
type: "bi.vertical",
7 years ago
element: this,
7 years ago
items: [this._tipText],
bgap: 25
});
}
},
loading: function () {
var self = this, o = this.options;
if (o.overlap === true) {
7 years ago
if (!BI.Layers.has(this.getName())) {
7 years ago
BI.createWidget({
type: 'bi.vtape',
items: [{
el: {
type: "bi.layout",
cls: "loading-background"
},
height: 30
}],
7 years ago
element: BI.Layers.make(this.getName(), this)
7 years ago
});
}
7 years ago
BI.Layers.show(self.getName());
} else if (BI.isNull(this._loading)) {
7 years ago
this._loading = BI.createWidget({
type: "bi.layout",
cls: "loading-background",
height: 30
});
this._loading.element.css("zIndex", 1);
BI.createWidget({
type: "bi.absolute",
7 years ago
element: this,
7 years ago
items: [{
el: this._loading,
left: 0,
right: 0,
top: 0
}]
})
}
},
loaded: function () {
var self = this, o = this.options;
7 years ago
BI.Layers.remove(self.getName());
7 years ago
this._loading && this._loading.destroy();
this._loading && (this._loading = null);
o.onLoaded();
self.fireEvent(BI.Pane.EVENT_LOADED);
},
check: function () {
this.setTipVisible(BI.isEmpty(this.options.items));
},
setTipVisible: function (b) {
if (b === true) {
this._assertTip();
this._tipText.setVisible(true);
} else {
this._tipText && this._tipText.setVisible(false);
}
},
populate: function (items) {
this.options.items = items || [];
this.check();
},
empty: function () {
}
});
BI.Pane.EVENT_LOADED = "EVENT_LOADED";