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.

149 lines
4.8 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), {
8 years ago
baseCls: "bi-table-layout",
scrolly: true,
7 years ago
columnSize: [200, 200, "fill"],
rowSize: 30, // or [30,30,30]
8 years ago
hgap: 0,
vgap: 0,
items: [[
{
7 years ago
el: {text: "label1"}
8 years ago
},
{
7 years ago
el: {text: "label2"}
8 years ago
},
{
7 years ago
el: {text: "label3"}
8 years ago
}
]]
});
},
8 years ago
render: function () {
BI.TableLayout.superclass.render.apply(this, arguments);
8 years ago
this.rows = 0;
this.populate(this.options.items);
},
_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: o.columnSize[i] <= 1 ? left * 100 + "%" : left,
width: o.columnSize[i] <= 1 ? o.columnSize[i] * 100 + "%" : o.columnSize[i]
}, 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: o.columnSize[j] <= 1 ? right * 100 + "%" : right,
width: o.columnSize[j] <= 1 ? o.columnSize[j] * 100 + "%" : o.columnSize[j]
7 years ago
}, arr[j]));
8 years ago
right += o.columnSize[j] + (o.columnSize[j] < 1 ? 0 : o.hgap);
} else {
8 years ago
throw new Error("item with fill can only be one");
8 years ago
}
}
if (i >= 0 && i < arr.length) {
first(arr[i], this.rows, i);
abs.push(BI.extend({
top: 0,
bottom: 0,
left: left <= 1 ? left * 100 + "%" : left,
right: right <= 1 ? right * 100 + "%" : right
7 years ago
}, arr[i]));
8 years ago
}
var w = BI.createWidget({
type: "bi.absolute",
height: BI.isArray(o.rowSize) ? o.rowSize[this.rows] : o.rowSize,
items: abs
7 years ago
});
8 years ago
if (this.rows > 0) {
this.getWidgetByName(this.getName() + (this.rows - 1)).element.css({
"margin-bottom": o.vgap
7 years ago
});
8 years ago
}
w.element.css({
7 years ago
position: "relative"
8 years ago
});
this.addWidget(this.getName() + (this.rows++), w);
return w;
},
resize: function () {
// console.log("table布局不需要resize");
},
addItem: function (arr) {
if (!BI.isArray(arr)) {
8 years ago
throw new Error("item must be array");
8 years ago
}
return BI.TableLayout.superclass.addItem.apply(this, arguments);
},
6 years ago
update: function () {
},
8 years ago
populate: function (items) {
BI.TableLayout.superclass.populate.apply(this, arguments);
8 years ago
this._mount();
8 years ago
}
});
7 years ago
BI.shortcut("bi.table", BI.TableLayout);