Files
NativeScript/ui/layouts/wrap-layout/wrap-layout.ios.ts
Hristo Deshev 77838ae9c6 Change from "classic" TS 1.6 imports to the default resolution scheme.
- Use relative imports in place of most of our absolute ones.
- Add "private" ambient modules for modules that we need to import using
an absolute path (e.g. when app/.../test-something.ts needs to import
ui/styling/style-scope)
2015-09-29 16:25:49 +03:00

193 lines
7.7 KiB
TypeScript

import utils = require("utils/utils");
import view = require("ui/core/view");
import enums = require("ui/enums");
import common = require("./wrap-layout-common");
global.moduleMerge(common, exports);
export class WrapLayout extends common.WrapLayout {
private _lengths: Array<number>;
private static getChildMeasureSpec(parentMode: number, parentLength: number, itemLength): number {
if (itemLength > 0) {
return utils.layout.makeMeasureSpec(itemLength, utils.layout.EXACTLY);
}
else if (parentMode === utils.layout.UNSPECIFIED) {
return utils.layout.makeMeasureSpec(0, utils.layout.UNSPECIFIED);
}
else {
return utils.layout.makeMeasureSpec(parentLength, utils.layout.AT_MOST);
}
}
public onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
var measureWidth = 0;
var measureHeight = 0;
var width = utils.layout.getMeasureSpecSize(widthMeasureSpec);
var widthMode = utils.layout.getMeasureSpecMode(widthMeasureSpec);
var height = utils.layout.getMeasureSpecSize(heightMeasureSpec);
var heightMode = utils.layout.getMeasureSpecMode(heightMeasureSpec);
var count = this.getChildrenCount();
var density = utils.layout.getDisplayDensity();
var childWidthMeasureSpec: number = WrapLayout.getChildMeasureSpec(widthMode, width, this.itemWidth * density);
var childHeightMeasureSpec: number = WrapLayout.getChildMeasureSpec(heightMode, height, this.itemHeight * density);
var remainingWidth = widthMode === utils.layout.UNSPECIFIED ? Number.MAX_VALUE : width - ((this.paddingLeft + this.paddingRight) * density);
var remainingHeight = heightMode === utils.layout.UNSPECIFIED ? Number.MAX_VALUE : height - ((this.paddingTop + this.paddingBottom) * density);
this._lengths = [0];
var rowOrColumn = 0;
var maxLength = 0;
var i: number = 0;
var isVertical = this.orientation === enums.Orientation.vertical;
for (i = 0; i < count; i++) {
var child = this.getChildAt(i);
if (!child || !child._isVisible) {
continue;
}
var childSize = view.View.measureChild(this, child, childWidthMeasureSpec, childHeightMeasureSpec);
if (isVertical) {
if (childSize.measuredHeight > remainingHeight) {
rowOrColumn++;
maxLength = Math.max(maxLength, measureHeight);
measureHeight = childSize.measuredHeight;
remainingWidth = height - childSize.measuredHeight;
this._lengths[rowOrColumn] = childSize.measuredWidth;
}
else {
remainingHeight -= childSize.measuredHeight;
this._lengths[rowOrColumn] = Math.max(this._lengths[rowOrColumn], childSize.measuredWidth);
measureHeight += childSize.measuredHeight;
}
}
else {
if (childSize.measuredWidth > remainingWidth) {
rowOrColumn++;
maxLength = Math.max(maxLength, measureWidth);
measureWidth = childSize.measuredWidth;
remainingWidth = width - childSize.measuredWidth;
this._lengths[rowOrColumn] = childSize.measuredHeight;
}
else {
remainingWidth -= childSize.measuredWidth;
this._lengths[rowOrColumn] = Math.max(this._lengths[rowOrColumn], childSize.measuredHeight);
measureWidth += childSize.measuredWidth;
}
}
}
if (isVertical) {
measureHeight = Math.max(maxLength, measureHeight);
for (i = 0; i < this._lengths.length; i++) {
measureWidth += this._lengths[i];
}
}
else {
measureWidth = Math.max(maxLength, measureWidth);
for (i = 0; i < this._lengths.length; i++) {
measureHeight += this._lengths[i];
}
}
measureWidth += (this.paddingLeft + this.paddingRight) * density;
measureHeight += (this.paddingTop + this.paddingBottom) * density;
measureWidth = Math.max(measureWidth, this.minWidth * density);
measureHeight = Math.max(measureHeight, this.minHeight * density);
var widthAndState = view.View.resolveSizeAndState(measureWidth, width, widthMode, 0);
var heightAndState = view.View.resolveSizeAndState(measureHeight, height, heightMode, 0);
this.setMeasuredDimension(widthAndState, heightAndState);
}
public onLayout(left: number, top: number, right: number, bottom: number): void {
super.onLayout(left, top, right, bottom);
var isVertical = this.orientation === enums.Orientation.vertical;
var density = utils.layout.getDisplayDensity();
var count = this.getChildrenCount();
var childLeft = this.paddingLeft * density;
var childTop = this.paddingTop * density;
var childrenLength: number;
if (isVertical) {
childrenLength = bottom - top - (this.paddingBottom * density);
}
else {
childrenLength = right - left - (this.paddingRight * density);
}
var rowOrColumn = 0;
for (var i = 0; i < count; i++) {
var child = this.getChildAt(i);
if (!child || !child._isVisible) {
continue;
}
// Add margins because layoutChild will sustract them.
// * density converts them to device pixels.
var childWidth = child.getMeasuredWidth() + (child.marginLeft + child.marginRight) * density;
var childHeight = child.getMeasuredHeight() + (child.marginTop + child.marginBottom) * density;
var length = this._lengths[rowOrColumn];
if (isVertical) {
childWidth = length;
childHeight = this.itemHeight > 0 ? this.itemHeight * density : childHeight;
if (childTop + childHeight > childrenLength) {
// Move to top.
childTop = this.paddingTop * density;
// Move to right with current column width.
childLeft += length;
// Move to next column.
rowOrColumn++;
// Take current column width.
childWidth = length = this._lengths[rowOrColumn];
}
}
else {
childWidth = this.itemWidth > 0 ? this.itemWidth * density : childWidth;
childHeight = length;
if (childLeft + childWidth > childrenLength) {
// Move to left.
childLeft = this.paddingLeft * density;
// Move to bottom with current row height.
childTop += length;
// Move to next column.
rowOrColumn++;
// Take current row height.
childHeight = length = this._lengths[rowOrColumn];
}
}
view.View.layoutChild(this, child, childLeft, childTop, childLeft + childWidth, childTop + childHeight);
if (isVertical) {
// Move next child Top position to bottom.
childTop += childHeight;
}
else {
// Move next child Left position to right.
childLeft += childWidth;
}
}
}
}