ouisys-engine 3.0.2 → 3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +4 -8
- package/.eslintrc.js +1 -1
- package/.nvmrc +1 -1
- package/.prettierignore +2 -1
- package/README.md +2 -4
- package/dist/api/index.d.ts +5 -5
- package/dist/api/index.js +76 -76
- package/dist/common-types/AppThunk.d.ts +11 -12
- package/dist/common-types/IOptInFlowName.d.ts +1 -1
- package/dist/common-types/ITracker.js +1 -2
- package/dist/common-types/RemoteDataState.d.ts +4 -4
- package/dist/common-types/RemoteDataState.js +17 -17
- package/dist/flows/click2smsFlow.d.ts +2 -2
- package/dist/flows/moFlow.d.ts +2 -2
- package/dist/flows/moRedirFlow.d.ts +2 -2
- package/dist/flows/oneClickFlow.d.ts +2 -2
- package/dist/flows/pinFlow.d.ts +2 -2
- package/dist/flows/pinFlow.js +2 -0
- package/dist/flows/strategy.d.ts +8 -8
- package/dist/flows/ussdFlow.d.ts +2 -2
- package/dist/ips/tryGetIPRangeName.d.ts +1 -1
- package/dist/ips/tryGetIPRangeName.js +7 -5
- package/dist/jest.config.js +1 -1
- package/dist/pacman/index.d.ts +2 -2
- package/dist/pacman/index.js +41 -41
- package/dist/pacman/queryString.js +11 -9
- package/dist/reducers/click2smsFlow/Click2smsTypes.d.ts +19 -19
- package/dist/reducers/click2smsFlow/IClick2smsConstants.d.ts +1 -1
- package/dist/reducers/click2smsFlow/index.d.ts +2 -2
- package/dist/reducers/click2smsFlow/index.js +24 -24
- package/dist/reducers/click2smsFlow/utils.d.ts +1 -1
- package/dist/reducers/click2smsFlow/utils.js +30 -30
- package/dist/reducers/moFlow/IMoConstants.d.ts +1 -1
- package/dist/reducers/moFlow/MoTypes.d.ts +13 -13
- package/dist/reducers/moFlow/index.d.ts +3 -3
- package/dist/reducers/moFlow/index.js +27 -27
- package/dist/reducers/moFlow/utils.d.ts +1 -2
- package/dist/reducers/moFlow/utils.js +28 -26
- package/dist/reducers/moRedirFlow/IMoRedirConstants.d.ts +1 -1
- package/dist/reducers/moRedirFlow/MoRedirTypes.d.ts +13 -13
- package/dist/reducers/moRedirFlow/index.d.ts +3 -3
- package/dist/reducers/moRedirFlow/index.js +27 -27
- package/dist/reducers/moRedirFlow/utils.d.ts +1 -1
- package/dist/reducers/moRedirFlow/utils.js +17 -17
- package/dist/reducers/oneClickFlow/IOneClickConstants.d.ts +1 -1
- package/dist/reducers/oneClickFlow/OneClickTypes.d.ts +10 -10
- package/dist/reducers/oneClickFlow/index.d.ts +3 -3
- package/dist/reducers/oneClickFlow/index.js +75 -68
- package/dist/reducers/oneClickFlow/utils.d.ts +2 -2
- package/dist/reducers/oneClickFlow/utils.js +70 -69
- package/dist/reducers/pinFlow/IPinConstants.d.ts +1 -1
- package/dist/reducers/pinFlow/PinTypes.d.ts +23 -23
- package/dist/reducers/pinFlow/index.d.ts +3 -3
- package/dist/reducers/pinFlow/index.js +76 -76
- package/dist/reducers/pinFlow/utils.d.ts +1 -1
- package/dist/reducers/pinFlow/utils.js +61 -65
- package/dist/reducers/strategy/IStategyActionContants.d.ts +1 -1
- package/dist/reducers/strategy/StrategyTypes.d.ts +56 -56
- package/dist/reducers/strategy/index.d.ts +2 -2
- package/dist/reducers/strategy/index.js +99 -99
- package/dist/reducers/strategy/strategies/ask_mobile_number.d.ts +3 -2
- package/dist/reducers/strategy/strategies/ask_mobile_number.js +132 -74
- package/dist/reducers/strategy/strategies/ask_operator.d.ts +2 -2
- package/dist/reducers/strategy/strategies/ask_operator.js +64 -68
- package/dist/reducers/strategy/strategies/detect_operator_by_ip.d.ts +2 -2
- package/dist/reducers/strategy/strategies/detect_operator_by_ip.js +97 -97
- package/dist/reducers/strategy/strategies/header_enrichment.d.ts +2 -2
- package/dist/reducers/strategy/strategies/header_enrichment.js +116 -120
- package/dist/reducers/strategy/utils.d.ts +3 -3
- package/dist/reducers/strategy/utils.js +115 -111
- package/dist/reducers/ussdFlow/IUssdConstants.d.ts +1 -1
- package/dist/reducers/ussdFlow/UssdTypes.d.ts +13 -13
- package/dist/reducers/ussdFlow/index.d.ts +3 -3
- package/dist/reducers/ussdFlow/index.js +27 -27
- package/dist/reducers/ussdFlow/utils.d.ts +1 -2
- package/dist/reducers/ussdFlow/utils.js +19 -17
- package/dist/store/index.d.ts +8 -8
- package/dist/store/index.js +87 -83
- package/dist/store/reducers.d.ts +7 -7
- package/dist/store/reducers.js +4 -4
- package/dist/utilities/handleSubmitNumber.d.ts +7 -3
- package/dist/utilities/handleSubmitNumber.js +15 -18
- package/dist/utilities/index.d.ts +1 -1
- package/dist/utilities/index.js +13 -11
- package/dist/utilities/loadScriptInnerHtml.js +0 -1
- package/index.html +21 -28
- package/package.json +23 -15
- package/setupJest.js +1 -1
- package/tsconfig.json +2 -2
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/ouisys-engine.iml +0 -12
- package/.idea/vcs.xml +0 -6
- package/.vscode/settings.json +0 -6
- package/dist/api/click2sms.js +0 -357
- package/dist/api/mo.js +0 -274
- package/dist/api/moRedir.js +0 -186
- package/dist/api/oneClick.js +0 -366
- package/dist/api/pin.js +0 -493
- package/dist/api/strategies.js +0 -704
- package/dist/api/ussd.js +0 -1
- package/dist/app/store.js +0 -35
- package/dist/features/strategies/categories/askMobileNumber.js +0 -395
- package/dist/features/strategies/categories/askOperator.js +0 -311
- package/dist/features/strategies/categories/detectOperatorByIp.js +0 -606
- package/dist/features/strategies/categories/headerEnrichment.js +0 -670
- package/dist/features/strategies/categories/typings/click2smsSliceTypes.js +0 -12
- package/dist/features/strategies/categories/typings/identifySliceTypes.js +0 -22
- package/dist/features/strategies/categories/typings/moFlowSliceTypes.js +0 -22
- package/dist/features/strategies/categories/typings/moRedirFlowSliceTypes.js +0 -21
- package/dist/features/strategies/categories/typings/oneClickSliceTypes.js +0 -13
- package/dist/features/strategies/categories/typings/pinFlowSliceTypes.js +0 -13
- package/dist/features/strategies/click2smsFlowSlice.js +0 -172
- package/dist/features/strategies/identifySlice.js +0 -455
- package/dist/features/strategies/moFlowSlice.js +0 -196
- package/dist/features/strategies/moRedirFlowSlice.js +0 -190
- package/dist/features/strategies/oneClickFlowSlice.js +0 -277
- package/dist/features/strategies/pinFlowSlice.js +0 -313
- package/dist/features/strategies/ussdFlowSlice.js +0 -1
- package/dist/flows/tpayHeFlow.d.ts +0 -7
- package/dist/flows/tpayHeFlow.js +0 -23
- package/dist/mockServer/browser.js +0 -48
- package/dist/mockServer/handlers.js +0 -22
- package/dist/mockServer/server.js +0 -48
- package/dist/reducers/tpayHeFlow/ITpayHeConstants.d.ts +0 -2
- package/dist/reducers/tpayHeFlow/ITpayHeConstants.js +0 -1
- package/dist/reducers/tpayHeFlow/TpayHeTypes.d.ts +0 -114
- package/dist/reducers/tpayHeFlow/TpayHeTypes.js +0 -1
- package/dist/reducers/tpayHeFlow/index.d.ts +0 -7
- package/dist/reducers/tpayHeFlow/index.js +0 -331
- package/dist/reducers/tpayHeFlow/utils.d.ts +0 -20
- package/dist/reducers/tpayHeFlow/utils.js +0 -510
- package/dist/test/setup.js +0 -24
- package/dist/test/test-utils.js +0 -51
- package/mockData/config.json +0 -28
- package/prettier.config.js +0 -7
- package/src/@types/react-tracker.d.ts +0 -16
- package/src/@types/redux-cli-logger.d.ts +0 -1
- package/src/@types/tiny-async-pool.d.ts +0 -3
- package/src/@types/window.d.ts +0 -74
- package/src/api/index.ts +0 -225
- package/src/common-types/AppThunk.ts +0 -19
- package/src/common-types/Either.ts +0 -3
- package/src/common-types/IError.ts +0 -5
- package/src/common-types/IOptInFlowName.ts +0 -1
- package/src/common-types/ITracker.ts +0 -10
- package/src/common-types/IVisitor.ts +0 -16
- package/src/common-types/RemoteDataState.ts +0 -88
- package/src/flows/click2smsFlow.ts +0 -18
- package/src/flows/moFlow.ts +0 -20
- package/src/flows/moRedirFlow.ts +0 -20
- package/src/flows/oneClickFlow.ts +0 -20
- package/src/flows/pinFlow.ts +0 -25
- package/src/flows/strategy.ts +0 -51
- package/src/flows/ussdFlow.ts +0 -20
- package/src/index.ts +0 -3
- package/src/ips/tryGetIPRangeName.ts +0 -22
- package/src/jest.config.js +0 -194
- package/src/pacman/index.ts +0 -71
- package/src/pacman/queryString.ts +0 -24
- package/src/reducers/click2smsFlow/Click2smsTypes.ts +0 -93
- package/src/reducers/click2smsFlow/IClick2smsConstants.ts +0 -4
- package/src/reducers/click2smsFlow/index.ts +0 -105
- package/src/reducers/click2smsFlow/utils.ts +0 -126
- package/src/reducers/moFlow/IMoConstants.ts +0 -7
- package/src/reducers/moFlow/MoTypes.ts +0 -125
- package/src/reducers/moFlow/index.ts +0 -150
- package/src/reducers/moFlow/utils.ts +0 -135
- package/src/reducers/moRedirFlow/IMoRedirConstants.ts +0 -7
- package/src/reducers/moRedirFlow/MoRedirTypes.ts +0 -99
- package/src/reducers/moRedirFlow/index.ts +0 -137
- package/src/reducers/moRedirFlow/utils.ts +0 -78
- package/src/reducers/oneClickFlow/IOneClickConstants.ts +0 -3
- package/src/reducers/oneClickFlow/OneClickTypes.ts +0 -108
- package/src/reducers/oneClickFlow/index.ts +0 -268
- package/src/reducers/oneClickFlow/utils.ts +0 -217
- package/src/reducers/pinFlow/IPinConstants.ts +0 -9
- package/src/reducers/pinFlow/PinTypes.ts +0 -190
- package/src/reducers/pinFlow/index.ts +0 -331
- package/src/reducers/pinFlow/utils.ts +0 -232
- package/src/reducers/strategy/IStategyActionContants.ts +0 -17
- package/src/reducers/strategy/StrategyTypes.ts +0 -375
- package/src/reducers/strategy/index.ts +0 -321
- package/src/reducers/strategy/strategies/ask_mobile_number.ts +0 -316
- package/src/reducers/strategy/strategies/ask_operator.ts +0 -195
- package/src/reducers/strategy/strategies/detect_operator_by_ip.ts +0 -414
- package/src/reducers/strategy/strategies/header_enrichment.ts +0 -489
- package/src/reducers/strategy/utils.ts +0 -357
- package/src/reducers/ussdFlow/IUssdConstants.ts +0 -7
- package/src/reducers/ussdFlow/UssdTypes.ts +0 -112
- package/src/reducers/ussdFlow/index.ts +0 -146
- package/src/reducers/ussdFlow/utils.ts +0 -88
- package/src/store/index.ts +0 -150
- package/src/store/reducers.ts +0 -37
- package/src/utilities/handleSubmitNumber.ts +0 -65
- package/src/utilities/index.ts +0 -114
- package/src/utilities/loadScriptInnerHtml.ts +0 -14
- package/src/utilities/loadScriptSrc.ts +0 -26
|
@@ -65,22 +65,22 @@ require("core-js/modules/es.object.keys.js");
|
|
|
65
65
|
|
|
66
66
|
require("core-js/modules/es.string.match.js");
|
|
67
67
|
|
|
68
|
-
var _tryGetIPRangeName = _interopRequireDefault(require("../../ips/tryGetIPRangeName"));
|
|
69
|
-
|
|
70
68
|
var RDS = _interopRequireWildcard(require("../../common-types/RemoteDataState"));
|
|
71
69
|
|
|
70
|
+
var _tryGetIPRangeName = _interopRequireDefault(require("../../ips/tryGetIPRangeName"));
|
|
71
|
+
|
|
72
72
|
var _utilities = require("../../utilities");
|
|
73
73
|
|
|
74
74
|
var _loadScriptInnerHtml = _interopRequireDefault(require("../../utilities/loadScriptInnerHtml"));
|
|
75
75
|
|
|
76
76
|
var _utils = require("../strategy/utils");
|
|
77
77
|
|
|
78
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
79
|
+
|
|
78
80
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
79
81
|
|
|
80
82
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
81
83
|
|
|
82
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
83
|
-
|
|
84
84
|
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return generator._invoke = function (innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; }(innerFn, self, context), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; this._invoke = function (method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return ContinueSentinel; } var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (object) { var keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
85
85
|
|
|
86
86
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -132,14 +132,14 @@ function _submitMSISDNWithConfig() {
|
|
|
132
132
|
case 0:
|
|
133
133
|
slug = config.slug, country = config.country, device = config.device, offer = config.offer, host = config.host;
|
|
134
134
|
search = window.location.search.substr(1) || '';
|
|
135
|
-
extraParamsQs = !extraParams ? '' :
|
|
135
|
+
extraParamsQs = !extraParams ? '' : "&".concat(Object.keys(extraParams).map(function (k) {
|
|
136
136
|
return "".concat(k, "=").concat(extraParams[k]);
|
|
137
|
-
}).join('&');
|
|
137
|
+
}).join('&'));
|
|
138
138
|
msisdn = internationalMSISDN.match(/\d+/gi).join('');
|
|
139
139
|
visitor = window.pac_analytics.visitor;
|
|
140
140
|
rockmanId = visitor.rockmanId;
|
|
141
141
|
|
|
142
|
-
if (!(country ==
|
|
142
|
+
if (!(country == 'ci')) {
|
|
143
143
|
_context2.next = 12;
|
|
144
144
|
break;
|
|
145
145
|
}
|
|
@@ -163,14 +163,14 @@ function _submitMSISDNWithConfig() {
|
|
|
163
163
|
case 16:
|
|
164
164
|
result = _context2.sent;
|
|
165
165
|
|
|
166
|
-
if (!(
|
|
166
|
+
if (!(result.success === false)) {
|
|
167
167
|
_context2.next = 25;
|
|
168
168
|
break;
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
-
type = result.message == 'ALREADY SUBSCRIBED' ?
|
|
171
|
+
type = result.message == 'ALREADY SUBSCRIBED' ? 'AlreadySubscribed' : 'InvalidMSISDN';
|
|
172
172
|
error = new Error("".concat(type, ":\n").concat(result.message));
|
|
173
|
-
error
|
|
173
|
+
error.type = type;
|
|
174
174
|
console.error(error);
|
|
175
175
|
throw error;
|
|
176
176
|
|
|
@@ -192,7 +192,7 @@ var startEvinaAgency = function startEvinaAgency(config) {
|
|
|
192
192
|
var configs = (0, _utils.getConfig)();
|
|
193
193
|
var defaultFlowConfig = configs.strategyConfigs.default;
|
|
194
194
|
|
|
195
|
-
var _ref =
|
|
195
|
+
var _ref = config || defaultFlowConfig.flowConfig,
|
|
196
196
|
host = _ref.host;
|
|
197
197
|
|
|
198
198
|
var newHost = (0, _utilities.getHost)({
|
|
@@ -208,19 +208,19 @@ var startEvinaAgency = function startEvinaAgency(config) {
|
|
|
208
208
|
console.log('Ev ready');
|
|
209
209
|
var event = new Event('DCBProtectRun');
|
|
210
210
|
|
|
211
|
-
if (typeof window
|
|
211
|
+
if (typeof window !== 'undefined') {
|
|
212
212
|
document.dispatchEvent(event);
|
|
213
213
|
}
|
|
214
214
|
});
|
|
215
215
|
} catch (err) {
|
|
216
|
-
console.error(
|
|
216
|
+
console.error('startEvinaAgency ERROR', err);
|
|
217
217
|
}
|
|
218
218
|
};
|
|
219
219
|
|
|
220
220
|
exports.startEvinaAgency = startEvinaAgency;
|
|
221
221
|
var mockedMSISDNEntrySuccess = {
|
|
222
222
|
currentState: {
|
|
223
|
-
type:
|
|
223
|
+
type: 'MSISDNEntry',
|
|
224
224
|
result: RDS.Success({
|
|
225
225
|
href: '/mock-product-url'
|
|
226
226
|
})
|
|
@@ -229,10 +229,10 @@ var mockedMSISDNEntrySuccess = {
|
|
|
229
229
|
exports.mockedMSISDNEntrySuccess = mockedMSISDNEntrySuccess;
|
|
230
230
|
var mockedMSISDNEntryFailure = {
|
|
231
231
|
currentState: {
|
|
232
|
-
type:
|
|
232
|
+
type: 'MSISDNEntry',
|
|
233
233
|
result: RDS.Failure({
|
|
234
|
-
errorType:
|
|
235
|
-
error:
|
|
234
|
+
errorType: 'InvalidMSISDN',
|
|
235
|
+
error: 'Invalid Mobile Number'
|
|
236
236
|
})
|
|
237
237
|
}
|
|
238
238
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare type IOneClickConstants =
|
|
1
|
+
declare type IOneClickConstants = 'GET_REDIRECT_URL' | 'SUBCRIBE_AJAX';
|
|
2
2
|
export default IOneClickConstants;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { AppThunk } from '../../common-types/AppThunk';
|
|
2
|
+
import * as RDS from '../../common-types/RemoteDataState';
|
|
3
3
|
export declare type IGETREDIRECTURLFailure = {
|
|
4
4
|
errorType: string;
|
|
5
5
|
};
|
|
6
6
|
export declare type IGETREDIRECTURLSuccess = {
|
|
7
7
|
redirectUrl: string;
|
|
8
|
-
nextAction:
|
|
8
|
+
nextAction: 'getRedirectUrlAction';
|
|
9
9
|
};
|
|
10
|
-
export declare type SubscribeUserErrorTypes =
|
|
10
|
+
export declare type SubscribeUserErrorTypes = 'SubscriptionError' | 'UnknownError' | 'AlreadySubscribed';
|
|
11
11
|
export declare type SubscribeSuccess = {
|
|
12
12
|
productUrl: string;
|
|
13
13
|
};
|
|
@@ -17,30 +17,30 @@ export declare type SubscribeFailure = {
|
|
|
17
17
|
productUrl?: string;
|
|
18
18
|
};
|
|
19
19
|
export declare type IOneClickCurrentState = {
|
|
20
|
-
type:
|
|
20
|
+
type: 'GET_REDIRECT_URL';
|
|
21
21
|
result: RDS.RemoteDataState<IGETREDIRECTURLFailure, IGETREDIRECTURLSuccess>;
|
|
22
22
|
} | {
|
|
23
|
-
type:
|
|
23
|
+
type: 'SUBCRIBE_AJAX';
|
|
24
24
|
result: RDS.RemoteDataState<SubscribeFailure, SubscribeSuccess>;
|
|
25
25
|
};
|
|
26
26
|
export declare type IOneClickFlowReducerState = {
|
|
27
27
|
currentState: IOneClickCurrentState;
|
|
28
28
|
};
|
|
29
29
|
export declare type IGetRedirectUrlPayload = {
|
|
30
|
-
type:
|
|
30
|
+
type: 'GET_REDIRECT_URL';
|
|
31
31
|
result: RDS.RemoteDataState<IGETREDIRECTURLFailure, IGETREDIRECTURLSuccess>;
|
|
32
32
|
};
|
|
33
33
|
export declare type IOneClickFlowActionMaps = {
|
|
34
34
|
getRedirectUrlAction: (extraParams?: ILinkExtraParams, autoRedirect?: boolean) => AppThunk;
|
|
35
35
|
};
|
|
36
36
|
export declare type IOneClickActions = {
|
|
37
|
-
type:
|
|
37
|
+
type: 'GET_REDIRECT_URL';
|
|
38
38
|
payload: IGetRedirectUrlPayload;
|
|
39
39
|
};
|
|
40
40
|
export interface ILinkExtraParams {
|
|
41
41
|
[key: string]: string;
|
|
42
42
|
}
|
|
43
|
-
export declare type IClickActionTypes =
|
|
43
|
+
export declare type IClickActionTypes = 'he' | 'redirect' | 'identify-user';
|
|
44
44
|
export declare type IConfig = {
|
|
45
45
|
host?: string;
|
|
46
46
|
country?: string;
|
|
@@ -82,4 +82,4 @@ export declare type ISubscribeResult = {
|
|
|
82
82
|
message: string;
|
|
83
83
|
product_url?: string;
|
|
84
84
|
};
|
|
85
|
-
export declare type IMockOneClickFlowStates =
|
|
85
|
+
export declare type IMockOneClickFlowStates = 'redirect-url-success-state' | 'subscribe-ajax-state';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { AppThunk } from '../../common-types/AppThunk';
|
|
2
|
+
import { IHash } from '../strategy/StrategyTypes';
|
|
3
|
+
import { ILinkExtraParams, IMockOneClickFlowStates, IOneClickActions, IOneClickFlowActionMaps, IOneClickFlowReducerState } from './OneClickTypes';
|
|
4
4
|
export declare function getRedirectUrlAction({ extraParams, autoRedirect, isGetRedirectBupperWay }: {
|
|
5
5
|
extraParams?: ILinkExtraParams;
|
|
6
6
|
autoRedirect?: boolean;
|
|
@@ -59,10 +59,10 @@ require("core-js/modules/es.promise.js");
|
|
|
59
59
|
|
|
60
60
|
var RDS = _interopRequireWildcard(require("../../common-types/RemoteDataState"));
|
|
61
61
|
|
|
62
|
-
var _utils = require("./utils");
|
|
63
|
-
|
|
64
62
|
var _strategy = require("../strategy");
|
|
65
63
|
|
|
64
|
+
var _utils = require("./utils");
|
|
65
|
+
|
|
66
66
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
67
67
|
|
|
68
68
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
@@ -79,13 +79,14 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try
|
|
|
79
79
|
|
|
80
80
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
81
81
|
|
|
82
|
-
//ACTION CREATORS
|
|
82
|
+
// ACTION CREATORS
|
|
83
83
|
function getRedirectUrlAction(_ref) {
|
|
84
84
|
var extraParams = _ref.extraParams,
|
|
85
85
|
_ref$autoRedirect = _ref.autoRedirect,
|
|
86
86
|
autoRedirect = _ref$autoRedirect === void 0 ? false : _ref$autoRedirect,
|
|
87
87
|
_ref$isGetRedirectBup = _ref.isGetRedirectBupperWay,
|
|
88
88
|
isGetRedirectBupperWay = _ref$isGetRedirectBup === void 0 ? false : _ref$isGetRedirectBup;
|
|
89
|
+
// eslint-disable-next-line consistent-return
|
|
89
90
|
return /*#__PURE__*/function () {
|
|
90
91
|
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(dispatch, store) {
|
|
91
92
|
var currentState, _currentState$result, config, subscription_url, redirect_url, redirectUrl, timer, _yield$getRedirectUrl, _redirect_url;
|
|
@@ -96,22 +97,23 @@ function getRedirectUrlAction(_ref) {
|
|
|
96
97
|
case 0:
|
|
97
98
|
currentState = store().strategy.currentState;
|
|
98
99
|
|
|
99
|
-
if (!(currentState.type ===
|
|
100
|
-
_context.next =
|
|
100
|
+
if (!(currentState.type === 'ONE_CLICK')) {
|
|
101
|
+
_context.next = 34;
|
|
101
102
|
break;
|
|
102
103
|
}
|
|
103
104
|
|
|
105
|
+
// eslint-disable-next-line camelcase
|
|
104
106
|
_currentState$result = currentState.result, config = _currentState$result.config, subscription_url = _currentState$result.subscription_url, redirect_url = _currentState$result.redirect_url;
|
|
105
107
|
_context.prev = 3;
|
|
106
108
|
dispatch({
|
|
107
|
-
type:
|
|
109
|
+
type: 'GET_REDIRECT_URL',
|
|
108
110
|
payload: {
|
|
109
|
-
type:
|
|
111
|
+
type: 'GET_REDIRECT_URL',
|
|
110
112
|
result: RDS.Loading()
|
|
111
113
|
}
|
|
112
114
|
});
|
|
113
115
|
|
|
114
|
-
if (!(isGetRedirectBupperWay
|
|
116
|
+
if (!(isGetRedirectBupperWay === true)) {
|
|
115
117
|
_context.next = 13;
|
|
116
118
|
break;
|
|
117
119
|
}
|
|
@@ -128,8 +130,8 @@ function getRedirectUrlAction(_ref) {
|
|
|
128
130
|
redirect_url: redirectUrl
|
|
129
131
|
});
|
|
130
132
|
|
|
131
|
-
if (autoRedirect
|
|
132
|
-
if (process.env.NODE_ENV ===
|
|
133
|
+
if (autoRedirect === true || window.isAutoFraudScreener === true) {
|
|
134
|
+
if (process.env.NODE_ENV === 'production') {
|
|
133
135
|
// Wait for Evina to Check Fraud First
|
|
134
136
|
timer = setInterval(function () {
|
|
135
137
|
if (window.isEvinaSessionChecked) {
|
|
@@ -155,9 +157,9 @@ function getRedirectUrlAction(_ref) {
|
|
|
155
157
|
}
|
|
156
158
|
} else {
|
|
157
159
|
dispatch({
|
|
158
|
-
type:
|
|
160
|
+
type: 'GET_REDIRECT_URL',
|
|
159
161
|
payload: {
|
|
160
|
-
type:
|
|
162
|
+
type: 'GET_REDIRECT_URL',
|
|
161
163
|
result: RDS.Success({
|
|
162
164
|
redirectUrl: redirectUrl
|
|
163
165
|
})
|
|
@@ -165,26 +167,26 @@ function getRedirectUrlAction(_ref) {
|
|
|
165
167
|
});
|
|
166
168
|
}
|
|
167
169
|
|
|
168
|
-
_context.next =
|
|
170
|
+
_context.next = 26;
|
|
169
171
|
break;
|
|
170
172
|
|
|
171
173
|
case 13:
|
|
172
174
|
if (!(subscription_url && subscription_url != null)) {
|
|
173
|
-
_context.next =
|
|
175
|
+
_context.next = 15;
|
|
174
176
|
break;
|
|
175
177
|
}
|
|
176
178
|
|
|
177
179
|
return _context.abrupt("return", dispatch({
|
|
178
|
-
type:
|
|
180
|
+
type: 'GET_REDIRECT_URL',
|
|
179
181
|
payload: {
|
|
180
|
-
type:
|
|
182
|
+
type: 'SUBCRIBE_AJAX',
|
|
181
183
|
result: RDS.NothingYet()
|
|
182
184
|
}
|
|
183
185
|
}));
|
|
184
186
|
|
|
185
|
-
case
|
|
186
|
-
if (!(redirect_url && redirect_url
|
|
187
|
-
_context.next =
|
|
187
|
+
case 15:
|
|
188
|
+
if (!(redirect_url && redirect_url !== null)) {
|
|
189
|
+
_context.next = 20;
|
|
188
190
|
break;
|
|
189
191
|
}
|
|
190
192
|
|
|
@@ -193,22 +195,22 @@ function getRedirectUrlAction(_ref) {
|
|
|
193
195
|
});
|
|
194
196
|
|
|
195
197
|
return _context.abrupt("return", dispatch({
|
|
196
|
-
type:
|
|
198
|
+
type: 'GET_REDIRECT_URL',
|
|
197
199
|
payload: {
|
|
198
|
-
type:
|
|
200
|
+
type: 'GET_REDIRECT_URL',
|
|
199
201
|
result: RDS.Success({
|
|
200
202
|
redirectUrl: redirect_url
|
|
201
203
|
})
|
|
202
204
|
}
|
|
203
205
|
}));
|
|
204
206
|
|
|
205
|
-
case
|
|
206
|
-
_context.next =
|
|
207
|
+
case 20:
|
|
208
|
+
_context.next = 22;
|
|
207
209
|
return (0, _utils.getRedirectUrl)(window, config, _objectSpread(_objectSpread({}, currentState.result.operator && {
|
|
208
210
|
operator: currentState.result.operator
|
|
209
211
|
}), extraParams));
|
|
210
212
|
|
|
211
|
-
case
|
|
213
|
+
case 22:
|
|
212
214
|
_yield$getRedirectUrl = _context.sent;
|
|
213
215
|
_redirect_url = _yield$getRedirectUrl.redirect_url;
|
|
214
216
|
|
|
@@ -216,19 +218,20 @@ function getRedirectUrlAction(_ref) {
|
|
|
216
218
|
redirect_url: _redirect_url
|
|
217
219
|
});
|
|
218
220
|
|
|
219
|
-
if (autoRedirect
|
|
221
|
+
if (autoRedirect === true || window.isAutoFraudScreener === true) {
|
|
220
222
|
_strategy.tracker.advancedInFlow('tallyman.v1-one-click', 'click-redirect-url', {
|
|
221
223
|
redirect_url: _redirect_url
|
|
222
224
|
});
|
|
223
225
|
|
|
224
226
|
setTimeout(function () {
|
|
227
|
+
// eslint-disable-next-line camelcase
|
|
225
228
|
window.location.href = _redirect_url;
|
|
226
229
|
}, 0);
|
|
227
230
|
} else {
|
|
228
231
|
dispatch({
|
|
229
|
-
type:
|
|
232
|
+
type: 'GET_REDIRECT_URL',
|
|
230
233
|
payload: {
|
|
231
|
-
type:
|
|
234
|
+
type: 'GET_REDIRECT_URL',
|
|
232
235
|
result: RDS.Success({
|
|
233
236
|
redirectUrl: _redirect_url
|
|
234
237
|
})
|
|
@@ -236,50 +239,49 @@ function getRedirectUrlAction(_ref) {
|
|
|
236
239
|
});
|
|
237
240
|
}
|
|
238
241
|
|
|
239
|
-
case
|
|
240
|
-
_context.next =
|
|
242
|
+
case 26:
|
|
243
|
+
_context.next = 32;
|
|
241
244
|
break;
|
|
242
245
|
|
|
243
|
-
case
|
|
244
|
-
_context.prev =
|
|
246
|
+
case 28:
|
|
247
|
+
_context.prev = 28;
|
|
245
248
|
_context.t0 = _context["catch"](3);
|
|
246
249
|
console.warn(_context.t0);
|
|
247
|
-
console.log("Falling back to bupper");
|
|
248
250
|
|
|
249
|
-
if (autoRedirect
|
|
251
|
+
if (autoRedirect !== true) {
|
|
250
252
|
dispatch({
|
|
251
|
-
type:
|
|
253
|
+
type: 'GET_REDIRECT_URL',
|
|
252
254
|
payload: {
|
|
253
|
-
type:
|
|
255
|
+
type: 'GET_REDIRECT_URL',
|
|
254
256
|
result: RDS.Failure({
|
|
255
|
-
errorType:
|
|
257
|
+
errorType: 'UnknownError'
|
|
256
258
|
})
|
|
257
259
|
}
|
|
258
260
|
});
|
|
259
261
|
}
|
|
260
262
|
|
|
261
|
-
case
|
|
262
|
-
_context.next =
|
|
263
|
+
case 32:
|
|
264
|
+
_context.next = 36;
|
|
263
265
|
break;
|
|
264
266
|
|
|
265
|
-
case
|
|
267
|
+
case 34:
|
|
266
268
|
dispatch({
|
|
267
|
-
type:
|
|
269
|
+
type: 'GET_REDIRECT_URL',
|
|
268
270
|
payload: {
|
|
269
|
-
type:
|
|
271
|
+
type: 'GET_REDIRECT_URL',
|
|
270
272
|
result: RDS.Failure({
|
|
271
|
-
errorType:
|
|
273
|
+
errorType: 'UnexpectedState'
|
|
272
274
|
})
|
|
273
275
|
}
|
|
274
276
|
});
|
|
275
|
-
throw
|
|
277
|
+
throw new Error('Unexpected state');
|
|
276
278
|
|
|
277
|
-
case
|
|
279
|
+
case 36:
|
|
278
280
|
case "end":
|
|
279
281
|
return _context.stop();
|
|
280
282
|
}
|
|
281
283
|
}
|
|
282
|
-
}, _callee, null, [[3,
|
|
284
|
+
}, _callee, null, [[3, 28]]);
|
|
283
285
|
}));
|
|
284
286
|
|
|
285
287
|
return function (_x, _x2) {
|
|
@@ -298,22 +300,24 @@ function subscribeUrlAction(autoRedirect, extraParams) {
|
|
|
298
300
|
case 0:
|
|
299
301
|
currentState = store().strategy.currentState;
|
|
300
302
|
|
|
301
|
-
if (!(currentState.type ===
|
|
303
|
+
if (!(currentState.type === 'ONE_CLICK')) {
|
|
302
304
|
_context2.next = 21;
|
|
303
305
|
break;
|
|
304
306
|
}
|
|
305
307
|
|
|
308
|
+
// eslint-disable-next-line camelcase
|
|
306
309
|
subscription_url = currentState.result.subscription_url;
|
|
307
310
|
_context2.prev = 3;
|
|
308
311
|
dispatch({
|
|
309
|
-
type:
|
|
312
|
+
type: 'GET_REDIRECT_URL',
|
|
310
313
|
payload: {
|
|
311
|
-
type:
|
|
314
|
+
type: 'SUBCRIBE_AJAX',
|
|
312
315
|
result: RDS.Loading()
|
|
313
316
|
}
|
|
314
317
|
});
|
|
315
318
|
|
|
316
|
-
_strategy.tracker.advancedInFlow('tallyman.v1-one-click', 'click-subscribe'); //STILL NEED TO SUPPORT SUBCRIBE AJAX
|
|
319
|
+
_strategy.tracker.advancedInFlow('tallyman.v1-one-click', 'click-subscribe'); // STILL NEED TO SUPPORT SUBCRIBE AJAX
|
|
320
|
+
// eslint-disable-next-line camelcase
|
|
317
321
|
|
|
318
322
|
|
|
319
323
|
_context2.next = 8;
|
|
@@ -326,17 +330,18 @@ function subscribeUrlAction(autoRedirect, extraParams) {
|
|
|
326
330
|
product_url: product_url
|
|
327
331
|
});
|
|
328
332
|
|
|
329
|
-
if (autoRedirect
|
|
333
|
+
if (autoRedirect === true) {
|
|
330
334
|
_strategy.tracker.customEvent('Flow', 'advance-auto', 'click-product-url', {
|
|
331
335
|
product_url: product_url
|
|
332
|
-
});
|
|
336
|
+
}); // eslint-disable-next-line camelcase
|
|
337
|
+
|
|
333
338
|
|
|
334
339
|
window.location.href = product_url;
|
|
335
340
|
} else {
|
|
336
341
|
dispatch({
|
|
337
|
-
type:
|
|
342
|
+
type: 'GET_REDIRECT_URL',
|
|
338
343
|
payload: {
|
|
339
|
-
type:
|
|
344
|
+
type: 'SUBCRIBE_AJAX',
|
|
340
345
|
result: RDS.Success({
|
|
341
346
|
productUrl: product_url
|
|
342
347
|
})
|
|
@@ -351,16 +356,17 @@ function subscribeUrlAction(autoRedirect, extraParams) {
|
|
|
351
356
|
_context2.prev = 13;
|
|
352
357
|
_context2.t0 = _context2["catch"](3);
|
|
353
358
|
console.warn(_context2.t0);
|
|
354
|
-
errorType =
|
|
359
|
+
errorType = // eslint-disable-next-line no-nested-ternary
|
|
360
|
+
_context2.t0.type === 'AlreadySubscribed' ? 'AlreadySubscribed' : _context2.t0.type === 'SubscriptionError' ? 'SubscriptionError' : 'UnknownError';
|
|
355
361
|
|
|
356
362
|
_strategy.tracker.recedeInFlow('tallyman.v1-one-click', 'click-subscribe-failure', {
|
|
357
363
|
error: _context2.t0.toString()
|
|
358
364
|
});
|
|
359
365
|
|
|
360
366
|
dispatch({
|
|
361
|
-
type:
|
|
367
|
+
type: 'GET_REDIRECT_URL',
|
|
362
368
|
payload: {
|
|
363
|
-
type:
|
|
369
|
+
type: 'SUBCRIBE_AJAX',
|
|
364
370
|
result: RDS.Failure({
|
|
365
371
|
errorType: errorType,
|
|
366
372
|
error: _context2.t0,
|
|
@@ -375,19 +381,19 @@ function subscribeUrlAction(autoRedirect, extraParams) {
|
|
|
375
381
|
|
|
376
382
|
case 21:
|
|
377
383
|
_strategy.tracker.recedeInFlow('tallyman.v1-one-click', 'click-subscribe-failure', {
|
|
378
|
-
error:
|
|
384
|
+
error: 'UnexpectedState'
|
|
379
385
|
});
|
|
380
386
|
|
|
381
387
|
dispatch({
|
|
382
|
-
type:
|
|
388
|
+
type: 'GET_REDIRECT_URL',
|
|
383
389
|
payload: {
|
|
384
|
-
type:
|
|
390
|
+
type: 'SUBCRIBE_AJAX',
|
|
385
391
|
result: RDS.Failure({
|
|
386
|
-
errorType:
|
|
392
|
+
errorType: 'UnexpectedState'
|
|
387
393
|
})
|
|
388
394
|
}
|
|
389
395
|
});
|
|
390
|
-
throw
|
|
396
|
+
throw new Error('Unexpected state');
|
|
391
397
|
|
|
392
398
|
case 24:
|
|
393
399
|
case "end":
|
|
@@ -404,23 +410,24 @@ function subscribeUrlAction(autoRedirect, extraParams) {
|
|
|
404
410
|
}
|
|
405
411
|
|
|
406
412
|
function mockOneClickFlow(mockState) {
|
|
413
|
+
// eslint-disable-next-line consistent-return
|
|
407
414
|
return function (dispatch) {
|
|
408
415
|
if (mockState !== undefined) {
|
|
409
416
|
switch (mockState) {
|
|
410
|
-
case
|
|
417
|
+
case 'redirect-url-success-state':
|
|
411
418
|
return dispatch({
|
|
412
|
-
type:
|
|
419
|
+
type: 'GET_REDIRECT_URL',
|
|
413
420
|
payload: _utils.mockedRedirectUrlSuccessState.currentState
|
|
414
421
|
});
|
|
415
422
|
|
|
416
|
-
case
|
|
423
|
+
case 'subscribe-ajax-state':
|
|
417
424
|
return dispatch({
|
|
418
|
-
type:
|
|
425
|
+
type: 'GET_REDIRECT_URL',
|
|
419
426
|
payload: _utils.mockedSubscribeAjaxState.currentState
|
|
420
427
|
});
|
|
421
428
|
|
|
422
429
|
default:
|
|
423
|
-
throw
|
|
430
|
+
throw new Error('Mock Flow not supported');
|
|
424
431
|
}
|
|
425
432
|
}
|
|
426
433
|
};
|
|
@@ -428,7 +435,7 @@ function mockOneClickFlow(mockState) {
|
|
|
428
435
|
|
|
429
436
|
var initialState = {
|
|
430
437
|
currentState: {
|
|
431
|
-
type:
|
|
438
|
+
type: 'GET_REDIRECT_URL',
|
|
432
439
|
result: RDS.NothingYet()
|
|
433
440
|
}
|
|
434
441
|
};
|
|
@@ -442,7 +449,7 @@ function OneClickFlowReducer() {
|
|
|
442
449
|
var action = arguments.length > 1 ? arguments[1] : undefined;
|
|
443
450
|
|
|
444
451
|
switch (action.type) {
|
|
445
|
-
case
|
|
452
|
+
case 'GET_REDIRECT_URL':
|
|
446
453
|
return (0, _strategy.genericHandler)(state, action.payload);
|
|
447
454
|
|
|
448
455
|
default:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { IHash } from '../strategy/StrategyTypes';
|
|
2
|
+
import { IConfig, ILinkExtraParams, IOneClickFlowReducerState } from './OneClickTypes';
|
|
3
3
|
export declare const additionalQueryString = "msisdnSubmitted=Y&legalCheckbox=Y&incentivizedCheckbox=Y&op_confirmCheckbox=N";
|
|
4
4
|
export declare const getRedirectUrl: (window: Window, maybeConfig: IConfig, extraParams?: ILinkExtraParams) => Promise<{
|
|
5
5
|
subscription_url?: string;
|