mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00

- 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)
123 lines
4.4 KiB
TypeScript
123 lines
4.4 KiB
TypeScript
import utils = require("utils/utils");
|
|
import dependencyObservable = require("ui/core/dependency-observable");
|
|
import view = require("ui/core/view");
|
|
import proxy = require("ui/core/proxy");
|
|
import common = require("./grid-layout-common");
|
|
|
|
global.moduleMerge(common, exports);
|
|
|
|
function setNativeProperty(data: dependencyObservable.PropertyChangeData, setter: (lp: org.nativescript.widgets.CommonLayoutParams) => void) {
|
|
|
|
var uiView = data.object;
|
|
if (uiView instanceof view.View) {
|
|
var nativeView: android.view.View = uiView._nativeView;
|
|
|
|
var lp = <org.nativescript.widgets.CommonLayoutParams>nativeView.getLayoutParams();
|
|
if (!(lp instanceof org.nativescript.widgets.CommonLayoutParams)) {
|
|
lp = new org.nativescript.widgets.CommonLayoutParams();
|
|
}
|
|
setter(lp);
|
|
nativeView.setLayoutParams(lp);
|
|
}
|
|
}
|
|
|
|
function setNativeRowProperty(data: dependencyObservable.PropertyChangeData) {
|
|
setNativeProperty(data, (lp) => { lp.row = data.newValue; });
|
|
}
|
|
|
|
function setNativeRowSpanProperty(data: dependencyObservable.PropertyChangeData) {
|
|
setNativeProperty(data, (lp) => { lp.rowSpan = data.newValue; });
|
|
}
|
|
|
|
function setNativeColumnProperty(data: dependencyObservable.PropertyChangeData) {
|
|
setNativeProperty(data, (lp) => { lp.column = data.newValue; });
|
|
}
|
|
|
|
function setNativeColumnSpanProperty(data: dependencyObservable.PropertyChangeData) {
|
|
setNativeProperty(data, (lp) => { lp.columnSpan = data.newValue; });
|
|
}
|
|
|
|
(<proxy.PropertyMetadata>common.GridLayout.rowProperty.metadata).onSetNativeValue = setNativeRowProperty;
|
|
(<proxy.PropertyMetadata>common.GridLayout.rowSpanProperty.metadata).onSetNativeValue = setNativeRowSpanProperty;
|
|
(<proxy.PropertyMetadata>common.GridLayout.columnProperty.metadata).onSetNativeValue = setNativeColumnProperty;
|
|
(<proxy.PropertyMetadata>common.GridLayout.columnSpanProperty.metadata).onSetNativeValue = setNativeColumnSpanProperty;
|
|
|
|
function createNativeSpec(itemSpec: ItemSpec): org.nativescript.widgets.ItemSpec {
|
|
switch (itemSpec.gridUnitType) {
|
|
case common.GridUnitType.auto:
|
|
return new org.nativescript.widgets.ItemSpec(itemSpec.value, org.nativescript.widgets.GridUnitType.auto);
|
|
|
|
case common.GridUnitType.star:
|
|
return new org.nativescript.widgets.ItemSpec(itemSpec.value, org.nativescript.widgets.GridUnitType.star);
|
|
|
|
case common.GridUnitType.pixel:
|
|
return new org.nativescript.widgets.ItemSpec(itemSpec.value * utils.layout.getDisplayDensity(), org.nativescript.widgets.GridUnitType.pixel);
|
|
|
|
default:
|
|
throw new Error("Invalid gridUnitType: " + itemSpec.gridUnitType);
|
|
}
|
|
}
|
|
|
|
export class ItemSpec extends common.ItemSpec {
|
|
nativeSpec: org.nativescript.widgets.ItemSpec;
|
|
|
|
public get actualLength(): number {
|
|
if (this.nativeSpec) {
|
|
return Math.round(this.nativeSpec.getActualLength() / utils.layout.getDisplayDensity());
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
export class GridLayout extends common.GridLayout {
|
|
|
|
private _layout: org.nativescript.widgets.GridLayout;
|
|
|
|
get android(): org.nativescript.widgets.GridLayout {
|
|
return this._layout;
|
|
}
|
|
|
|
get _nativeView(): org.nativescript.widgets.GridLayout {
|
|
return this._layout;
|
|
}
|
|
|
|
public _createUI() {
|
|
this._layout = new org.nativescript.widgets.GridLayout(this._context);
|
|
|
|
// Update native GridLayout
|
|
this.getRows().forEach((itemSpec: ItemSpec, index, rows) => { this.onRowAdded(itemSpec); }, this);
|
|
this.getColumns().forEach((itemSpec: ItemSpec, index, rows) => { this.onColumnAdded(itemSpec); }, this);
|
|
}
|
|
|
|
protected onRowAdded(itemSpec: ItemSpec) {
|
|
if (this._layout) {
|
|
var nativeSpec = createNativeSpec(itemSpec);
|
|
itemSpec.nativeSpec = nativeSpec;
|
|
this._layout.addRow(nativeSpec);
|
|
}
|
|
}
|
|
|
|
protected onColumnAdded(itemSpec: ItemSpec) {
|
|
if (this._layout) {
|
|
var nativeSpec = createNativeSpec(itemSpec);
|
|
itemSpec.nativeSpec = nativeSpec;
|
|
this._layout.addColumn(nativeSpec);
|
|
}
|
|
}
|
|
|
|
protected onRowRemoved(itemSpec: ItemSpec, index: number) {
|
|
itemSpec.nativeSpec = null;
|
|
if (this._layout) {
|
|
this._layout.removeRowAt(index);
|
|
}
|
|
}
|
|
|
|
protected onColumnRemoved(itemSpec: ItemSpec, index: number) {
|
|
itemSpec.nativeSpec = null;
|
|
if (this._layout) {
|
|
this._layout.removeColumnAt(index);
|
|
}
|
|
}
|
|
}
|