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.

119 lines
3.8 KiB

8 years ago
/**
* 垂直方向居中容器
* @class BI.VerticalAdaptLayout
* @extends BI.Layout
*/
BI.VerticalAdaptLayout = BI.inherit(BI.Layout, {
8 years ago
props: {
baseCls: "bi-vertical-adapt-layout",
columnSize: [],
8 years ago
horizontalAlign: BI.HorizontalAlign.Left,
8 years ago
hgap: 0,
vgap: 0,
lgap: 0,
rgap: 0,
tgap: 0,
bgap: 0
8 years ago
},
8 years ago
render: function () {
BI.VerticalAdaptLayout.superclass.render.apply(this, arguments);
8 years ago
var o = this.options;
7 years ago
this.$table = $("<table>").attr({cellspacing: 0, cellpadding: 0}).css({
position: "relative",
width: o.horizontalAlign === BI.HorizontalAlign.Stretch ? "100%" : "auto",
height: "100%",
8 years ago
"white-space": "nowrap",
"border-spacing": "0px",
7 years ago
border: "none",
8 years ago
"border-collapse": "separate"
});
8 years ago
this.$tr = $("<tr>");
this.$tr.appendTo(this.$table);
8 years ago
this.populate(this.options.items);
},
_addElement: function (i, item) {
var o = this.options;
var td;
var width = o.columnSize[i] <= 1 ? (o.columnSize[i] * 100 + "%") : o.columnSize[i];
8 years ago
if (!this.hasWidget(this._getChildName(i))) {
7 years ago
var w = BI.createWidget(item, this);
7 years ago
w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"});
8 years ago
td = BI.createWidget({
type: "bi.default",
tagName: "td",
attributes: {
width: width
},
items: [w]
7 years ago
}, this);
8 years ago
this.addWidget(this._getChildName(i), td);
8 years ago
} else {
8 years ago
td = this.getWidgetByName(this._getChildName(i));
8 years ago
td.element.attr("width", width);
}
if (i === 0) {
td.element.addClass("first-element");
}
td.element.css({
7 years ago
position: "relative",
height: "100%",
8 years ago
"vertical-align": "middle",
7 years ago
margin: "0",
padding: "0",
border: "none"
8 years ago
});
if (o.vgap + o.tgap + (item.tgap || 0) + (item.vgap || 0) !== 0) {
8 years ago
w.element.css({
"margin-top": o.vgap + o.tgap + (item.tgap || 0) + (item.vgap || 0) + "px"
7 years ago
});
8 years ago
}
if (o.hgap + o.lgap + (item.lgap || 0) + (item.hgap || 0) !== 0) {
8 years ago
w.element.css({
"margin-left": (i === 0 ? o.hgap : 0) + o.lgap + (item.lgap || 0) + (item.hgap || 0) +"px"
7 years ago
});
8 years ago
}
if (o.hgap + o.rgap + (item.rgap || 0) + (item.hgap || 0) !== 0) {
8 years ago
w.element.css({
"margin-right": o.hgap + o.rgap + (item.rgap || 0) + (item.hgap || 0) + "px"
7 years ago
});
8 years ago
}
if (o.vgap + o.bgap + (item.bgap || 0) + (item.vgap || 0) !== 0) {
8 years ago
w.element.css({
"margin-bottom": o.vgap + o.bgap + (item.bgap || 0) + (item.vgap || 0) + "px"
7 years ago
});
8 years ago
}
return td;
},
8 years ago
_mountChildren: function () {
var self = this;
var frag = document.createDocumentFragment();
var hasChild = false;
BI.each(this._children, function (i, widget) {
if (widget.element !== self.element) {
frag.appendChild(widget.element[0]);
hasChild = true;
}
});
if (hasChild === true) {
this.$tr.append(frag);
this.element.append(this.$table);
8 years ago
}
},
8 years ago
_getWrapper: function () {
8 years ago
return this.$tr;
8 years ago
},
resize: function () {
// console.log("vertical_adapt布局不需要resize");
},
populate: function (items) {
BI.VerticalAdaptLayout.superclass.populate.apply(this, arguments);
8 years ago
this._mount();
8 years ago
}
});
7 years ago
BI.shortcut("bi.vertical_adapt", BI.VerticalAdaptLayout);