From 071ee7c08fd18b56995f5afae0f3ee83fb3844aa Mon Sep 17 00:00:00 2001 From: git Date: Sat, 19 Jun 2021 13:22:28 +0800 Subject: [PATCH] bugfix --- .../wrapper/layout/flex/flex.horizontal.js | 11 +-- src/core/wrapper/layout/flex/flex.vertical.js | 13 +-- .../flex/wrapper/flex.wrapper.horizontal.js | 11 +-- .../flex/wrapper/flex.wrapper.vertical.js | 11 +-- src/core/wrapper/layout/layout.tape.js | 84 +++++++------------ 5 files changed, 53 insertions(+), 77 deletions(-) diff --git a/src/core/wrapper/layout/flex/flex.horizontal.js b/src/core/wrapper/layout/flex/flex.horizontal.js index a5be46b07..fce23f432 100644 --- a/src/core/wrapper/layout/flex/flex.horizontal.js +++ b/src/core/wrapper/layout/flex/flex.horizontal.js @@ -37,11 +37,12 @@ BI.FlexHorizontalLayout = BI.inherit(BI.Layout, { _addElement: function (i, item) { var o = this.options; var w = BI.FlexHorizontalLayout.superclass._addElement.apply(this, arguments); + var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width; w.element.css({ position: "relative" }); - if (o.columnSize[i] !== "auto") { - if (o.columnSize[i] === "fill" || o.columnSize[i] === "") { + if (columnSize !== "auto") { + if (columnSize === "fill" || columnSize === "") { if (o.horizontalAlign !== BI.HorizontalAlign.Stretch) { if (o.scrollable === true || o.scrollx === true) { w.element.addClass("f-s-n"); @@ -51,10 +52,10 @@ BI.FlexHorizontalLayout = BI.inherit(BI.Layout, { w.element.addClass("f-s-n"); } } - if (o.columnSize[i] > 0) { - w.element.width(o.columnSize[i] === "" ? "" : (o.columnSize[i] <= 1 ? ((o.columnSize[i] * 100).toFixed(1) + "%") : (o.columnSize[i] / BI.pixRatio + BI.pixUnit))); + if (columnSize > 0) { + w.element.width(columnSize <= 1 ? ((columnSize * 100).toFixed(1) + "%") : (columnSize / BI.pixRatio + BI.pixUnit)); } - if (o.columnSize[i] === "fill") { + if (columnSize === "fill") { w.element.addClass("f-f"); } w.element.addClass("c-e"); diff --git a/src/core/wrapper/layout/flex/flex.vertical.js b/src/core/wrapper/layout/flex/flex.vertical.js index c4e3b5f0d..69f1e4b3a 100644 --- a/src/core/wrapper/layout/flex/flex.vertical.js +++ b/src/core/wrapper/layout/flex/flex.vertical.js @@ -34,13 +34,14 @@ BI.FlexVerticalLayout = BI.inherit(BI.Layout, { }, _addElement: function (i, item) { - var w = BI.FlexVerticalLayout.superclass._addElement.apply(this, arguments); var o = this.options; + var w = BI.FlexVerticalLayout.superclass._addElement.apply(this, arguments); + var rowSize = o.rowSize.length > 0 ? o.rowSize[i] : item.height; w.element.css({ position: "relative" }); - if (o.rowSize[i] !== "auto") { - if (o.rowSize[i] === "fill" || o.rowSize[i] === "") { + if (rowSize !== "auto") { + if (rowSize === "fill" || rowSize === "") { if (o.verticalAlign !== BI.VerticalAlign.Stretch) { if (o.scrollable === true || o.scrolly === true) { w.element.addClass("f-s-n"); @@ -50,10 +51,10 @@ BI.FlexVerticalLayout = BI.inherit(BI.Layout, { w.element.addClass("f-s-n"); } } - if (o.rowSize[i] > 0) { - w.element.height(o.rowSize[i] === "" ? "" : (o.rowSize[i] <= 1 ? ((o.rowSize[i] * 100).toFixed(1) + "%") : (o.rowSize[i] / BI.pixRatio + BI.pixUnit))); + if (rowSize > 0) { + w.element.height(rowSize <= 1 ? ((rowSize * 100).toFixed(1) + "%") : (rowSize / BI.pixRatio + BI.pixUnit)); } - if (o.rowSize[i] === "fill") { + if (rowSize === "fill") { w.element.addClass("f-f"); } w.element.addClass("c-e"); diff --git a/src/core/wrapper/layout/flex/wrapper/flex.wrapper.horizontal.js b/src/core/wrapper/layout/flex/wrapper/flex.wrapper.horizontal.js index 55f20992d..5d488aa17 100644 --- a/src/core/wrapper/layout/flex/wrapper/flex.wrapper.horizontal.js +++ b/src/core/wrapper/layout/flex/wrapper/flex.wrapper.horizontal.js @@ -33,11 +33,12 @@ BI.FlexWrapperHorizontalLayout = BI.inherit(BI.Layout, { _addElement: function (i, item) { var o = this.options; var w = BI.FlexWrapperHorizontalLayout.superclass._addElement.apply(this, arguments); + var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width; w.element.css({ position: "relative" }); - if (o.columnSize[i] !== "auto") { - if (o.columnSize[i] === "fill" || o.columnSize[i] === "") { + if (columnSize !== "auto") { + if (columnSize === "fill" || columnSize === "") { if (o.horizontalAlign !== BI.HorizontalAlign.Stretch) { if (o.scrollable === true || o.scrollx === true) { w.element.addClass("f-s-n"); @@ -47,10 +48,10 @@ BI.FlexWrapperHorizontalLayout = BI.inherit(BI.Layout, { w.element.addClass("f-s-n"); } } - if (o.columnSize[i] > 0) { - w.element.width(o.columnSize[i] === "" ? "" : (o.columnSize[i] <= 1 ? ((o.columnSize[i] * 100).toFixed(1) + "%") : (o.columnSize[i] / BI.pixRatio + BI.pixUnit))); + if (columnSize > 0) { + w.element.width(columnSize <= 1 ? ((columnSize * 100).toFixed(1) + "%") : (columnSize / BI.pixRatio + BI.pixUnit)); } - if (o.columnSize[i] === "fill") { + if (columnSize === "fill") { w.element.addClass("f-f"); this.element.addClass("f-f"); } diff --git a/src/core/wrapper/layout/flex/wrapper/flex.wrapper.vertical.js b/src/core/wrapper/layout/flex/wrapper/flex.wrapper.vertical.js index b60ddbfd5..e95af59ce 100644 --- a/src/core/wrapper/layout/flex/wrapper/flex.wrapper.vertical.js +++ b/src/core/wrapper/layout/flex/wrapper/flex.wrapper.vertical.js @@ -33,11 +33,12 @@ BI.FlexWrapperVerticalLayout = BI.inherit(BI.Layout, { _addElement: function (i, item) { var o = this.options; var w = BI.FlexWrapperVerticalLayout.superclass._addElement.apply(this, arguments); + var rowSize = o.rowSize.length > 0 ? o.rowSize[i] : item.width; w.element.css({ position: "relative" }); - if (o.rowSize[i] !== "auto") { - if (o.rowSize[i] === "fill" || o.rowSize[i] === "") { + if (rowSize !== "auto") { + if (rowSize === "fill" || rowSize === "") { if (o.verticalAlign !== BI.VerticalAlign.Stretch) { if (o.scrollable === true || o.scrolly === true) { w.element.addClass("f-s-n"); @@ -47,10 +48,10 @@ BI.FlexWrapperVerticalLayout = BI.inherit(BI.Layout, { w.element.addClass("f-s-n"); } } - if (o.rowSize[i] > 0) { - w.element.height(o.rowSize[i] === "" ? "" : (o.rowSize[i] <= 1 ? ((o.rowSize[i] * 100).toFixed(1) + "%") : (o.rowSize[i] / BI.pixRatio + BI.pixUnit))); + if (rowSize > 0) { + w.element.height(rowSize <= 1 ? ((rowSize * 100).toFixed(1) + "%") : (rowSize / BI.pixRatio + BI.pixUnit)); } - if (o.rowSize[i] === "fill") { + if (rowSize === "fill") { w.element.addClass("f-f"); this.element.addClass("f-f"); } diff --git a/src/core/wrapper/layout/layout.tape.js b/src/core/wrapper/layout/layout.tape.js index f66191d36..018cf749b 100644 --- a/src/core/wrapper/layout/layout.tape.js +++ b/src/core/wrapper/layout/layout.tape.js @@ -64,59 +64,45 @@ BI.HTapeLayout = BI.inherit(BI.Layout, { BI.any(items, function (i, item) { var w = self.getWidgetByName(self._getChildName(i)); + var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width; if (BI.isNull(left[i])) { - left[i] = left[i - 1] + (o.columnSize[i - 1] || items[i - 1].width) + (items[i - 1].lgap || 0) + 2 * (items[i - 1].hgap || 0) + o.hgap + o.lgap + o.rgap; + var preColumnSize = o.columnSize.length > 0 ? o.columnSize[i - 1] : items[i - 1].width; + left[i] = left[i - 1] + preColumnSize + (items[i - 1].lgap || 0) + 2 * (items[i - 1].hgap || 0) + o.hgap + o.lgap + o.rgap; } - if (o.columnSize[i] < 1 && o.columnSize[i] > 0) { + if (columnSize < 1 && columnSize > 0) { w.element.css({ left: (left[i] * 100).toFixed(1) + "%", - width: (o.columnSize[i] * 100).toFixed(1) + "%" - }); - } else if (item.width < 1 && item.width >= 0) { - w.element.css({ - left: (left[i] * 100).toFixed(1) + "%", - width: (item.width * 100).toFixed(1) + "%" + width: (columnSize * 100).toFixed(1) + "%" }); } else { w.element.css({ left: (left[i] + (item.lgap || 0) + (item.hgap || 0) + o.hgap + o.lgap) / BI.pixRatio + BI.pixUnit, - width: o.columnSize[i] > 0 ? o.columnSize[i] / BI.pixRatio + BI.pixUnit : - BI.isNumber(item.width) ? item.width / BI.pixRatio + BI.pixUnit : "" + width: BI.isNumber(columnSize) ? columnSize / BI.pixRatio + BI.pixUnit : "" }); } - if (o.columnSize[i] === "" || o.columnSize[i] === "fill") { - return true; - } - if (o.columnSize.length <= 0 && !BI.isNumber(item.width)) { + if (columnSize === "" || columnSize === "fill") { return true; } }); BI.backAny(items, function (i, item) { var w = self.getWidgetByName(self._getChildName(i)); + var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width; if (BI.isNull(right[i])) { - right[i] = right[i + 1] + (o.columnSize[i + 1] || items[i + 1].width) + (items[i + 1].rgap || 0) + 2 * (items[i + 1].hgap || 0) + o.hgap + o.lgap + o.rgap; + var nextColumnSize = o.columnSize.length > 0 ? o.columnSize[i + 1] : items[i + 1].width; + right[i] = right[i + 1] + nextColumnSize + (items[i + 1].rgap || 0) + 2 * (items[i + 1].hgap || 0) + o.hgap + o.lgap + o.rgap; } - if (o.columnSize[i] < 1 && o.columnSize[i] > 0) { + if (columnSize < 1 && columnSize > 0) { w.element.css({ right: (right[i] * 100).toFixed(1) + "%", - width: (o.columnSize[i] * 100).toFixed(1) + "%" - }); - } else if (item.width < 1 && item.width >= 0) { - w.element.css({ - right: (right[i] * 100).toFixed(1) + "%", - width: (item.width * 100).toFixed(1) + "%" + width: (columnSize * 100).toFixed(1) + "%" }); } else { w.element.css({ right: (right[i] + (item.rgap || 0) + (item.hgap || 0) + o.hgap + o.rgap) / BI.pixRatio + BI.pixUnit, - width: o.columnSize[i] > 0 ? o.columnSize[i] / BI.pixRatio + BI.pixUnit : - BI.isNumber(item.width) ? item.width / BI.pixRatio + BI.pixUnit : "" + width: BI.isNumber(columnSize) ? columnSize / BI.pixRatio + BI.pixUnit : "" }); } - if (o.columnSize[i] === "" || o.columnSize[i] === "fill") { - return true; - } - if (o.columnSize.length <= 0 && !BI.isNumber(item.width)) { + if (columnSize === "" || columnSize === "fill") { return true; } }); @@ -204,59 +190,45 @@ BI.VTapeLayout = BI.inherit(BI.Layout, { BI.any(items, function (i, item) { var w = self.getWidgetByName(self._getChildName(i)); + var rowSize = o.rowSize.length > 0 ? o.rowSize[i] : item.height; if (BI.isNull(top[i])) { - top[i] = top[i - 1] + (o.rowSize[i - 1] || items[i - 1].height) + (items[i - 1].tgap || 0) + 2 * (items[i - 1].vgap || 0) + o.vgap + o.tgap + o.bgap; + var preRowSize = o.rowSize.length > 0 ? o.rowSize[i - 1] : items[i - 1].height; + top[i] = top[i - 1] + preRowSize + (items[i - 1].tgap || 0) + 2 * (items[i - 1].vgap || 0) + o.vgap + o.tgap + o.bgap; } - if (o.rowSize[i] < 1 && o.rowSize[i] > 0) { + if (rowSize < 1 && rowSize > 0) { w.element.css({ top: (top[i] * 100).toFixed(1) + "%", - height: (o.rowSize[i] * 100).toFixed(1) + "%" - }); - } else if (item.height < 1 && item.height >= 0) { - w.element.css({ - top: (top[i] * 100).toFixed(1) + "%", - height: (item.height * 100).toFixed(1) + "%" + height: (rowSize * 100).toFixed(1) + "%" }); } else { w.element.css({ top: (top[i] + (item.vgap || 0) + (item.tgap || 0) + o.vgap + o.tgap) / BI.pixRatio + BI.pixUnit, - height: o.rowSize[i] > 0 ? o.rowSize[i] / BI.pixRatio + BI.pixUnit : - BI.isNumber(item.height) ? item.height / BI.pixRatio + BI.pixUnit : "" + height: BI.isNumber(rowSize) ? rowSize / BI.pixRatio + BI.pixUnit : "" }); } - if (o.rowSize[i] === "" || o.rowSize[i] === "fill") { - return true; - } - if (o.rowSize.length <= 0 && !BI.isNumber(item.height)) { + if (rowSize === "" || rowSize === "fill") { return true; } }); BI.backAny(items, function (i, item) { var w = self.getWidgetByName(self._getChildName(i)); + var rowSize = o.rowSize.length > 0 ? o.rowSize[i] : item.height; if (BI.isNull(bottom[i])) { - bottom[i] = bottom[i + 1] + (o.rowSize[i + 1] || items[i + 1].height) + (items[i + 1].bgap || 0) + 2 * (items[i + 1].vgap || 0) + o.vgap + o.tgap + o.bgap; + var nextRowSize = o.rowSize.length > 0 ? o.rowSize[i + 1] : items[i + 1].height; + bottom[i] = bottom[i + 1] + nextRowSize + (items[i + 1].bgap || 0) + 2 * (items[i + 1].vgap || 0) + o.vgap + o.tgap + o.bgap; } - if (o.rowSize[i] < 1 && o.rowSize[i] > 0) { + if (rowSize < 1 && rowSize > 0) { w.element.css({ bottom: (bottom[i] * 100).toFixed(1) + "%", - height: (o.rowSize[i] * 100).toFixed(1) + "%" - }); - } else if (item.height < 1 && item.height >= 0) { - w.element.css({ - bottom: (bottom[i] * 100).toFixed(1) + "%", - height: (item.height * 100).toFixed(1) + "%" + height: (rowSize * 100).toFixed(1) + "%" }); } else { w.element.css({ bottom: (bottom[i] + (item.vgap || 0) + (item.bgap || 0) + o.vgap + o.bgap) / BI.pixRatio + BI.pixUnit, - height: o.rowSize[i] > 0 ? o.rowSize[i] / BI.pixRatio + BI.pixUnit : - BI.isNumber(item.height) ? item.height / BI.pixRatio + BI.pixUnit : "" + height: BI.isNumber(rowSize) ? rowSize / BI.pixRatio + BI.pixUnit : "" }); } - if (o.rowSize[i] === "" || o.rowSize[i] === "fill") { - return true; - } - if (o.rowSize.length <= 0 && !BI.isNumber(item.height)) { + if (rowSize === "" || rowSize === "fill") { return true; } });