mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 05:18:39 +08:00
298 lines
11 KiB
TypeScript
298 lines
11 KiB
TypeScript
import common = require("ui/gestures/gestures-common");
|
|
import definition = require("ui/gestures");
|
|
import view = require("ui/core/view");
|
|
import observable = require("data/observable");
|
|
import trace = require("trace");
|
|
|
|
// merge the exports of the request file with the exports of this file
|
|
declare var exports;
|
|
require("utils/module-merge").merge(common, exports);
|
|
|
|
class UIGestureRecognizerImpl extends NSObject {
|
|
static new(): UIGestureRecognizerImpl {
|
|
return <UIGestureRecognizerImpl>super.new();
|
|
}
|
|
|
|
private _owner: GesturesObserver;
|
|
private _type: any;
|
|
private _callback: Function;
|
|
private _context: any;
|
|
|
|
public initWithOwnerTypeCallback(owner: GesturesObserver, type: any, callback?: Function, thisArg?: any): UIGestureRecognizerImpl {
|
|
this._owner = owner;
|
|
this._type = type;
|
|
|
|
if (callback) {
|
|
this._callback = callback;
|
|
}
|
|
|
|
if (thisArg) {
|
|
this._context = thisArg;
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
public static ObjCExposedMethods = {
|
|
"recognize": { returns: interop.types.void, params: [UIGestureRecognizer] }
|
|
};
|
|
|
|
public recognize(recognizer: UIGestureRecognizer): void {
|
|
var callback = this._callback ? this._callback : this._owner.callback;
|
|
var type = this._type;
|
|
var target = this._owner.target;
|
|
|
|
var args = {
|
|
type: type,
|
|
view: target,
|
|
ios: recognizer,
|
|
android: undefined
|
|
};
|
|
|
|
if (callback) {
|
|
callback.call(this._context, args);
|
|
}
|
|
}
|
|
}
|
|
|
|
export class GesturesObserver extends common.GesturesObserver {
|
|
private _recognizers: {};
|
|
|
|
private _onTargetLoaded: (data: observable.EventData) => void;
|
|
private _onTargetUnloaded: (data: observable.EventData) => void;
|
|
|
|
constructor(target: view.View, callback: (args: definition.GestureEventData) => void, context: any) {
|
|
super(target, callback, context);
|
|
this._recognizers = {};
|
|
}
|
|
|
|
public observe(type: definition.GestureTypes) {
|
|
if (this.target) {
|
|
this.type = type;
|
|
this._onTargetLoaded = args => {
|
|
trace.write(this.target + ".target loaded. _nativeView:" + this.target._nativeView, "gestures");
|
|
this._attach(this.target, type);
|
|
};
|
|
this._onTargetUnloaded = args => {
|
|
trace.write(this.target + ".target unloaded. _nativeView:" + this.target._nativeView, "gestures");
|
|
this._dettach();
|
|
};
|
|
|
|
this.target.on(view.View.loadedEvent, this._onTargetLoaded);
|
|
this.target.on(view.View.unloadedEvent, this._onTargetUnloaded);
|
|
|
|
if (this.target.isLoaded) {
|
|
this._attach(this.target, type);
|
|
}
|
|
}
|
|
}
|
|
|
|
private _attach(target: view.View, type: definition.GestureTypes) {
|
|
trace.write(target + "._attach() _nativeView:" + target._nativeView, "gestures");
|
|
this._dettach();
|
|
|
|
if (target && target._nativeView && target._nativeView.addGestureRecognizer) {
|
|
var nativeView = <UIView>target._nativeView;
|
|
|
|
if (type & definition.GestureTypes.tap) {
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.tap));
|
|
}
|
|
|
|
if (type & definition.GestureTypes.doubleTap) {
|
|
var r = <UITapGestureRecognizer>this._createRecognizer(definition.GestureTypes.doubleTap);
|
|
r.numberOfTapsRequired = 2;
|
|
|
|
nativeView.addGestureRecognizer(r);
|
|
}
|
|
|
|
if (type & definition.GestureTypes.pinch) {
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.pinch, args => {
|
|
this._executeCallback(_getPinchData(args));
|
|
}));
|
|
}
|
|
|
|
if (type & definition.GestureTypes.pan) {
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.pan, args => {
|
|
this._executeCallback(_getPanData(args, target._nativeView));
|
|
}));
|
|
}
|
|
|
|
if (type & definition.GestureTypes.swipe) {
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.swipe, args => {
|
|
this._executeCallback(_getSwipeData(args));
|
|
}, UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionDown));
|
|
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.swipe, args => {
|
|
this._executeCallback(_getSwipeData(args));
|
|
}, UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionLeft));
|
|
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.swipe, args => {
|
|
this._executeCallback(_getSwipeData(args));
|
|
}, UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionRight));
|
|
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.swipe, args => {
|
|
this._executeCallback(_getSwipeData(args));
|
|
}, UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionUp));
|
|
}
|
|
|
|
if (type & definition.GestureTypes.rotation) {
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.rotation, args => {
|
|
this._executeCallback(_getRotationData(args));
|
|
}));
|
|
}
|
|
|
|
if (type & definition.GestureTypes.longPress) {
|
|
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.longPress));
|
|
}
|
|
}
|
|
}
|
|
|
|
private _dettach() {
|
|
trace.write(this.target + "._dettach() _nativeView:" + this.target._nativeView, "gestures");
|
|
if (this.target && this.target._nativeView) {
|
|
for (var name in this._recognizers) {
|
|
if (this._recognizers.hasOwnProperty(name)) {
|
|
var item = <RecognizerCache>this._recognizers[name];
|
|
this.target._nativeView.removeGestureRecognizer(item.recognizer);
|
|
|
|
item.recognizer = null;
|
|
item.target = null;
|
|
}
|
|
}
|
|
this._recognizers = {};
|
|
}
|
|
}
|
|
|
|
public disconnect() {
|
|
this._dettach();
|
|
|
|
if (this.target) {
|
|
this.target.off(view.View.loadedEvent, this._onTargetLoaded);
|
|
this.target.off(view.View.unloadedEvent, this._onTargetUnloaded);
|
|
|
|
this._onTargetLoaded = null;
|
|
this._onTargetUnloaded = null;
|
|
}
|
|
// clears target, context and callback references
|
|
super.disconnect();
|
|
}
|
|
|
|
private _executeCallback(args: definition.GestureEventData) {
|
|
if (this.callback) {
|
|
this.callback.call(this.context, args);
|
|
}
|
|
}
|
|
|
|
private _createRecognizer(type: definition.GestureTypes, callback?: (args: definition.GestureEventData) => void, swipeDirection?: UISwipeGestureRecognizerDirection): UIGestureRecognizer {
|
|
var recognizer: UIGestureRecognizer;
|
|
var name = definition.toString(type);
|
|
var target = _createUIGestureRecognizerTarget(this, type, callback, this.context);
|
|
var recognizerType = _getUIGestureRecognizerType(type);
|
|
|
|
if (recognizerType) {
|
|
if (type === definition.GestureTypes.swipe && swipeDirection) {
|
|
name = name + swipeDirection.toString();
|
|
recognizer = recognizerType.alloc().initWithTargetAction(target, "recognize");
|
|
(<UISwipeGestureRecognizer>recognizer).direction = swipeDirection;
|
|
}
|
|
else {
|
|
recognizer = recognizerType.alloc().initWithTargetAction(target, "recognize");
|
|
}
|
|
|
|
if (recognizer) {
|
|
this._recognizers[name] = <RecognizerCache>{ recognizer: recognizer, target: target };
|
|
}
|
|
}
|
|
|
|
return recognizer;
|
|
}
|
|
}
|
|
|
|
function _createUIGestureRecognizerTarget(owner: GesturesObserver, type: definition.GestureTypes, callback?: (args: definition.GestureEventData) => void, thisArg?: any): any {
|
|
return UIGestureRecognizerImpl.new().initWithOwnerTypeCallback(owner, type, callback, thisArg);
|
|
}
|
|
|
|
interface RecognizerCache {
|
|
recognizer: UIGestureRecognizer;
|
|
target: any;
|
|
}
|
|
|
|
function _getUIGestureRecognizerType(type: definition.GestureTypes): any {
|
|
var nativeType = null;
|
|
|
|
if (type === definition.GestureTypes.tap) {
|
|
nativeType = UITapGestureRecognizer;
|
|
} else if (type === definition.GestureTypes.doubleTap) {
|
|
nativeType = UITapGestureRecognizer;
|
|
} else if (type === definition.GestureTypes.pinch) {
|
|
nativeType = UIPinchGestureRecognizer;
|
|
} else if (type === definition.GestureTypes.pan) {
|
|
nativeType = UIPanGestureRecognizer;
|
|
} else if (type === definition.GestureTypes.swipe) {
|
|
nativeType = UISwipeGestureRecognizer;
|
|
} else if (type === definition.GestureTypes.rotation) {
|
|
nativeType = UIRotationGestureRecognizer;
|
|
} else if (type === definition.GestureTypes.longPress) {
|
|
nativeType = UILongPressGestureRecognizer;
|
|
}
|
|
|
|
return nativeType;
|
|
}
|
|
|
|
function _getSwipeDirection(direction: UISwipeGestureRecognizerDirection): definition.SwipeDirection {
|
|
if (direction === UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionDown) {
|
|
return definition.SwipeDirection.down;
|
|
} else if (direction === UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionLeft) {
|
|
return definition.SwipeDirection.left;
|
|
} else if (direction === UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionRight) {
|
|
return definition.SwipeDirection.right;
|
|
} else if (direction === UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionUp) {
|
|
return definition.SwipeDirection.up;
|
|
}
|
|
}
|
|
|
|
function _getPinchData(args: definition.GestureEventData): definition.PinchGestureEventData {
|
|
var recognizer = <UIPinchGestureRecognizer>args.ios;
|
|
return <definition.PinchGestureEventData>{
|
|
type: args.type,
|
|
view: args.view,
|
|
ios: args.ios,
|
|
android: undefined,
|
|
scale: recognizer.scale,
|
|
};
|
|
}
|
|
|
|
function _getSwipeData(args: definition.GestureEventData): definition.SwipeGestureEventData {
|
|
var recognizer = <UISwipeGestureRecognizer>args.ios;
|
|
return <definition.SwipeGestureEventData>{
|
|
type: args.type,
|
|
view: args.view,
|
|
ios: args.ios,
|
|
android: undefined,
|
|
direction: _getSwipeDirection(recognizer.direction),
|
|
};
|
|
}
|
|
|
|
function _getPanData(args: definition.GestureEventData, view: UIView): definition.PanGestureEventData {
|
|
var recognizer = <UIPanGestureRecognizer>args.ios;
|
|
return <definition.PanGestureEventData>{
|
|
type: args.type,
|
|
view: args.view,
|
|
ios: args.ios,
|
|
android: undefined,
|
|
deltaX: recognizer.translationInView(view).x,
|
|
deltaY: recognizer.translationInView(view).y
|
|
};
|
|
}
|
|
|
|
function _getRotationData(args: definition.GestureEventData): definition.RotationGestureEventData {
|
|
var recognizer = <UIRotationGestureRecognizer>args.ios;
|
|
return <definition.RotationGestureEventData>{
|
|
type: args.type,
|
|
view: args.view,
|
|
ios: args.ios,
|
|
android: undefined,
|
|
rotation: recognizer.rotation * (180.0 / Math.PI),
|
|
};
|
|
}
|