tns-core-modules
Version:
Telerik NativeScript Core Modules
406 lines (405 loc) • 16.9 kB
JavaScript
var common = require("./gestures-common");
var definition = require("ui/gestures");
var view = require("ui/core/view");
var trace = require("trace");
var types = require("utils/types");
global.moduleMerge(common, exports);
var UIGestureRecognizerDelegateImpl = (function (_super) {
__extends(UIGestureRecognizerDelegateImpl, _super);
function UIGestureRecognizerDelegateImpl() {
_super.apply(this, arguments);
}
UIGestureRecognizerDelegateImpl.prototype.gestureRecognizerShouldRecognizeSimultaneouslyWithGestureRecognizer = function (gestureRecognizer, otherGestureRecognizer) {
return true;
};
UIGestureRecognizerDelegateImpl.ObjCProtocols = [UIGestureRecognizerDelegate];
return UIGestureRecognizerDelegateImpl;
}(NSObject));
var recognizerDelegateInstance = UIGestureRecognizerDelegateImpl.new();
var UIGestureRecognizerImpl = (function (_super) {
__extends(UIGestureRecognizerImpl, _super);
function UIGestureRecognizerImpl() {
_super.apply(this, arguments);
}
UIGestureRecognizerImpl.initWithOwnerTypeCallback = function (owner, type, callback, thisArg) {
var handler = UIGestureRecognizerImpl.new();
handler._owner = owner;
handler._type = type;
if (callback) {
handler._callback = callback;
}
if (thisArg) {
handler._context = thisArg;
}
return handler;
};
UIGestureRecognizerImpl.prototype.recognize = function (recognizer) {
var owner = this._owner.get();
var callback = this._callback ? this._callback : (owner ? owner.callback : null);
var typeParam = this._type;
var target = owner ? owner.target : undefined;
var args = {
type: typeParam,
view: target,
ios: recognizer,
android: undefined,
object: target,
eventName: definition.toString(typeParam),
};
if (callback) {
callback.call(this._context, args);
}
};
UIGestureRecognizerImpl.ObjCExposedMethods = {
"recognize": { returns: interop.types.void, params: [UIGestureRecognizer] }
};
return UIGestureRecognizerImpl;
}(NSObject));
var GesturesObserver = (function (_super) {
__extends(GesturesObserver, _super);
function GesturesObserver(target, callback, context) {
_super.call(this, target, callback, context);
this._recognizers = {};
}
GesturesObserver.prototype.observe = function (type) {
var _this = this;
if (this.target) {
this.type = type;
this._onTargetLoaded = function (args) {
trace.write(_this.target + ".target loaded. _nativeView:" + _this.target._nativeView, "gestures");
_this._attach(_this.target, type);
};
this._onTargetUnloaded = function (args) {
trace.write(_this.target + ".target unloaded. _nativeView:" + _this.target._nativeView, "gestures");
_this._detach();
};
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);
}
}
};
GesturesObserver.prototype._attach = function (target, type) {
var _this = this;
trace.write(target + "._attach() _nativeView:" + target._nativeView, "gestures");
this._detach();
if (target && target._nativeView && target._nativeView.addGestureRecognizer) {
var nativeView = target._nativeView;
if (type & definition.GestureTypes.tap) {
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.tap));
}
if (type & definition.GestureTypes.doubleTap) {
var r = this._createRecognizer(definition.GestureTypes.doubleTap);
r.numberOfTapsRequired = 2;
nativeView.addGestureRecognizer(r);
}
if (type & definition.GestureTypes.pinch) {
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.pinch, function (args) {
_this._executeCallback(_getPinchData(args));
}));
}
if (type & definition.GestureTypes.pan) {
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.pan, function (args) {
_this._executeCallback(_getPanData(args, target._nativeView));
}));
}
if (type & definition.GestureTypes.swipe) {
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.swipe, function (args) {
_this._executeCallback(_getSwipeData(args));
}, UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionDown));
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.swipe, function (args) {
_this._executeCallback(_getSwipeData(args));
}, UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionLeft));
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.swipe, function (args) {
_this._executeCallback(_getSwipeData(args));
}, UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionRight));
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.swipe, function (args) {
_this._executeCallback(_getSwipeData(args));
}, UISwipeGestureRecognizerDirection.UISwipeGestureRecognizerDirectionUp));
}
if (type & definition.GestureTypes.rotation) {
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.rotation, function (args) {
_this._executeCallback(_getRotationData(args));
}));
}
if (type & definition.GestureTypes.longPress) {
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.longPress));
}
if (type & definition.GestureTypes.touch) {
nativeView.addGestureRecognizer(this._createRecognizer(definition.GestureTypes.touch));
}
}
};
GesturesObserver.prototype._detach = function () {
trace.write(this.target + "._detach() _nativeView:" + this.target._nativeView, "gestures");
if (this.target && this.target._nativeView) {
for (var name in this._recognizers) {
if (this._recognizers.hasOwnProperty(name)) {
var item = this._recognizers[name];
this.target._nativeView.removeGestureRecognizer(item.recognizer);
item.recognizer = null;
item.target = null;
}
}
this._recognizers = {};
}
};
GesturesObserver.prototype.disconnect = function () {
this._detach();
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;
}
_super.prototype.disconnect.call(this);
};
GesturesObserver.prototype._executeCallback = function (args) {
if (this.callback) {
this.callback.call(this.context, args);
}
};
GesturesObserver.prototype._createRecognizer = function (type, callback, swipeDirection) {
var recognizer;
var name = definition.toString(type);
var target = _createUIGestureRecognizerTarget(this, type, callback, this.context);
var recognizerType = _getUIGestureRecognizerType(type);
if (recognizerType) {
recognizer = recognizerType.alloc().initWithTargetAction(target, "recognize");
if (type === definition.GestureTypes.swipe && swipeDirection) {
name = name + swipeDirection.toString();
recognizer.direction = swipeDirection;
}
else if (type === definition.GestureTypes.touch) {
recognizer.observer = this;
}
if (recognizer) {
recognizer.delegate = recognizerDelegateInstance;
this._recognizers[name] = { recognizer: recognizer, target: target };
}
}
return recognizer;
};
return GesturesObserver;
}(common.GesturesObserver));
exports.GesturesObserver = GesturesObserver;
function _createUIGestureRecognizerTarget(owner, type, callback, context) {
return UIGestureRecognizerImpl.initWithOwnerTypeCallback(new WeakRef(owner), type, callback, context);
}
function _getUIGestureRecognizerType(type) {
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;
}
else if (type === definition.GestureTypes.touch) {
nativeType = TouchGestureRecognizer;
}
return nativeType;
}
function getState(recognizer) {
if (recognizer.state === UIGestureRecognizerState.UIGestureRecognizerStateBegan) {
return common.GestureStateTypes.began;
}
else if (recognizer.state === UIGestureRecognizerState.UIGestureRecognizerStateCancelled) {
return common.GestureStateTypes.cancelled;
}
else if (recognizer.state === UIGestureRecognizerState.UIGestureRecognizerStateChanged) {
return common.GestureStateTypes.changed;
}
else if (recognizer.state === UIGestureRecognizerState.UIGestureRecognizerStateEnded) {
return common.GestureStateTypes.ended;
}
}
function _getSwipeDirection(direction) {
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) {
var recognizer = args.ios;
var center = recognizer.locationInView(args.view._nativeView);
return {
type: args.type,
view: args.view,
ios: args.ios,
android: undefined,
scale: recognizer.scale,
getFocusX: function () { return center.x; },
getFocusY: function () { return center.y; },
object: args.view,
eventName: definition.toString(args.type),
state: getState(recognizer)
};
}
function _getSwipeData(args) {
var recognizer = args.ios;
return {
type: args.type,
view: args.view,
ios: args.ios,
android: undefined,
direction: _getSwipeDirection(recognizer.direction),
object: args.view,
eventName: definition.toString(args.type),
};
}
function _getPanData(args, view) {
var recognizer = args.ios;
return {
type: args.type,
view: args.view,
ios: args.ios,
android: undefined,
deltaX: recognizer.translationInView(view).x,
deltaY: recognizer.translationInView(view).y,
object: args.view,
eventName: definition.toString(args.type),
state: getState(recognizer)
};
}
function _getRotationData(args) {
var recognizer = args.ios;
return {
type: args.type,
view: args.view,
ios: args.ios,
android: undefined,
rotation: recognizer.rotation * (180.0 / Math.PI),
object: args.view,
eventName: definition.toString(args.type),
state: getState(recognizer)
};
}
var TouchGestureRecognizer = (function (_super) {
__extends(TouchGestureRecognizer, _super);
function TouchGestureRecognizer() {
_super.apply(this, arguments);
}
TouchGestureRecognizer.prototype.touchesBeganWithEvent = function (touches, event) {
this.executeCallback(common.TouchAction.down, touches, event);
};
TouchGestureRecognizer.prototype.touchesMovedWithEvent = function (touches, event) {
this.executeCallback(common.TouchAction.move, touches, event);
};
TouchGestureRecognizer.prototype.touchesEndedWithEvent = function (touches, event) {
this.executeCallback(common.TouchAction.up, touches, event);
};
TouchGestureRecognizer.prototype.touchesCancelledWithEvent = function (touches, event) {
this.executeCallback(common.TouchAction.cancel, touches, event);
};
TouchGestureRecognizer.prototype.executeCallback = function (action, touches, event) {
if (!this._eventData) {
this._eventData = new TouchGestureEventData();
}
this._eventData.prepare(this.observer.target, action, touches, event);
this.observer._executeCallback(this._eventData);
};
return TouchGestureRecognizer;
}(UIGestureRecognizer));
var Pointer = (function () {
function Pointer(touch, targetView) {
this.android = undefined;
this.ios = undefined;
this.ios = touch;
this._view = targetView;
}
Object.defineProperty(Pointer.prototype, "location", {
get: function () {
if (!this._location) {
this._location = this.ios.locationInView(this._view._nativeView);
}
return this._location;
},
enumerable: true,
configurable: true
});
Pointer.prototype.getX = function () {
return this.location.x;
};
Pointer.prototype.getY = function () {
return this.location.x;
};
return Pointer;
}());
var TouchGestureEventData = (function () {
function TouchGestureEventData() {
this.eventName = definition.toString(definition.GestureTypes.touch);
this.type = definition.GestureTypes.touch;
this.android = undefined;
}
TouchGestureEventData.prototype.prepare = function (view, action, touches, event) {
this.action = action;
this.view = view;
this.object = view;
this.ios = {
touches: touches,
event: event
};
this._mainPointer = undefined;
this._activePointers = undefined;
this._allPointers = undefined;
};
TouchGestureEventData.prototype.getPointerCount = function () {
return this.ios.event.allTouches().count;
};
TouchGestureEventData.prototype.getMainPointer = function () {
if (types.isUndefined(this._mainPointer)) {
this._mainPointer = this.ios.touches.anyObject();
}
return this._mainPointer;
};
TouchGestureEventData.prototype.getActivePointers = function () {
if (!this._activePointers) {
this._activePointers = [];
for (var i = 0, nsArr = this.ios.touches.allObjects; i < nsArr.count; i++) {
this._activePointers.push(new Pointer(nsArr.objectAtIndex(i), this.view));
}
}
return this._activePointers;
};
TouchGestureEventData.prototype.getAllPointers = function () {
if (!this._allPointers) {
this._allPointers = [];
var nsArr = this.ios.event.allTouches().allObjects;
for (var i = 0; i < nsArr.count; i++) {
this._allPointers.push(new Pointer(nsArr.objectAtIndex(i), this.view));
}
}
return this._allPointers;
};
TouchGestureEventData.prototype.getX = function () {
return this.getMainPointer().locationInView(this.view._nativeView).x;
};
TouchGestureEventData.prototype.getY = function () {
return this.getMainPointer().locationInView(this.view._nativeView).y;
};
return TouchGestureEventData;
}());