mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +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)
120 lines
3.6 KiB
TypeScript
120 lines
3.6 KiB
TypeScript
import dependencyObservable = require("ui/core/dependency-observable");
|
|
import definition = require("ui/scroll-view");
|
|
import contentView = require("ui/content-view");
|
|
import common = require("./scroll-view-common");
|
|
import utils = require("utils/utils");
|
|
import enums = require("ui/enums");
|
|
|
|
global.moduleMerge(common, exports);
|
|
|
|
common.orientationProperty.metadata.onValueChanged = function scrollViewOrientationChanged(data: dependencyObservable.PropertyChangeData) {
|
|
(<ScrollView>data.object)._onOrientationChanged(data.oldValue, data.newValue);
|
|
}
|
|
|
|
export class ScrollView extends contentView.ContentView implements definition.ScrollView {
|
|
private _android: org.nativescript.widgets.VerticalScrollView | org.nativescript.widgets.HorizontalScrollView;
|
|
private _androidViewId: number;
|
|
|
|
get android(): android.view.ViewGroup {
|
|
return this._android;
|
|
}
|
|
|
|
get _nativeView(): android.view.ViewGroup {
|
|
return this._android;
|
|
}
|
|
|
|
get orientation(): string {
|
|
return this._getValue(common.orientationProperty);
|
|
}
|
|
set orientation(value: string) {
|
|
this._setValue(common.orientationProperty, value);
|
|
}
|
|
|
|
get horizontalOffset(): number {
|
|
if (!this._android) {
|
|
return 0;
|
|
}
|
|
|
|
return this._android.getScrollX() / utils.layout.getDisplayDensity();
|
|
}
|
|
|
|
get verticalOffset(): number {
|
|
if (!this._android) {
|
|
return 0;
|
|
}
|
|
|
|
return this._android.getScrollY() / utils.layout.getDisplayDensity();
|
|
}
|
|
|
|
get scrollableWidth(): number {
|
|
if (!this._android || this.orientation !== enums.Orientation.horizontal) {
|
|
return 0;
|
|
}
|
|
|
|
return this._android.getScrollableLength() / utils.layout.getDisplayDensity();
|
|
}
|
|
|
|
get scrollableHeight(): number {
|
|
if (!this._android || this.orientation !== enums.Orientation.vertical) {
|
|
return 0;
|
|
}
|
|
|
|
return this._android.getScrollableLength() / utils.layout.getDisplayDensity();
|
|
}
|
|
|
|
public scrollToVerticalOffset(value: number, animated: boolean) {
|
|
if (this._android && this.orientation === enums.Orientation.vertical) {
|
|
value *= utils.layout.getDisplayDensity();
|
|
|
|
if (animated) {
|
|
this._android.smoothScrollTo(0, value);
|
|
}
|
|
else {
|
|
this._android.scrollTo(0, value);
|
|
}
|
|
}
|
|
}
|
|
|
|
public scrollToHorizontalOffset(value: number, animated: boolean) {
|
|
if (this._android && this.orientation === enums.Orientation.horizontal) {
|
|
value *= utils.layout.getDisplayDensity();
|
|
|
|
if (animated) {
|
|
this._android.smoothScrollTo(value, 0);
|
|
}
|
|
else {
|
|
this._android.scrollTo(value, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
public _createUI() {
|
|
if (this.orientation === enums.Orientation.horizontal) {
|
|
this._android = new org.nativescript.widgets.HorizontalScrollView(this._context);
|
|
}
|
|
else {
|
|
this._android = new org.nativescript.widgets.VerticalScrollView(this._context);
|
|
}
|
|
|
|
if (!this._androidViewId) {
|
|
this._androidViewId = android.view.View.generateViewId();
|
|
}
|
|
|
|
this._android.setId(this._androidViewId);
|
|
}
|
|
|
|
public _onOrientationChanged(oldValue: string, newValue: string) {
|
|
if (this._android) {
|
|
var parent = this.parent;
|
|
|
|
if (parent) {
|
|
parent._removeView(this);
|
|
}
|
|
|
|
if (parent) {
|
|
parent._addView(this);
|
|
}
|
|
}
|
|
}
|
|
}
|