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.

390 lines
9.5 KiB

7 years ago
/**
* Widget超类
* @class BI.Widget
* @extends BI.OB
*
* @cfg {JSON} options 配置属性
*/
BI.Widget = BI.inherit(BI.OB, {
_defaultConfig: function () {
return BI.extend(BI.Widget.superclass._defaultConfig.apply(this), {
7 years ago
root: false,
7 years ago
tagName: "div",
7 years ago
attributes: null,
data: null,
7 years ago
tag: null,
disabled: false,
invisible: false,
invalid: false,
baseCls: "",
extraCls: "",
7 years ago
cls: ""
})
7 years ago
},
7 years ago
//生命周期函数
7 years ago
beforeCreate: null,
7 years ago
7 years ago
created: null,
7 years ago
7 years ago
render: null,
7 years ago
7 years ago
beforeMounted: null,
7 years ago
7 years ago
mounted: null,
7 years ago
7 years ago
update: function () {
},
7 years ago
7 years ago
destroyed: null,
7 years ago
_init: function () {
7 years ago
BI.Widget.superclass._init.apply(this, arguments);
7 years ago
this.beforeCreate && this.beforeCreate();
7 years ago
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisualEffects();
7 years ago
this._initState();
this._initElement();
7 years ago
this.created && this.created();
7 years ago
},
/**
* 初始化根节点
* @private
*/
_initRoot: function () {
7 years ago
var o = this.options;
this.widgetName = o.widgetName || BI.uniqueId("widget");
7 years ago
this._isRoot = o.root;
7 years ago
if (BI.isWidget(o.element)) {
7 years ago
if (o.element instanceof BI.Widget) {
this._parent = o.element;
this._parent.addWidget(this.widgetName, this);
} else {
this._isRoot = true;
}
7 years ago
this.element = this.options.element.element;
7 years ago
} else if (o.element) {
7 years ago
// if (o.root !== true) {
// throw new Error("root is a required property");
// }
7 years ago
this.element = $(o.element);
this._isRoot = true;
7 years ago
} else {
7 years ago
this.element = $(document.createElement(o.tagName));
}
if (o.baseCls || o.extraCls || o.cls) {
this.element.addClass((o.baseCls || "") + " " + (o.extraCls || "") + " " + (o.cls || ""));
7 years ago
}
7 years ago
if (o.attributes) {
this.element.attr(o.attributes);
7 years ago
}
7 years ago
if (o.data) {
this.element.data(o.data);
}
this._children = {};
7 years ago
},
_initElementWidth: function () {
var o = this.options;
if (BI.isWidthOrHeight(o.width)) {
this.element.css("width", o.width);
}
},
_initElementHeight: function () {
var o = this.options;
if (BI.isWidthOrHeight(o.height)) {
this.element.css("height", o.height);
}
},
_initVisualEffects: function () {
7 years ago
var o = this.options;
if (o.invisible) {
this.element.hide();
}
7 years ago
if (o.disabled || o.invalid) {
BI.nextTick(BI.bind(function () {
if (this.options.disabled) {
this.setEnable(false);
}
if (this.options.invalid) {
this.setValid(false);
}
}, this));
7 years ago
}
},
_initState: function () {
this._isMounted = false;
},
_initElement: function () {
var self = this;
7 years ago
var els = this.render && this.render();
7 years ago
if (BI.isPlainObject(els)) {
els = [els];
7 years ago
}
7 years ago
if (BI.isArray(els)) {
BI.each(els, function (i, el) {
BI.createWidget(el, {
element: self
})
})
}
7 years ago
// if (this._isRoot === true || !(this instanceof BI.Layout)) {
this._mount();
// }
7 years ago
},
7 years ago
7 years ago
_setParent: function (parent) {
this._parent = parent;
},
_mount: function () {
var self = this;
var isMounted = this._isMounted;
7 years ago
if (isMounted || !this.isVisible()) {
7 years ago
return;
}
if (this._isRoot === true) {
isMounted = true;
} else if (this._parent && this._parent._isMounted === true) {
isMounted = true;
7 years ago
}
7 years ago
if (!isMounted) {
return;
}
7 years ago
this.beforeMounted && this.beforeMounted();
7 years ago
this._isMounted = true;
7 years ago
this._mountChildren && this._mountChildren();
7 years ago
BI.each(this._children, function (i, widget) {
7 years ago
widget._mount && widget._mount();
7 years ago
});
7 years ago
this.mounted && this.mounted();
7 years ago
},
7 years ago
_mountChildren: null,
7 years ago
_unMount: function () {
BI.each(this._children, function (i, widget) {
7 years ago
widget._unMount && widget._unMount();
7 years ago
});
7 years ago
this._children = {};
7 years ago
this._parent = null;
this._isMounted = false;
7 years ago
this.purgeListeners();
7 years ago
this.destroyed && this.destroyed();
7 years ago
},
7 years ago
isMounted: function () {
return this._isMounted;
},
7 years ago
setWidth: function (w) {
this.options.width = w;
this._initElementWidth();
},
setHeight: function (h) {
this.options.height = h;
this._initElementHeight();
},
setEnable: function (enable) {
if (enable === true) {
this.options.disabled = false;
this.element.removeClass("base-disabled disabled");
} else if (enable === false) {
this.options.disabled = true;
this.element.addClass("base-disabled disabled");
}
},
setVisible: function (visible) {
if (visible === true) {
this.options.invisible = false;
7 years ago
//用this.element.show()会把display属性改成block
this.element.css("display", "");
7 years ago
this._mount();
7 years ago
} else if (visible === false) {
this.options.invisible = true;
7 years ago
this.element.css("display", "none");
7 years ago
}
7 years ago
this.fireEvent(BI.Events.VIEW, visible);
7 years ago
},
setValid: function (valid) {
this.options.invalid = !valid;
if (valid === true) {
this.element.removeClass("base-invalid invalid");
} else if (valid === false) {
this.element.addClass("base-invalid invalid");
}
},
getWidth: function () {
return this.options.width;
},
getHeight: function () {
return this.options.height;
},
isValid: function () {
return !this.options.invalid;
},
addWidget: function (name, widget) {
var self = this;
if (name instanceof BI.Widget) {
widget = name;
name = widget.getName();
}
7 years ago
if (BI.isKey(name)) {
7 years ago
name = name + "";
}
7 years ago
name = name || widget.getName() || BI.uniqueId("widget");
if (this._children[name]) {
7 years ago
throw new Error("name has already been existed");
}
7 years ago
widget._setParent && widget._setParent(this);
7 years ago
widget.on(BI.Events.DESTROY, function () {
7 years ago
BI.remove(self._children, this);
7 years ago
});
7 years ago
return (this._children[name] = widget);
7 years ago
},
getWidgetByName: function (name) {
if (!BI.isKey(name) || name == this.getName()) {
return this;
}
name = name + "";
var widget = void 0, other = {};
7 years ago
BI.any(this._children, function (i, wi) {
7 years ago
if (i === name) {
widget = wi;
return true;
}
other[i] = wi;
});
if (!widget) {
BI.any(other, function (i, wi) {
return (widget = wi.getWidgetByName(i));
});
}
return widget;
},
7 years ago
removeWidget: function (nameOrWidget) {
var self = this;
if (BI.isWidget(nameOrWidget)) {
7 years ago
BI.remove(this._children, nameOrWidget);
7 years ago
} else {
delete this._children[nameOrWidget];
}
7 years ago
},
7 years ago
hasWidget: function (name) {
return this._children[name] != null;
7 years ago
},
getName: function () {
7 years ago
return this.widgetName;
7 years ago
},
setTag: function (tag) {
this.options.tag = tag;
},
getTag: function () {
return this.options.tag;
},
attr: function (key, value) {
if (BI.isNotNull(value)) {
return this.options[key] = value;
}
return this.options[key];
},
7 years ago
getText: function () {
7 years ago
},
7 years ago
setText: function (text) {
7 years ago
},
getValue: function () {
},
7 years ago
setValue: function (value) {
7 years ago
},
isEnabled: function () {
return !this.options.disabled;
},
isVisible: function () {
return !this.options.invisible;
},
7 years ago
disable: function () {
this.setEnable(false);
},
enable: function () {
this.setEnable(true);
},
valid: function () {
this.setValid(true);
},
invalid: function () {
this.setValid(false);
},
invisible: function () {
this.setVisible(false);
},
visible: function () {
this.setVisible(true);
},
7 years ago
isolate: function () {
if (this._parent) {
this._parent.removeWidget(this);
}
7 years ago
BI.DOM.hang([this]);
7 years ago
},
7 years ago
empty: function () {
BI.each(this._children, function (i, widget) {
7 years ago
widget._unMount && widget._unMount();
7 years ago
});
this._children = {};
this.element.empty();
},
7 years ago
destroy: function () {
7 years ago
BI.each(this._children, function (i, widget) {
widget._unMount && widget._unMount();
});
this._children = {};
this._parent = null;
this._isMounted = false;
7 years ago
this.destroyed && this.destroyed();
7 years ago
this.element.destroy();
7 years ago
this.fireEvent(BI.Events.DESTROY);
7 years ago
this.purgeListeners();
7 years ago
}
});