mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 13:51:27 +08:00
249 lines
9.6 KiB
TypeScript
249 lines
9.6 KiB
TypeScript
import layouts = require("ui/layouts/layout");
|
|
import definition = require("ui/layouts/wrap-layout");
|
|
import utils = require("utils/utils");
|
|
import dependencyObservable = require("ui/core/dependency-observable");
|
|
import view = require("ui/core/view");
|
|
import enums = require("ui/enums");
|
|
import proxy = require("ui/core/proxy");
|
|
|
|
function isWidthHeightValid(value: any): boolean {
|
|
return isNaN(value) || (value >= 0.0 && value !== Number.POSITIVE_INFINITY);
|
|
}
|
|
|
|
function isValidOrientation(value: any): boolean {
|
|
return value === enums.Orientation.vertical || value === enums.Orientation.horizontal;
|
|
}
|
|
|
|
export class WrapLayout extends layouts.Layout implements definition.WrapLayout {
|
|
|
|
private _lenghts: Array<number>;
|
|
|
|
public static orientationProperty = new dependencyObservable.Property(
|
|
"orientation",
|
|
"WrapLayout",
|
|
new proxy.PropertyMetadata(enums.Orientation.horizontal,
|
|
dependencyObservable.PropertyMetadataSettings.AffectsLayout,
|
|
undefined,
|
|
isValidOrientation)
|
|
);
|
|
|
|
public static itemWidthProperty = new dependencyObservable.Property(
|
|
"itemWidth",
|
|
"WrapLayout",
|
|
new proxy.PropertyMetadata(Number.NaN,
|
|
dependencyObservable.PropertyMetadataSettings.AffectsLayout,
|
|
undefined,
|
|
isWidthHeightValid)
|
|
);
|
|
|
|
public static itemHeightProperty = new dependencyObservable.Property(
|
|
"itemHeight",
|
|
"WrapLayout",
|
|
new proxy.PropertyMetadata(Number.NaN,
|
|
dependencyObservable.PropertyMetadataSettings.AffectsLayout,
|
|
undefined,
|
|
isWidthHeightValid)
|
|
);
|
|
|
|
get orientation(): string {
|
|
return this._getValue(WrapLayout.orientationProperty);
|
|
}
|
|
set orientation(value: string) {
|
|
this._setValue(WrapLayout.orientationProperty, value);
|
|
}
|
|
|
|
get itemWidth(): number {
|
|
return this._getValue(WrapLayout.itemWidthProperty);
|
|
}
|
|
set itemWidth(value: number) {
|
|
this._setValue(WrapLayout.itemWidthProperty, value);
|
|
}
|
|
|
|
get itemHeight(): number {
|
|
return this._getValue(WrapLayout.itemHeightProperty);
|
|
}
|
|
set itemHeight(value: number) {
|
|
this._setValue(WrapLayout.itemHeightProperty, value);
|
|
}
|
|
|
|
private static getChildMeasureSpec(parentMode: number, parentLength: number, itemLength): number {
|
|
if (!isNaN(itemLength)) {
|
|
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._lenghts = [0];
|
|
var rowOrColumn = 0;
|
|
var maxLenght = 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++;
|
|
maxLenght = Math.max(maxLenght, measureHeight);
|
|
measureHeight = childSize.measuredHeight;
|
|
remainingWidth = height - childSize.measuredHeight;
|
|
this._lenghts[rowOrColumn] = childSize.measuredWidth;
|
|
}
|
|
else {
|
|
remainingHeight -= childSize.measuredHeight;
|
|
this._lenghts[rowOrColumn] = Math.max(this._lenghts[rowOrColumn], childSize.measuredWidth);
|
|
measureHeight += childSize.measuredHeight;
|
|
}
|
|
}
|
|
else {
|
|
if (childSize.measuredWidth > remainingWidth) {
|
|
rowOrColumn++;
|
|
maxLenght = Math.max(maxLenght, measureWidth);
|
|
measureWidth = childSize.measuredWidth;
|
|
remainingWidth = width - childSize.measuredWidth;
|
|
this._lenghts[rowOrColumn] = childSize.measuredHeight;
|
|
}
|
|
else {
|
|
remainingWidth -= childSize.measuredWidth;
|
|
this._lenghts[rowOrColumn] = Math.max(this._lenghts[rowOrColumn], childSize.measuredHeight);
|
|
measureWidth += childSize.measuredWidth;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (isVertical) {
|
|
measureHeight = Math.max(maxLenght, measureHeight);
|
|
for (i = 0; i < this._lenghts.length; i++) {
|
|
measureWidth += this._lenghts[i];
|
|
}
|
|
}
|
|
else {
|
|
measureWidth = Math.max(maxLenght, measureWidth);
|
|
for (i = 0; i < this._lenghts.length; i++) {
|
|
measureHeight += this._lenghts[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.paddingTop + this.paddingBottom) * density;
|
|
}
|
|
else {
|
|
childrenLength = right - left - (this.paddingLeft + 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._lenghts[rowOrColumn];
|
|
if (isVertical) {
|
|
|
|
|
|
childWidth = length;
|
|
childHeight = isNaN(this.itemHeight) ? childHeight : this.itemHeight * density;
|
|
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._lenghts[rowOrColumn];
|
|
}
|
|
}
|
|
else {
|
|
childWidth = isNaN(this.itemWidth) ? childWidth : this.itemWidth * density;
|
|
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._lenghts[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;
|
|
}
|
|
}
|
|
}
|
|
} |