summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/phonegap-plugin-push/src/js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-10-26 01:41:16 +0200
committerJules Laplace <julescarbon@gmail.com>2017-10-26 01:41:16 +0200
commit8dae6a5044f9c1b7a8497cc1c96155fd262b40cf (patch)
tree6f546503efcb198a193f919efafb83977abb9535 /StoneIsland/plugins/phonegap-plugin-push/src/js
parent531c60ee7ecbee516812d560b63a8317c3cf3590 (diff)
iphone x fixes
Diffstat (limited to 'StoneIsland/plugins/phonegap-plugin-push/src/js')
-rw-r--r--StoneIsland/plugins/phonegap-plugin-push/src/js/push.js316
1 files changed, 0 insertions, 316 deletions
diff --git a/StoneIsland/plugins/phonegap-plugin-push/src/js/push.js b/StoneIsland/plugins/phonegap-plugin-push/src/js/push.js
deleted file mode 100644
index 150af344..00000000
--- a/StoneIsland/plugins/phonegap-plugin-push/src/js/push.js
+++ /dev/null
@@ -1,316 +0,0 @@
-/* global cordova:false */
-/* globals window */
-
-/*!
- * Module dependencies.
- */
-
-const exec = cordova.require('cordova/exec');
-
-class PushNotification {
- /**
- * PushNotification constructor.
- *
- * @param {Object} options to initiate Push Notifications.
- * @return {PushNotification} instance that can be monitored and cancelled.
- */
- constructor(options) {
- this.handlers = {
- registration: [],
- notification: [],
- error: [],
- };
-
- // require options parameter
- if (typeof options === 'undefined') {
- throw new Error('The options argument is required.');
- }
-
- // store the options to this object instance
- this.options = options;
-
- // triggered on registration and notification
- const success = (result) => {
- if (result && typeof result.registrationId !== 'undefined') {
- this.emit('registration', result);
- } else if (result && result.additionalData &&
- typeof result.additionalData.actionCallback !== 'undefined') {
- const executeFuctionOrEmitEventByName = (functionName, context, ...args) => {
- const namespaces = functionName.split('.');
- const func = namespaces.pop();
- for (let i = 0; i < namespaces.length; i++) {
- context = context[namespaces[i]];
- }
-
- if (typeof context[func] === 'function') {
- context[func].call(context, args);
- } else {
- this.emit(functionName, args);
- }
- };
-
- executeFuctionOrEmitEventByName(result.additionalData.actionCallback, window, result);
- } else if (result) {
- this.emit('notification', result);
- }
- };
-
- // triggered on error
- const fail = (msg) => {
- const e = (typeof msg === 'string') ? new Error(msg) : msg;
- this.emit('error', e);
- };
-
- // wait at least one process tick to allow event subscriptions
- setTimeout(() => {
- exec(success, fail, 'PushNotification', 'init', [options]);
- }, 10);
- }
-
- /**
- * Unregister from push notifications
- */
- unregister(successCallback, errorCallback = () => {}, options) {
- if (typeof errorCallback !== 'function') {
- console.log('PushNotification.unregister failure: failure parameter not a function');
- return;
- }
-
- if (typeof successCallback !== 'function') {
- console.log('PushNotification.unregister failure: success callback parameter ' +
- ' must be a function');
- return;
- }
-
- const cleanHandlersAndPassThrough = () => {
- if (!options) {
- this.handlers = {
- registration: [],
- notification: [],
- error: [],
- };
- }
- successCallback();
- };
-
- exec(cleanHandlersAndPassThrough, errorCallback, 'PushNotification', 'unregister', [options]);
- }
-
- /**
- * subscribe to a topic
- * @param {String} topic topic to subscribe
- * @param {Function} successCallback success callback
- * @param {Function} errorCallback error callback
- * @return {void}
- */
- subscribe(topic, successCallback, errorCallback = () => {}) {
- if (typeof errorCallback !== 'function') {
- console.log('PushNotification.subscribe failure: ' +
- 'failure parameter not a function');
- return;
- }
-
- if (typeof successCallback !== 'function') {
- console.log('PushNotification.subscribe failure: ' +
- 'success callback parameter must be a function');
- return;
- }
-
- exec(successCallback, errorCallback, 'PushNotification', 'subscribe', [topic]);
- }
-
- /**
- * unsubscribe to a topic
- * @param {String} topic topic to unsubscribe
- * @param {Function} successCallback success callback
- * @param {Function} errorCallback error callback
- * @return {void}
- */
- unsubscribe(topic, successCallback, errorCallback = () => {}) {
- if (typeof errorCallback !== 'function') {
- console.log('PushNotification.unsubscribe failure: failure parameter not a function');
- return;
- }
-
- if (typeof successCallback !== 'function') {
- console.log('PushNotification.unsubscribe failure: ' +
- 'success callback parameter must be a function');
- return;
- }
-
- exec(successCallback, errorCallback, 'PushNotification', 'unsubscribe', [topic]);
- }
-
-
- /**
- * Call this to set the application icon badge
- */
- setApplicationIconBadgeNumber(successCallback, errorCallback = () => {}, badge) {
- if (typeof errorCallback !== 'function') {
- console.log('PushNotification.setApplicationIconBadgeNumber failure: failure ' +
- 'parameter not a function');
- return;
- }
-
- if (typeof successCallback !== 'function') {
- console.log('PushNotification.setApplicationIconBadgeNumber failure: success ' +
- 'callback parameter must be a function');
- return;
- }
-
- exec(successCallback, errorCallback, 'PushNotification',
- 'setApplicationIconBadgeNumber', [{ badge }]);
- }
-
- /**
- * Get the application icon badge
- */
-
- getApplicationIconBadgeNumber(successCallback, errorCallback = () => {}) {
- if (typeof errorCallback !== 'function') {
- console.log('PushNotification.getApplicationIconBadgeNumber failure: failure ' +
- 'parameter not a function');
- return;
- }
-
- if (typeof successCallback !== 'function') {
- console.log('PushNotification.getApplicationIconBadgeNumber failure: success ' +
- 'callback parameter must be a function');
- return;
- }
-
- exec(successCallback, errorCallback, 'PushNotification', 'getApplicationIconBadgeNumber', []);
- }
-
- /**
- * Clear all notifications
- */
-
- clearAllNotifications(successCallback = () => {}, errorCallback = () => {}) {
- if (typeof errorCallback !== 'function') {
- console.log('PushNotification.clearAllNotifications failure: failure parameter ' +
- 'not a function');
- return;
- }
-
- if (typeof successCallback !== 'function') {
- console.log('PushNotification.clearAllNotifications failure: success callback ' +
- 'parameter must be a function');
- return;
- }
-
- exec(successCallback, errorCallback, 'PushNotification', 'clearAllNotifications', []);
- }
- /**
- * Listen for an event.
- *
- * The following events are supported:
- *
- * - registration
- * - notification
- * - error
- *
- * @param {String} eventName to subscribe to.
- * @param {Function} callback triggered on the event.
- */
-
- on(eventName, callback) {
- if (!this.handlers.hasOwnProperty(eventName)) {
- this.handlers[eventName] = [];
- }
- this.handlers[eventName].push(callback);
- }
-
- /**
- * Remove event listener.
- *
- * @param {String} eventName to match subscription.
- * @param {Function} handle function associated with event.
- */
-
- off(eventName, handle) {
- if (this.handlers.hasOwnProperty(eventName)) {
- const handleIndex = this.handlers[eventName].indexOf(handle);
- if (handleIndex >= 0) {
- this.handlers[eventName].splice(handleIndex, 1);
- }
- }
- }
-
- /**
- * Emit an event.
- *
- * This is intended for internal use only.
- *
- * @param {String} eventName is the event to trigger.
- * @param {*} all arguments are passed to the event listeners.
- *
- * @return {Boolean} is true when the event is triggered otherwise false.
- */
-
- emit(...args) {
- const eventName = args.shift();
-
- if (!this.handlers.hasOwnProperty(eventName)) {
- return false;
- }
-
- for (let i = 0, length = this.handlers[eventName].length; i < length; i++) {
- const callback = this.handlers[eventName][i];
- if (typeof callback === 'function') {
- callback.apply(undefined, args);
- } else {
- console.log(`event handler: ${eventName} must be a function`);
- }
- }
-
- return true;
- }
-
- finish(successCallback = () => {}, errorCallback = () => {}, id = 'handler') {
- if (typeof successCallback !== 'function') {
- console.log('finish failure: success callback parameter must be a function');
- return;
- }
-
- if (typeof errorCallback !== 'function') {
- console.log('finish failure: failure parameter not a function');
- return;
- }
-
- exec(successCallback, errorCallback, 'PushNotification', 'finish', [id]);
- }
-}
-
-/*!
- * Push Notification Plugin.
- */
-
-module.exports = {
- /**
- * Register for Push Notifications.
- *
- * This method will instantiate a new copy of the PushNotification object
- * and start the registration process.
- *
- * @param {Object} options
- * @return {PushNotification} instance
- */
-
- init: (options) => {
- return new PushNotification(options);
- },
-
- hasPermission: (successCallback, errorCallback) => {
- exec(successCallback, errorCallback, 'PushNotification', 'hasPermission', []);
- },
-
- /**
- * PushNotification Object.
- *
- * Expose the PushNotification object for direct use
- * and testing. Typically, you should use the
- * .init helper method.
- */
- PushNotification,
-};