mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-16 13:07:14 +01:00
1 line
62 KiB
Plaintext
1 line
62 KiB
Plaintext
{"version":3,"file":"push.js","sources":["../rollupPluginBabelHelpers","../src/push/Messages.js","../src/push/Permission.js","../src/push/Util.js","../src/agents/AbstractAgent.js","../src/agents/DesktopAgent.js","../src/agents/MobileChromeAgent.js","../src/agents/MobileFirefoxAgent.js","../src/agents/MSAgent.js","../src/agents/WebKitAgent.js","../src/push/Push.js","../src/index.js"],"sourcesContent":["export { _typeof as typeof, _jsx as jsx, _asyncIterator as asyncIterator, _AwaitValue as AwaitValue, _AsyncGenerator as AsyncGenerator, _wrapAsyncGenerator as wrapAsyncGenerator, _awaitAsyncGenerator as awaitAsyncGenerator, _asyncGeneratorDelegate as asyncGeneratorDelegate, _asyncToGenerator as asyncToGenerator, _classCallCheck as classCallCheck, _createClass as createClass, _defineEnumerableProperties as defineEnumerableProperties, _defaults as defaults, _defineProperty as defineProperty, _extends as extends, _get as get, _inherits as inherits, _inheritsLoose as inheritsLoose, _instanceof as instanceof, _interopRequireDefault as interopRequireDefault, _interopRequireWildcard as interopRequireWildcard, _newArrowCheck as newArrowCheck, _objectDestructuringEmpty as objectDestructuringEmpty, _objectWithoutProperties as objectWithoutProperties, _assertThisInitialized as assertThisInitialized, _possibleConstructorReturn as possibleConstructorReturn, _set as set, _slicedToArray as slicedToArray, _slicedToArrayLoose as slicedToArrayLoose, _taggedTemplateLiteral as taggedTemplateLiteral, _taggedTemplateLiteralLoose as taggedTemplateLiteralLoose, _temporalRef as temporalRef, _readOnlyError as readOnlyError, _classNameTDZError as classNameTDZError, _temporalUndefined as temporalUndefined, _toArray as toArray, _toConsumableArray as toConsumableArray, _skipFirstGeneratorNext as skipFirstGeneratorNext, _toPropertyKey as toPropertyKey, _initializerWarningHelper as initializerWarningHelper, _initializerDefineProperty as initializerDefineProperty, _applyDecoratedDescriptor as applyDecoratedDescriptor };\n\nfunction _typeof(obj) {\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function (obj) {\n return typeof obj;\n };\n } else {\n _typeof = function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nvar REACT_ELEMENT_TYPE;\n\nfunction _jsx(type, props, key, children) {\n if (!REACT_ELEMENT_TYPE) {\n REACT_ELEMENT_TYPE = typeof Symbol === \"function\" && Symbol.for && Symbol.for(\"react.element\") || 0xeac7;\n }\n\n var defaultProps = type && type.defaultProps;\n var childrenLength = arguments.length - 3;\n\n if (!props && childrenLength !== 0) {\n props = {};\n }\n\n if (props && defaultProps) {\n for (var propName in defaultProps) {\n if (props[propName] === void 0) {\n props[propName] = defaultProps[propName];\n }\n }\n } else if (!props) {\n props = defaultProps || {};\n }\n\n if (childrenLength === 1) {\n props.children = children;\n } else if (childrenLength > 1) {\n var childArray = new Array(childrenLength);\n\n for (var i = 0; i < childrenLength; i++) {\n childArray[i] = arguments[i + 3];\n }\n\n props.children = childArray;\n }\n\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key === undefined ? null : '' + key,\n ref: null,\n props: props,\n _owner: null\n };\n}\n\nfunction _asyncIterator(iterable) {\n if (typeof Symbol === \"function\") {\n if (Symbol.asyncIterator) {\n var method = iterable[Symbol.asyncIterator];\n if (method != null) return method.call(iterable);\n }\n\n if (Symbol.iterator) {\n return iterable[Symbol.iterator]();\n }\n }\n\n throw new TypeError(\"Object is not async iterable\");\n}\n\nfunction _AwaitValue(value) {\n this.wrapped = value;\n}\n\nfunction _AsyncGenerator(gen) {\n var front, back;\n\n function send(key, arg) {\n return new Promise(function (resolve, reject) {\n var request = {\n key: key,\n arg: arg,\n resolve: resolve,\n reject: reject,\n next: null\n };\n\n if (back) {\n back = back.next = request;\n } else {\n front = back = request;\n resume(key, arg);\n }\n });\n }\n\n function resume(key, arg) {\n try {\n var result = gen[key](arg);\n var value = result.value;\n var wrappedAwait = value instanceof _AwaitValue;\n Promise.resolve(wrappedAwait ? value.wrapped : value).then(function (arg) {\n if (wrappedAwait) {\n resume(\"next\", arg);\n return;\n }\n\n settle(result.done ? \"return\" : \"normal\", arg);\n }, function (err) {\n resume(\"throw\", err);\n });\n } catch (err) {\n settle(\"throw\", err);\n }\n }\n\n function settle(type, value) {\n switch (type) {\n case \"return\":\n front.resolve({\n value: value,\n done: true\n });\n break;\n\n case \"throw\":\n front.reject(value);\n break;\n\n default:\n front.resolve({\n value: value,\n done: false\n });\n break;\n }\n\n front = front.next;\n\n if (front) {\n resume(front.key, front.arg);\n } else {\n back = null;\n }\n }\n\n this._invoke = send;\n\n if (typeof gen.return !== \"function\") {\n this.return = undefined;\n }\n}\n\nif (typeof Symbol === \"function\" && Symbol.asyncIterator) {\n _AsyncGenerator.prototype[Symbol.asyncIterator] = function () {\n return this;\n };\n}\n\n_AsyncGenerator.prototype.next = function (arg) {\n return this._invoke(\"next\", arg);\n};\n\n_AsyncGenerator.prototype.throw = function (arg) {\n return this._invoke(\"throw\", arg);\n};\n\n_AsyncGenerator.prototype.return = function (arg) {\n return this._invoke(\"return\", arg);\n};\n\nfunction _wrapAsyncGenerator(fn) {\n return function () {\n return new _AsyncGenerator(fn.apply(this, arguments));\n };\n}\n\nfunction _awaitAsyncGenerator(value) {\n return new _AwaitValue(value);\n}\n\nfunction _asyncGeneratorDelegate(inner, awaitWrap) {\n var iter = {},\n waiting = false;\n\n function pump(key, value) {\n waiting = true;\n value = new Promise(function (resolve) {\n resolve(inner[key](value));\n });\n return {\n done: false,\n value: awaitWrap(value)\n };\n }\n\n ;\n\n if (typeof Symbol === \"function\" && Symbol.iterator) {\n iter[Symbol.iterator] = function () {\n return this;\n };\n }\n\n iter.next = function (value) {\n if (waiting) {\n waiting = false;\n return value;\n }\n\n return pump(\"next\", value);\n };\n\n if (typeof inner.throw === \"function\") {\n iter.throw = function (value) {\n if (waiting) {\n waiting = false;\n throw value;\n }\n\n return pump(\"throw\", value);\n };\n }\n\n if (typeof inner.return === \"function\") {\n iter.return = function (value) {\n return pump(\"return\", value);\n };\n }\n\n return iter;\n}\n\nfunction _asyncToGenerator(fn) {\n return function () {\n var self = this,\n args = arguments;\n return new Promise(function (resolve, reject) {\n var gen = fn.apply(self, args);\n\n function step(key, arg) {\n try {\n var info = gen[key](arg);\n var value = info.value;\n } catch (error) {\n reject(error);\n return;\n }\n\n if (info.done) {\n resolve(value);\n } else {\n Promise.resolve(value).then(_next, _throw);\n }\n }\n\n function _next(value) {\n step(\"next\", value);\n }\n\n function _throw(err) {\n step(\"throw\", err);\n }\n\n _next();\n });\n };\n}\n\nfunction _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _defineEnumerableProperties(obj, descs) {\n for (var key in descs) {\n var desc = descs[key];\n desc.configurable = desc.enumerable = true;\n if (\"value\" in desc) desc.writable = true;\n Object.defineProperty(obj, key, desc);\n }\n\n if (Object.getOwnPropertySymbols) {\n var objectSymbols = Object.getOwnPropertySymbols(descs);\n\n for (var i = 0; i < objectSymbols.length; i++) {\n var sym = objectSymbols[i];\n var desc = descs[sym];\n desc.configurable = desc.enumerable = true;\n if (\"value\" in desc) desc.writable = true;\n Object.defineProperty(obj, sym, desc);\n }\n }\n\n return obj;\n}\n\nfunction _defaults(obj, defaults) {\n var keys = Object.getOwnPropertyNames(defaults);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var value = Object.getOwnPropertyDescriptor(defaults, key);\n\n if (value && value.configurable && obj[key] === undefined) {\n Object.defineProperty(obj, key, value);\n }\n }\n\n return obj;\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nfunction _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nfunction _get(object, property, receiver) {\n if (object === null) object = Function.prototype;\n var desc = Object.getOwnPropertyDescriptor(object, property);\n\n if (desc === undefined) {\n var parent = Object.getPrototypeOf(object);\n\n if (parent === null) {\n return undefined;\n } else {\n return _get(parent, property, receiver);\n }\n } else if (\"value\" in desc) {\n return desc.value;\n } else {\n var getter = desc.get;\n\n if (getter === undefined) {\n return undefined;\n }\n\n return getter.call(receiver);\n }\n}\n\nfunction _inherits(subClass, superClass) {\n if (typeof superClass !== \"function\" && superClass !== null) {\n throw new TypeError(\"Super expression must either be null or a function\");\n }\n\n subClass.prototype = Object.create(superClass && superClass.prototype, {\n constructor: {\n value: subClass,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;\n}\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\n\nfunction _instanceof(left, right) {\n if (right != null && typeof Symbol !== \"undefined\" && right[Symbol.hasInstance]) {\n return right[Symbol.hasInstance](left);\n } else {\n return left instanceof right;\n }\n}\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\n\nfunction _interopRequireWildcard(obj) {\n if (obj && obj.__esModule) {\n return obj;\n } else {\n var newObj = {};\n\n if (obj != null) {\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {};\n\n if (desc.get || desc.set) {\n Object.defineProperty(newObj, key, desc);\n } else {\n newObj[key] = obj[key];\n }\n }\n }\n }\n\n newObj.default = obj;\n return newObj;\n }\n}\n\nfunction _newArrowCheck(innerThis, boundThis) {\n if (innerThis !== boundThis) {\n throw new TypeError(\"Cannot instantiate an arrow function\");\n }\n}\n\nfunction _objectDestructuringEmpty(obj) {\n if (obj == null) throw new TypeError(\"Cannot destructure undefined\");\n}\n\nfunction _objectWithoutProperties(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n if (Object.getOwnPropertySymbols) {\n var sourceSymbolKeys = Object.getOwnPropertySymbols(source);\n\n for (i = 0; i < sourceSymbolKeys.length; i++) {\n key = sourceSymbolKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;\n target[key] = source[key];\n }\n }\n\n return target;\n}\n\nfunction _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}\n\nfunction _possibleConstructorReturn(self, call) {\n if (call && (typeof call === \"object\" || typeof call === \"function\")) {\n return call;\n }\n\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}\n\nfunction _set(object, property, value, receiver) {\n var desc = Object.getOwnPropertyDescriptor(object, property);\n\n if (desc === undefined) {\n var parent = Object.getPrototypeOf(object);\n\n if (parent !== null) {\n _set(parent, property, value, receiver);\n }\n } else if (\"value\" in desc && desc.writable) {\n desc.value = value;\n } else {\n var setter = desc.set;\n\n if (setter !== undefined) {\n setter.call(receiver, value);\n }\n }\n\n return value;\n}\n\nfunction _sliceIterator(arr, i) {\n var _arr = [];\n var _n = true;\n var _d = false;\n var _e = undefined;\n\n try {\n for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nfunction _slicedToArray(arr, i) {\n if (Array.isArray(arr)) {\n return arr;\n } else if (Symbol.iterator in Object(arr)) {\n return _sliceIterator(arr, i);\n } else {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance\");\n }\n}\n\nfunction _slicedToArrayLoose(arr, i) {\n if (Array.isArray(arr)) {\n return arr;\n } else if (Symbol.iterator in Object(arr)) {\n var _arr = [];\n\n for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {\n _arr.push(_step.value);\n\n if (i && _arr.length === i) break;\n }\n\n return _arr;\n } else {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance\");\n }\n}\n\nfunction _taggedTemplateLiteral(strings, raw) {\n return Object.freeze(Object.defineProperties(strings, {\n raw: {\n value: Object.freeze(raw)\n }\n }));\n}\n\nfunction _taggedTemplateLiteralLoose(strings, raw) {\n strings.raw = raw;\n return strings;\n}\n\nfunction _temporalRef(val, name) {\n if (val === _temporalUndefined) {\n throw new ReferenceError(name + \" is not defined - temporal dead zone\");\n } else {\n return val;\n }\n}\n\nfunction _readOnlyError(name) {\n throw new Error(\"\\\"\" + name + \"\\\" is read-only\");\n}\n\nfunction _classNameTDZError(name) {\n throw new Error(\"Class \\\"\" + name + \"\\\" cannot be referenced in computed property keys.\");\n}\n\nvar _temporalUndefined = {};\n\nfunction _toArray(arr) {\n return Array.isArray(arr) ? arr : Array.from(arr);\n}\n\nfunction _toConsumableArray(arr) {\n if (Array.isArray(arr)) {\n for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];\n\n return arr2;\n } else {\n return Array.from(arr);\n }\n}\n\nfunction _skipFirstGeneratorNext(fn) {\n return function () {\n var it = fn.apply(this, arguments);\n it.next();\n return it;\n };\n}\n\nfunction _toPropertyKey(key) {\n if (typeof key === \"symbol\") {\n return key;\n } else {\n return String(key);\n }\n}\n\nfunction _initializerWarningHelper(descriptor, context) {\n throw new Error('Decorating class property failed. Please ensure that ' + 'proposal-class-properties is enabled and set to use loose mode. ' + 'To use proposal-class-properties in spec mode with decorators, wait for ' + 'the next major version of decorators in stage 2.');\n}\n\nfunction _initializerDefineProperty(target, property, descriptor, context) {\n if (!descriptor) return;\n Object.defineProperty(target, property, {\n enumerable: descriptor.enumerable,\n configurable: descriptor.configurable,\n writable: descriptor.writable,\n value: descriptor.initializer ? descriptor.initializer.call(context) : void 0\n });\n}\n\nfunction _applyDecoratedDescriptor(target, property, decorators, descriptor, context) {\n var desc = {};\n Object['ke' + 'ys'](descriptor).forEach(function (key) {\n desc[key] = descriptor[key];\n });\n desc.enumerable = !!desc.enumerable;\n desc.configurable = !!desc.configurable;\n\n if ('value' in desc || desc.initializer) {\n desc.writable = true;\n }\n\n desc = decorators.slice().reverse().reduce(function (desc, decorator) {\n return decorator(target, property, desc) || desc;\n }, desc);\n\n if (context && desc.initializer !== void 0) {\n desc.value = desc.initializer ? desc.initializer.call(context) : void 0;\n desc.initializer = undefined;\n }\n\n if (desc.initializer === void 0) {\n Object['define' + 'Property'](target, property, desc);\n desc = null;\n }\n\n return desc;\n}","// @flow\nconst errorPrefix = 'PushError:';\n\nexport default {\n errors: {\n incompatible: `${errorPrefix} Push.js is incompatible with browser.`,\n invalid_plugin: `${errorPrefix} plugin class missing from plugin manifest (invalid plugin). Please check the documentation.`,\n invalid_title: `${errorPrefix} title of notification must be a string`,\n permission_denied: `${errorPrefix} permission request declined`,\n sw_notification_error: `${errorPrefix} could not show a ServiceWorker notification due to the following reason: `,\n sw_registration_error: `${errorPrefix} could not register the ServiceWorker due to the following reason: `,\n unknown_interface: `${errorPrefix} unable to create notification: unknown interface`\n }\n};\n","// @flow\nimport type { Global } from 'types';\n\nexport default class Permission {\n // Private members\n _permissions: string[];\n _win: Global;\n\n // Public members\n GRANTED: string;\n DEFAULT: string;\n DENIED: string;\n\n constructor(win: Global) {\n this._win = win;\n this.GRANTED = 'granted';\n this.DEFAULT = 'default';\n this.DENIED = 'denied';\n this._permissions = [this.GRANTED, this.DEFAULT, this.DENIED];\n }\n\n /**\n * Requests permission for desktop notifications\n * @param {Function} onGranted - Function to execute once permission is granted\n * @param {Function} onDenied - Function to execute once permission is denied\n * @return {void, Promise}\n */\n request(onGranted: () => void, onDenied: () => void) {\n return arguments.length > 0\n ? this._requestWithCallback(...arguments)\n : this._requestAsPromise();\n }\n\n /**\n * Old permissions implementation deprecated in favor of a promise based one\n * @deprecated Since V1.0.4\n * @param {Function} onGranted - Function to execute once permission is granted\n * @param {Function} onDenied - Function to execute once permission is denied\n * @return {void}\n */\n _requestWithCallback(onGranted: () => void, onDenied: () => void) {\n const existing = this.get();\n\n var resolve = (result = this._win.Notification.permission) => {\n if (typeof result === 'undefined' && this._win.webkitNotifications)\n result = this._win.webkitNotifications.checkPermission();\n if (result === this.GRANTED || result === 0) {\n if (onGranted) onGranted();\n } else if (onDenied) onDenied();\n };\n\n /* Permissions already set */\n if (existing !== this.DEFAULT) {\n resolve(existing);\n } else if (\n this._win.webkitNotifications &&\n this._win.webkitNotifications.checkPermission\n ) {\n /* Safari 6+, Legacy webkit browsers */\n this._win.webkitNotifications.requestPermission(resolve);\n } else if (\n this._win.Notification &&\n this._win.Notification.requestPermission\n ) {\n /* Chrome 23+ */\n this._win.Notification\n .requestPermission()\n .then(resolve)\n .catch(function() {\n if (onDenied) onDenied();\n });\n } else if (onGranted) {\n /* Let the user continue by default */\n onGranted();\n }\n }\n\n /**\n * Requests permission for desktop notifications in a promise based way\n * @return {Promise}\n */\n _requestAsPromise(): Promise<void> {\n const existing = this.get();\n\n let isGranted = result => result === this.GRANTED || result === 0;\n\n /* Permissions already set */\n var hasPermissions = existing !== this.DEFAULT;\n\n /* Safari 6+, Chrome 23+ */\n var isModernAPI =\n this._win.Notification && this._win.Notification.requestPermission;\n\n /* Legacy webkit browsers */\n var isWebkitAPI =\n this._win.webkitNotifications &&\n this._win.webkitNotifications.checkPermission;\n\n return new Promise((resolvePromise, rejectPromise) => {\n var resolver = result =>\n isGranted(result) ? resolvePromise() : rejectPromise();\n\n if (hasPermissions) {\n resolver(existing);\n } else if (isWebkitAPI) {\n this._win.webkitNotifications.requestPermission(result => {\n resolver(result);\n });\n } else if (isModernAPI) {\n this._win.Notification\n .requestPermission()\n .then(result => {\n resolver(result);\n })\n .catch(rejectPromise);\n } else resolvePromise();\n });\n }\n\n /**\n * Returns whether Push has been granted permission to run\n * @return {Boolean}\n */\n has() {\n return this.get() === this.GRANTED;\n }\n\n /**\n * Gets the permission level\n * @return {Permission} The permission level\n */\n get() {\n let permission;\n\n /* Safari 6+, Chrome 23+ */\n if (this._win.Notification && this._win.Notification.permission)\n permission = this._win.Notification.permission;\n else if (\n this._win.webkitNotifications &&\n this._win.webkitNotifications.checkPermission\n )\n /* Legacy webkit browsers */\n permission = this._permissions[\n this._win.webkitNotifications.checkPermission()\n ];\n else if (navigator.mozNotification)\n /* Firefox Mobile */\n permission = this.GRANTED;\n else if (this._win.external && this._win.external.msIsSiteMode)\n /* IE9+ */\n permission = this._win.external.msIsSiteMode()\n ? this.GRANTED\n : this.DEFAULT;\n else permission = this.GRANTED;\n\n return permission;\n }\n}\n","// @flow\nexport default class Util {\n static isUndefined(obj) {\n return obj === undefined;\n }\n\n static isNull(obs) {\n return obj === null;\n }\n\n static isString(obj) {\n return typeof obj === 'string';\n }\n\n static isFunction(obj) {\n return obj && {}.toString.call(obj) === '[object Function]';\n }\n\n static isObject(obj) {\n return typeof obj === 'object';\n }\n\n static objectMerge(target, source) {\n for (var key in source) {\n if (\n target.hasOwnProperty(key) &&\n this.isObject(target[key]) &&\n this.isObject(source[key])\n ) {\n this.objectMerge(target[key], source[key]);\n } else {\n target[key] = source[key];\n }\n }\n }\n}\n","// @flow\nimport type { Global } from 'types';\n\nexport default class AbstractAgent {\n _win: Global;\n\n constructor(win: Global) {\n this._win = win;\n }\n}\n","// @flow\nimport { AbstractAgent } from 'agents';\nimport { Util } from 'push';\nimport type { PushOptions, GenericNotification, Global } from 'types';\n\n/**\n * Notification agent for modern desktop browsers:\n * Safari 6+, Firefox 22+, Chrome 22+, Opera 25+\n */\nexport default class DesktopAgent extends AbstractAgent {\n _win: Global;\n\n /**\n * Returns a boolean denoting support\n * @returns {Boolean} boolean denoting whether webkit notifications are supported\n */\n isSupported() {\n return this._win.Notification !== undefined;\n }\n\n /**\n * Creates a new notification\n * @param title - notification title\n * @param options - notification options array\n * @returns {Notification}\n */\n create(title: string, options: PushOptions) {\n return new this._win.Notification(title, {\n icon:\n Util.isString(options.icon) ||\n Util.isUndefined(options.icon) ||\n Util.isNull(options.icon)\n ? options.icon\n : options.icon.x32,\n body: options.body,\n tag: options.tag,\n requireInteraction: options.requireInteraction\n });\n }\n\n /**\n * Close a given notification\n * @param notification - notification to close\n */\n close(notification: GenericNotification) {\n notification.close();\n }\n}\n","// @flow\nimport { Util, Messages } from 'push';\nimport { AbstractAgent } from 'agents';\nimport type { Global, GenericNotification, PushOptions } from 'types';\n\n/**\n * Notification agent for modern desktop browsers:\n * Safari 6+, Firefox 22+, Chrome 22+, Opera 25+\n */\nexport default class MobileChromeAgent extends AbstractAgent {\n _win: Global;\n\n /**\n * Returns a boolean denoting support\n * @returns {Boolean} boolean denoting whether webkit notifications are supported\n */\n isSupported() {\n return (\n this._win.navigator !== undefined &&\n this._win.navigator.serviceWorker !== undefined\n );\n }\n\n /**\n * Returns the function body as a string\n * @param func\n */\n getFunctionBody(func: () => void) {\n const str = func.toString().match(/function[^{]+{([\\s\\S]*)}$/);\n return typeof str !== 'undefined' && str !== null && str.length > 1\n ? str[1]\n : null;\n }\n\n /**\n * Creates a new notification\n * @param id ID of notification\n * @param title Title of notification\n * @param options Options object\n * @param serviceWorker ServiceWorker path\n * @param callback Callback function\n */\n create(\n id: number,\n title: string,\n options: PushOptions,\n serviceWorker: string,\n callback: (GenericNotification[]) => void\n ) {\n /* Register ServiceWorker */\n this._win.navigator.serviceWorker.register(serviceWorker);\n\n this._win.navigator.serviceWorker.ready\n .then(registration => {\n /* Local data the service worker will use */\n let localData = {\n id: id,\n link: options.link,\n origin: document.location.href,\n onClick: Util.isFunction(options.onClick)\n ? this.getFunctionBody(options.onClick)\n : '',\n onClose: Util.isFunction(options.onClose)\n ? this.getFunctionBody(options.onClose)\n : ''\n };\n\n /* Merge the local data with user-provided data */\n if (options.data !== undefined && options.data !== null)\n localData = Object.assign(localData, options.data);\n\n /* Show the notification */\n registration\n .showNotification(title, {\n icon: options.icon,\n body: options.body,\n vibrate: options.vibrate,\n tag: options.tag,\n data: localData,\n requireInteraction: options.requireInteraction,\n silent: options.silent\n })\n .then(() => {\n registration.getNotifications().then(notifications => {\n /* Send an empty message so the ServiceWorker knows who the client is */\n registration.active.postMessage('');\n\n /* Trigger callback */\n callback(notifications);\n });\n })\n .catch(function(error) {\n throw new Error(\n Messages.errors.sw_notification_error +\n error.message\n );\n });\n })\n .catch(function(error) {\n throw new Error(\n Messages.errors.sw_registration_error + error.message\n );\n });\n }\n\n /**\n * Close all notification\n */\n close() {\n // Can't do this with service workers\n }\n}\n","// @flow\nimport { AbstractAgent } from 'agents';\nimport type { Global, PushOptions } from 'types';\n\n/**\n * Notification agent for modern desktop browsers:\n * Safari 6+, Firefox 22+, Chrome 22+, Opera 25+\n */\nexport default class MobileFirefoxAgent extends AbstractAgent {\n _win: Global;\n\n /**\n * Returns a boolean denoting support\n * @returns {Boolean} boolean denoting whether webkit notifications are supported\n */\n isSupported() {\n return this._win.navigator.mozNotification !== undefined;\n }\n\n /**\n * Creates a new notification\n * @param title - notification title\n * @param options - notification options array\n * @returns {Notification}\n */\n create(title: string, options: PushOptions) {\n let notification = this._win.navigator.mozNotification.createNotification(\n title,\n options.body,\n options.icon\n );\n\n notification.show();\n\n return notification;\n }\n}\n","// @flow\nimport { AbstractAgent } from 'agents';\nimport { Util } from 'push';\nimport type { PushOptions, Global } from 'types';\n\n/**\n * Notification agent for IE9\n */\nexport default class MSAgent extends AbstractAgent {\n _win: Global;\n\n /**\n * Returns a boolean denoting support\n * @returns {Boolean} boolean denoting whether webkit notifications are supported\n */\n isSupported() {\n return (\n this._win.external !== undefined &&\n this._win.external.msIsSiteMode !== undefined\n );\n }\n\n /**\n * Creates a new notification\n * @param title - notification title\n * @param options - notification options array\n * @returns {Notification}\n */\n create(title: string, options: PushOptions) {\n /* Clear any previous notifications */\n this._win.external.msSiteModeClearIconOverlay();\n\n this._win.external.msSiteModeSetIconOverlay(\n Util.isString(options.icon) || Util.isUndefined(options.icon)\n ? options.icon\n : options.icon.x16,\n title\n );\n\n this._win.external.msSiteModeActivate();\n\n return null;\n }\n\n /**\n * Close a given notification\n * @param notification - notification to close\n */\n close() {\n this._win.external.msSiteModeClearIconOverlay();\n }\n}\n","// @flow\nimport { AbstractAgent } from 'agents';\nimport type { Global, GenericNotification, PushOptions } from 'types';\n\n/**\n * Notification agent for old Chrome versions (and some) Firefox\n */\nexport default class WebKitAgent extends AbstractAgent {\n _win: Global;\n\n /**\n * Returns a boolean denoting support\n * @returns {Boolean} boolean denoting whether webkit notifications are supported\n */\n isSupported() {\n return this._win.webkitNotifications !== undefined;\n }\n\n /**\n * Creates a new notification\n * @param title - notification title\n * @param options - notification options array\n * @returns {Notification}\n */\n create(title: string, options: PushOptions) {\n let notification = this._win.webkitNotifications.createNotification(\n options.icon,\n title,\n options.body\n );\n\n notification.show();\n\n return notification;\n }\n\n /**\n * Close a given notification\n * @param notification - notification to close\n */\n close(notification: GenericNotification) {\n notification.cancel();\n }\n}\n","// @flow\nimport { Messages, Permission, Util } from 'push';\nimport type { PluginManifest, GenericNotification, PushOptions } from 'types';\n\n/* Import notification agents */\nimport {\n DesktopAgent,\n MobileChromeAgent,\n MobileFirefoxAgent,\n MSAgent,\n WebKitAgent\n} from 'agents';\n\nexport default class Push {\n // Private members\n _agents: {\n desktop: DesktopAgent,\n chrome: MobileChromeAgent,\n firefox: MobileFirefoxAgent,\n ms: MSAgent,\n webkit: WebKitAgent\n };\n _configuration: {\n serviceWorker: string,\n fallback: ({}) => void\n };\n _currentId: number;\n _notifications: {};\n _win: {};\n\n // Public members\n Permission: Permission;\n\n constructor(win: {}) {\n /* Private variables */\n\n /* ID to use for new notifications */\n this._currentId = 0;\n\n /* Map of open notifications */\n this._notifications = {};\n\n /* Window object */\n this._win = win;\n\n /* Public variables */\n this.Permission = new Permission(win);\n\n /* Agents */\n this._agents = {\n desktop: new DesktopAgent(win),\n chrome: new MobileChromeAgent(win),\n firefox: new MobileFirefoxAgent(win),\n ms: new MSAgent(win),\n webkit: new WebKitAgent(win)\n };\n\n this._configuration = {\n serviceWorker: '/serviceWorker.min.js',\n fallback: function(payload) {}\n };\n }\n\n /**\n * Closes a notification\n * @param id ID of notification\n * @returns {boolean} denotes whether the operation was successful\n * @private\n */\n _closeNotification(id: number | string) {\n let success = true;\n const notification = this._notifications[id];\n\n if (notification !== undefined) {\n success = this._removeNotification(id);\n\n /* Safari 6+, Firefox 22+, Chrome 22+, Opera 25+ */\n if (this._agents.desktop.isSupported())\n this._agents.desktop.close(notification);\n else if (this._agents.webkit.isSupported())\n /* Legacy WebKit browsers */\n this._agents.webkit.close(notification);\n else if (this._agents.ms.isSupported())\n /* IE9 */\n this._agents.ms.close();\n else {\n success = false;\n throw new Error(Messages.errors.unknown_interface);\n }\n\n return success;\n }\n\n return false;\n }\n\n /**\n * Adds a notification to the global dictionary of notifications\n * @param {Notification} notification\n * @return {Integer} Dictionary key of the notification\n * @private\n */\n _addNotification(notification: GenericNotification) {\n const id = this._currentId;\n this._notifications[id] = notification;\n this._currentId++;\n return id;\n }\n\n /**\n * Removes a notification with the given ID\n * @param {Integer} id - Dictionary key/ID of the notification to remove\n * @return {Boolean} boolean denoting success\n * @private\n */\n _removeNotification(id: number | string) {\n let success = false;\n\n if (this._notifications.hasOwnProperty(id)) {\n /* We're successful if we omit the given ID from the new array */\n delete this._notifications[id];\n success = true;\n }\n\n return success;\n }\n\n /**\n * Creates the wrapper for a given notification\n *\n * @param {Integer} id - Dictionary key/ID of the notification\n * @param {Map} options - Options used to create the notification\n * @returns {Map} wrapper hashmap object\n * @private\n */\n _prepareNotification(id: number, options: PushOptions) {\n let wrapper;\n\n /* Wrapper used to get/close notification later on */\n wrapper = {\n get: () => {\n return this._notifications[id];\n },\n\n close: () => {\n this._closeNotification(id);\n }\n };\n\n /* Autoclose timeout */\n if (options.timeout) {\n setTimeout(() => {\n wrapper.close();\n }, options.timeout);\n }\n\n return wrapper;\n }\n\n /**\n * Find the most recent notification from a ServiceWorker and add it to the global array\n * @param notifications\n * @private\n */\n _serviceWorkerCallback(\n notifications: GenericNotification[],\n options: PushOptions,\n resolve: ({} | null) => void\n ) {\n let id = this._addNotification(notifications[notifications.length - 1]);\n\n /* Listen for close requests from the ServiceWorker */\n if (navigator && navigator.serviceWorker) {\n navigator.serviceWorker.addEventListener('message', event => {\n const data = JSON.parse(event.data);\n\n if (data.action === 'close' && Number.isInteger(data.id))\n this._removeNotification(data.id);\n });\n\n resolve(this._prepareNotification(id, options));\n }\n\n resolve(null);\n }\n\n /**\n * Callback function for the 'create' method\n * @return {void}\n * @private\n */\n _createCallback(\n title: string,\n options: PushOptions,\n resolve: ({} | null) => void\n ) {\n let notification = null;\n let onClose;\n\n /* Set empty settings if none are specified */\n options = options || {};\n\n /* onClose event handler */\n onClose = id => {\n /* A bit redundant, but covers the cases when close() isn't explicitly called */\n this._removeNotification(id);\n if (Util.isFunction(options.onClose)) {\n options.onClose.call(this, notification);\n }\n };\n\n /* Safari 6+, Firefox 22+, Chrome 22+, Opera 25+ */\n if (this._agents.desktop.isSupported()) {\n try {\n /* Create a notification using the API if possible */\n notification = this._agents.desktop.create(title, options);\n } catch (e) {\n const id = this._currentId;\n const sw = this.config().serviceWorker;\n const cb = notifications =>\n this._serviceWorkerCallback(\n notifications,\n options,\n resolve\n );\n /* Create a Chrome ServiceWorker notification if it isn't supported */\n if (this._agents.chrome.isSupported()) {\n this._agents.chrome.create(id, title, options, sw, cb);\n }\n }\n /* Legacy WebKit browsers */\n } else if (this._agents.webkit.isSupported())\n notification = this._agents.webkit.create(title, options);\n else if (this._agents.firefox.isSupported())\n /* Firefox Mobile */\n this._agents.firefox.create(title, options);\n else if (this._agents.ms.isSupported())\n /* IE9 */\n notification = this._agents.ms.create(title, options);\n else {\n /* Default fallback */\n options.title = title;\n this.config().fallback(options);\n }\n\n if (notification !== null) {\n const id = this._addNotification(notification);\n const wrapper = this._prepareNotification(id, options);\n\n /* Notification callbacks */\n if (Util.isFunction(options.onShow))\n notification.addEventListener('show', options.onShow);\n\n if (Util.isFunction(options.onError))\n notification.addEventListener('error', options.onError);\n\n if (Util.isFunction(options.onClick))\n notification.addEventListener('click', options.onClick);\n\n notification.addEventListener('close', () => {\n onClose(id);\n });\n\n notification.addEventListener('cancel', () => {\n onClose(id);\n });\n\n /* Return the wrapper so the user can call close() */\n resolve(wrapper);\n }\n\n /* By default, pass an empty wrapper */\n resolve(null);\n }\n\n /**\n * Creates and displays a new notification\n * @param {Array} options\n * @return {Promise}\n */\n create(title: string, options: {}): Promise<void> {\n let promiseCallback;\n\n /* Fail if no or an invalid title is provided */\n if (!Util.isString(title)) {\n throw new Error(Messages.errors.invalid_title);\n }\n\n /* Request permission if it isn't granted */\n if (!this.Permission.has()) {\n promiseCallback = (resolve: () => void, reject: string => void) => {\n this.Permission\n .request()\n .then(() => {\n this._createCallback(title, options, resolve);\n })\n .catch(() => {\n reject(Messages.errors.permission_denied);\n });\n };\n } else {\n promiseCallback = (resolve: () => void, reject: string => void) => {\n try {\n this._createCallback(title, options, resolve);\n } catch (e) {\n reject(e);\n }\n };\n }\n\n return new Promise(promiseCallback);\n }\n\n /**\n * Returns the notification count\n * @return {Integer} The notification count\n */\n count() {\n let count = 0;\n let key;\n\n for (key in this._notifications)\n if (this._notifications.hasOwnProperty(key)) count++;\n\n return count;\n }\n\n /**\n * Closes a notification with the given tag\n * @param {String} tag - Tag of the notification to close\n * @return {Boolean} boolean denoting success\n */\n close(tag: string) {\n let key, notification;\n\n for (key in this._notifications) {\n if (this._notifications.hasOwnProperty(key)) {\n notification = this._notifications[key];\n\n /* Run only if the tags match */\n if (notification.tag === tag) {\n /* Call the notification's close() method */\n return this._closeNotification(key);\n }\n }\n }\n }\n\n /**\n * Clears all notifications\n * @return {Boolean} boolean denoting whether the clear was successful in closing all notifications\n */\n clear() {\n let key,\n success = true;\n\n for (key in this._notifications)\n if (this._notifications.hasOwnProperty(key))\n success = success && this._closeNotification(key);\n\n return success;\n }\n\n /**\n * Denotes whether Push is supported in the current browser\n * @returns {boolean}\n */\n supported() {\n let supported = false;\n\n for (var agent in this._agents)\n if (this._agents.hasOwnProperty(agent))\n supported = supported || this._agents[agent].isSupported();\n\n return supported;\n }\n\n /**\n * Modifies settings or returns all settings if no parameter passed\n * @param settings\n */\n config(settings?: {}) {\n if (\n typeof settings !== 'undefined' ||\n (settings !== null && Util.isObject(settings))\n )\n Util.objectMerge(this._configuration, settings);\n\n return this._configuration;\n }\n\n /**\n * Copies the functions from a plugin to the main library\n * @param plugin\n */\n extend(manifest: PluginManifest) {\n var plugin,\n Plugin,\n hasProp = {}.hasOwnProperty;\n\n if (!hasProp.call(manifest, 'plugin')) {\n throw new Error(Messages.errors.invalid_plugin);\n } else {\n if (\n hasProp.call(manifest, 'config') &&\n Util.isObject(manifest.config) &&\n manifest.config !== null\n ) {\n this.config(manifest.config);\n }\n\n Plugin = manifest.plugin;\n plugin = new Plugin(this.config());\n\n for (var member in plugin) {\n if (\n hasProp.call(plugin, member) &&\n Util.isFunction(plugin[member])\n )\n // $FlowFixMe\n this[member] = plugin[member];\n }\n }\n }\n}\n","// @flow\nimport { Push } from 'push';\n\nexport default new Push(typeof window !== 'undefined' ? window : global);\n"],"names":["errorPrefix","Permission","win","_win","GRANTED","DEFAULT","DENIED","_permissions","onGranted","onDenied","arguments","length","_requestWithCallback","_requestAsPromise","existing","get","resolve","result","Notification","permission","webkitNotifications","checkPermission","requestPermission","then","catch","isGranted","hasPermissions","isModernAPI","isWebkitAPI","Promise","resolvePromise","rejectPromise","resolver","navigator","mozNotification","external","msIsSiteMode","Util","obj","undefined","obs","toString","call","rollupPluginBabelHelpers.typeof","target","source","key","hasOwnProperty","isObject","objectMerge","AbstractAgent","DesktopAgent","title","options","isString","icon","isUndefined","isNull","x32","body","tag","requireInteraction","notification","close","MobileChromeAgent","serviceWorker","func","str","match","id","callback","register","ready","localData","link","document","location","href","isFunction","onClick","getFunctionBody","onClose","data","Object","assign","showNotification","vibrate","silent","getNotifications","active","postMessage","notifications","error","Error","Messages","errors","sw_notification_error","message","sw_registration_error","MobileFirefoxAgent","createNotification","show","MSAgent","msSiteModeClearIconOverlay","msSiteModeSetIconOverlay","x16","msSiteModeActivate","WebKitAgent","cancel","Push","_currentId","_notifications","_agents","_configuration","payload","success","_removeNotification","desktop","isSupported","webkit","ms","unknown_interface","wrapper","_closeNotification","timeout","_addNotification","addEventListener","JSON","parse","event","action","Number","isInteger","_prepareNotification","create","e","sw","config","cb","_serviceWorkerCallback","chrome","firefox","fallback","onShow","onError","promiseCallback","invalid_title","has","reject","request","_createCallback","permission_denied","count","supported","agent","settings","manifest","plugin","Plugin","hasProp","invalid_plugin","member","window","global"],"mappings":"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"} |