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.

138 lines
4.4 KiB

8 years ago
/**
* 上下的高度固定/左右的宽度固定中间的高度/宽度自适应
*
* @class BI.TableLayout
* @extends BI.Layout
*/
BI.TableLayout = BI.inherit(BI.Layout, {
8 years ago
props: function () {
return BI.extend(BI.TableLayout.superclass.props.apply(this, arguments), {
4 years ago
baseCls: "bi-t",
8 years ago
scrolly: true,
4 years ago
columnSize: [],
7 years ago
rowSize: 30, // or [30,30,30]
8 years ago
hgap: 0,
vgap: 0,
4 years ago
items: []
8 years ago
});
},
8 years ago
render: function () {
BI.TableLayout.superclass.render.apply(this, arguments);
8 years ago
this.rows = 0;
var self = this, o = this.options;
var items = BI.isFunction(o.items) ? this.__watch(o.items, function (context, newValue) {
self.populate(newValue);
}) : o.items;
this.populate(items);
8 years ago
},
_addElement: function (idx, arr) {
var o = this.options;
var abs = [], left = 0, right = 0, i, j;
7 years ago
function firstElement (item, row, col) {
8 years ago
if (row === 0) {
7 years ago
item.addClass("first-row");
8 years ago
}
if (col === 0) {
item.addClass("first-col");
}
item.addClass(BI.isOdd(row + 1) ? "odd-row" : "even-row");
item.addClass(BI.isOdd(col + 1) ? "odd-col" : "even-col");
item.addClass("center-element");
}
7 years ago
function firstObject (item, row, col) {
8 years ago
var cls = "";
if (row === 0) {
cls += " first-row";
}
if (col === 0) {
cls += " first-col";
}
BI.isOdd(row + 1) ? (cls += " odd-row") : (cls += " even-row");
BI.isOdd(col + 1) ? (cls += " odd-col") : (cls += " even-col");
item.cls = (item.cls || "") + cls + " center-element";
}
7 years ago
function first (item, row, col) {
8 years ago
if (item instanceof BI.Widget) {
firstElement(item.element, row, col);
} else if (item.el instanceof BI.Widget) {
firstElement(item.el.element, row, col);
} else if (item.el) {
7 years ago
firstObject(item.el, row, col);
8 years ago
} else {
firstObject(item, row, col);
}
}
for (i = 0; i < arr.length; i++) {
if (BI.isNumber(o.columnSize[i])) {
first(arr[i], this.rows, i);
abs.push(BI.extend({
top: 0,
bottom: 0,
left: this._optimiseGap(left),
width: this._optimiseGap(o.columnSize[i])
8 years ago
}, arr[i]));
left += o.columnSize[i] + (o.columnSize[i] < 1 ? 0 : o.hgap);
} else {
break;
}
}
for (j = arr.length - 1; j > i; j--) {
if (BI.isNumber(o.columnSize[j])) {
first(arr[j], this.rows, j);
abs.push(BI.extend({
top: 0,
bottom: 0,
right: this._optimiseGap(right),
width: this._optimiseGap(o.columnSize[j])
7 years ago
}, arr[j]));
8 years ago
right += o.columnSize[j] + (o.columnSize[j] < 1 ? 0 : o.hgap);
} else {
throw new Error("构造错误", arr);
8 years ago
}
}
if (i >= 0 && i < arr.length) {
first(arr[i], this.rows, i);
abs.push(BI.extend({
top: 0,
bottom: 0,
left: this._optimiseGap(left),
right: this._optimiseGap(right)
7 years ago
}, arr[i]));
8 years ago
}
5 years ago
var w = BI._lazyCreateWidget({
8 years ago
type: "bi.absolute",
4 years ago
height: BI.isArray(o.rowSize) ? o.rowSize[this.rows] : o.rowSize,
8 years ago
items: abs
7 years ago
});
8 years ago
if (this.rows > 0) {
this.getWidgetByName(this._getChildName(this.rows - 1)).element.css({
"margin-bottom": this._optimiseGap(o.vgap)
7 years ago
});
8 years ago
}
w.element.css({
7 years ago
position: "relative"
8 years ago
});
this.addWidget(this._getChildName(this.rows++), w);
8 years ago
return w;
},
resize: function () {
// console.log("table布局不需要resize");
},
4 years ago
update: function (opt) {
return this.forceUpdate(opt);
6 years ago
},
8 years ago
populate: function (items) {
BI.TableLayout.superclass.populate.apply(this, arguments);
8 years ago
this._mount();
8 years ago
}
});
5 years ago
BI.shortcut("bi.table", BI.TableLayout);