mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* fix padding on text-view & text-field text-base is now snapshotable view.android is now snapshotable * createNativeView returns the nativeView for android Fix image tests Implement test for image loaded from res:// EffectivePaddings updated when nativeView have some from its native theme
206 lines
8.0 KiB
TypeScript
206 lines
8.0 KiB
TypeScript
import {
|
|
FlexDirection, FlexWrap, JustifyContent, AlignItems, AlignContent,
|
|
FlexboxLayoutBase, View,
|
|
Length,
|
|
orderProperty, Order,
|
|
flexGrowProperty, FlexGrow,
|
|
flexShrinkProperty, FlexShrink,
|
|
flexWrapBeforeProperty, FlexWrapBefore,
|
|
alignSelfProperty, AlignSelf,
|
|
flexDirectionProperty, flexWrapProperty, justifyContentProperty, alignItemsProperty, alignContentProperty
|
|
} from "./flexbox-layout-common";
|
|
|
|
export * from "./flexbox-layout-common";
|
|
|
|
const orderDescriptor: TypedPropertyDescriptor<Order> = {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => orderProperty.defaultValue,
|
|
set: function (this: View, value: Order) {
|
|
setLayoutParamsProperty(this, (lp) => lp.order = value);
|
|
}
|
|
}
|
|
|
|
const flexGrowDescriptor: TypedPropertyDescriptor<FlexGrow> = {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => flexGrowProperty.defaultValue,
|
|
set: function (this: View, value: FlexGrow) {
|
|
setLayoutParamsProperty(this, (lp) => lp.flexGrow = value);
|
|
}
|
|
}
|
|
|
|
const flexShrinkDescriptor: TypedPropertyDescriptor<FlexShrink> = {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => flexShrinkProperty.defaultValue,
|
|
set: function (this: View, value: FlexShrink) {
|
|
setLayoutParamsProperty(this, (lp) => lp.flexShrink = value);
|
|
}
|
|
}
|
|
|
|
const flexWrapBeforeDescriptor: TypedPropertyDescriptor<FlexWrapBefore> = {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => false,
|
|
set: function (this: View, value: FlexWrapBefore) {
|
|
setLayoutParamsProperty(this, (lp) => lp.wrapBefore = value);
|
|
}
|
|
}
|
|
|
|
const alignSelfDescriptor: TypedPropertyDescriptor<AlignSelf> = {
|
|
enumerable: true,
|
|
configurable: true,
|
|
get: () => AlignSelf.AUTO,
|
|
set: function (this: View, value: AlignSelf) {
|
|
setLayoutParamsProperty(this, (lp) => lp.alignSelf = alignSelfMap[value]);
|
|
}
|
|
}
|
|
|
|
// register native properties on View type.
|
|
Object.defineProperties(View.prototype, {
|
|
[orderProperty.native]: orderDescriptor,
|
|
[flexGrowProperty.native]: flexGrowDescriptor,
|
|
[flexShrinkProperty.native]: flexShrinkDescriptor,
|
|
[flexWrapBeforeProperty.native]: flexWrapBeforeDescriptor,
|
|
[alignSelfProperty.native]: alignSelfDescriptor
|
|
});
|
|
|
|
function setLayoutParamsProperty(view: View, setter: (lp: org.nativescript.widgets.FlexboxLayout.LayoutParams) => void) {
|
|
const nativeView: android.view.View = view._nativeView;
|
|
if (nativeView) {
|
|
let lp = nativeView.getLayoutParams() || new org.nativescript.widgets.FlexboxLayout.LayoutParams();
|
|
if (lp instanceof org.nativescript.widgets.FlexboxLayout.LayoutParams) {
|
|
setter(lp);
|
|
nativeView.setLayoutParams(lp);
|
|
}
|
|
}
|
|
}
|
|
|
|
const flexDirectionMap = {
|
|
[FlexDirection.ROW]: 0, //FlexboxLayoutWidget.FLEX_DIRECTION_ROW,
|
|
[FlexDirection.ROW_REVERSE]: 1, //FlexboxLayoutWidget.FLEX_DIRECTION_ROW_REVERSE,
|
|
[FlexDirection.COLUMN]: 2, //FlexboxLayoutWidget.FLEX_DIRECTION_COLUMN,
|
|
[FlexDirection.COLUMN_REVERSE]: 3 //FlexboxLayoutWidget.FLEX_DIRECTION_COLUMN_REVERSE
|
|
};
|
|
|
|
const flexWrapMap = {
|
|
[FlexWrap.NOWRAP]: 0, //FlexboxLayoutWidget.FLEX_WRAP_NOWRAP,
|
|
[FlexWrap.WRAP]: 1, //FlexboxLayoutWidget.FLEX_WRAP_WRAP,
|
|
[FlexWrap.WRAP_REVERSE]: 2 //FlexboxLayoutWidget.FLEX_WRAP_WRAP_REVERSE
|
|
}
|
|
|
|
const justifyContentMap = {
|
|
[JustifyContent.FLEX_START]: 0, //FlexboxLayoutWidget.JUSTIFY_CONTENT_FLEX_START,
|
|
[JustifyContent.FLEX_END]: 1, //FlexboxLayoutWidget.JUSTIFY_CONTENT_FLEX_END,
|
|
[JustifyContent.CENTER]: 2, //FlexboxLayoutWidget.JUSTIFY_CONTENT_CENTER,
|
|
[JustifyContent.SPACE_BETWEEN]: 3, //FlexboxLayoutWidget.JUSTIFY_CONTENT_SPACE_BETWEEN
|
|
[JustifyContent.SPACE_AROUND]: 4 //FlexboxLayoutWidget.JUSTIFY_CONTENT_SPACE_AROUND,
|
|
}
|
|
|
|
const alignItemsMap = {
|
|
[AlignItems.FLEX_START]: 0, //FlexboxLayoutWidget.ALIGN_ITEMS_FLEX_START,
|
|
[AlignItems.FLEX_END]: 1, //FlexboxLayoutWidget.ALIGN_ITEMS_FLEX_END,
|
|
[AlignItems.CENTER]: 2, //FlexboxLayoutWidget.ALIGN_ITEMS_CENTER,
|
|
[AlignItems.BASELINE]: 3, //FlexboxLayoutWidget.ALIGN_ITEMS_BASELINE,
|
|
[AlignItems.STRETCH]: 4 //FlexboxLayoutWidget.ALIGN_ITEMS_STRETCH
|
|
}
|
|
|
|
const alignContentMap = {
|
|
[AlignContent.FLEX_START]: 0, //FlexboxLayoutWidget.ALIGN_CONTENT_FLEX_START,
|
|
[AlignContent.FLEX_END]: 1, //FlexboxLayoutWidget.ALIGN_CONTENT_FLEX_END,
|
|
[AlignContent.CENTER]: 2, //FlexboxLayoutWidget.ALIGN_CONTENT_CENTER,
|
|
[AlignContent.SPACE_BETWEEN]: 3, //FlexboxLayoutWidget.ALIGN_CONTENT_SPACE_BETWEEN,
|
|
[AlignContent.SPACE_AROUND]: 4, //FlexboxLayoutWidget.ALIGN_CONTENT_SPACE_AROUND,
|
|
[AlignContent.STRETCH]: 5 //FlexboxLayoutWidget.ALIGN_CONTENT_STRETCH
|
|
}
|
|
|
|
const alignSelfMap = {
|
|
[AlignSelf.AUTO]: -1, //FlexboxLayoutWidget.LayoutParams.ALIGN_SELF_AUTO,
|
|
[AlignSelf.FLEX_START]: 0, //FlexboxLayoutWidget.LayoutParams.ALIGN_SELF_FLEX_START,
|
|
[AlignSelf.FLEX_END]: 1, //FlexboxLayoutWidget.LayoutParams.ALIGN_SELF_FLEX_END,
|
|
[AlignSelf.CENTER]: 2, //FlexboxLayoutWidget.LayoutParams.ALIGN_SELF_CENTER,
|
|
[AlignSelf.BASELINE]: 3, //FlexboxLayoutWidget.LayoutParams.ALIGN_SELF_BASELINE,
|
|
[AlignSelf.STRETCH]: 4 //FlexboxLayoutWidget.LayoutParams.ALIGN_SELF_STRETCH
|
|
}
|
|
|
|
export class FlexboxLayout extends FlexboxLayoutBase {
|
|
private _layout: org.nativescript.widgets.FlexboxLayout;
|
|
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
get android(): org.nativescript.widgets.FlexboxLayout { return this._layout; }
|
|
get _nativeView(): org.nativescript.widgets.FlexboxLayout { return this._layout; }
|
|
|
|
public _createNativeView() {
|
|
const layout = this._layout = new org.nativescript.widgets.FlexboxLayout(this._context);
|
|
return layout;
|
|
}
|
|
|
|
get [flexDirectionProperty.native](): FlexDirection {
|
|
return flexDirectionProperty.defaultValue;
|
|
}
|
|
set [flexDirectionProperty.native](flexDirection: FlexDirection) {
|
|
this.android.setFlexDirection(flexDirectionMap[flexDirection]);
|
|
}
|
|
|
|
get [flexWrapProperty.native](): FlexWrap {
|
|
return flexWrapProperty.defaultValue;
|
|
}
|
|
set [flexWrapProperty.native](flexWrap: FlexWrap) {
|
|
this.android.setFlexWrap(flexWrapMap[flexWrap]);
|
|
}
|
|
|
|
get [justifyContentProperty.native](): JustifyContent {
|
|
return justifyContentProperty.defaultValue;
|
|
}
|
|
set [justifyContentProperty.native](justifyContent: JustifyContent) {
|
|
this.android.setJustifyContent(justifyContentMap[justifyContent]);
|
|
}
|
|
|
|
get [alignItemsProperty.native](): AlignItems {
|
|
return alignItemsProperty.defaultValue;
|
|
}
|
|
set [alignItemsProperty.native](alignItems: AlignItems) {
|
|
this.android.setAlignItems(alignItemsMap[alignItems]);
|
|
}
|
|
|
|
get [alignContentProperty.native](): AlignContent {
|
|
return alignContentProperty.defaultValue;
|
|
}
|
|
set [alignContentProperty.native](alignContent: AlignContent) {
|
|
this.android.setAlignContent(alignContentMap[alignContent]);
|
|
}
|
|
|
|
public _updateNativeLayoutParams(child: View): void {
|
|
super._updateNativeLayoutParams(child);
|
|
|
|
const lp = <org.nativescript.widgets.FlexboxLayout.LayoutParams>child.nativeView.getLayoutParams();
|
|
lp.order = child.order;
|
|
lp.flexGrow = child.flexGrow;
|
|
lp.flexShrink = child.flexShrink;
|
|
lp.wrapBefore = child.flexWrapBefore;
|
|
lp.alignSelf = alignSelfMap[child.alignSelf];
|
|
child.nativeView.setLayoutParams(lp);
|
|
}
|
|
|
|
public _setChildMinWidthNative(child: View): void {
|
|
child._minWidthNative = 0;
|
|
const lp = child.nativeView.getLayoutParams();
|
|
if (lp instanceof org.nativescript.widgets.FlexboxLayout.LayoutParams) {
|
|
lp.minWidth = Length.toDevicePixels(child.minWidth, 0);
|
|
child.nativeView.setLayoutParams(lp);
|
|
}
|
|
}
|
|
|
|
public _setChildMinHeightNative(child: View): void {
|
|
child._minHeightNative = 0;
|
|
const lp = child.nativeView.getLayoutParams();
|
|
if (lp instanceof org.nativescript.widgets.FlexboxLayout.LayoutParams) {
|
|
lp.minHeight = Length.toDevicePixels(child.minHeight, 0);
|
|
child.nativeView.setLayoutParams(lp);
|
|
}
|
|
}
|
|
} |