@alipay/ams-checkout 0.0.1743078169-dev.3 → 0.0.1743078169-dev.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/dist/umd/ams-checkout.min.js +1 -1
- package/esm/core/component/element/elementContainerService/containerService.d.ts +1 -0
- package/esm/core/component/element/elementContainerService/containerService.js +7 -1
- package/esm/core/component/element/elementController/index.js +21 -15
- package/esm/core/component/element/elementProcessor/authProcessor.js +1 -1
- package/esm/core/component/element/elementProcessor/paymentProcessor.d.ts +3 -0
- package/esm/core/component/element/elementProcessor/paymentProcessor.js +140 -20
- package/esm/core/component/element/util.d.ts +2 -1
- package/esm/core/component/element/util.js +8 -2
- package/esm/foundation/service/container/index.js +15 -7
- package/esm/foundation/service/event-center.js +1 -1
- package/package.json +1 -1
@@ -24,6 +24,7 @@ export declare class ContainerController {
|
|
24
24
|
private addEventListener;
|
25
25
|
createWebLaunchPromise(): Promise<unknown>;
|
26
26
|
switchContainerStatus(status: IContainerStatus): void;
|
27
|
+
getContainerStatus(): IContainerStatus;
|
27
28
|
getEventService(): EventCenter;
|
28
29
|
getContainerService(): ContainerService;
|
29
30
|
}
|
@@ -43,7 +43,8 @@ export var ContainerController = /*#__PURE__*/function () {
|
|
43
43
|
type: DisplayTypeEnum.inline,
|
44
44
|
platform: PlatformEnum.desktop,
|
45
45
|
isRetention: false,
|
46
|
-
selector: selector
|
46
|
+
selector: selector,
|
47
|
+
appendAliasContainerId: true
|
47
48
|
}, processor.generateIframeSrc({
|
48
49
|
link: options === null || options === void 0 || (_options$debugProps = options.debugProps) === null || _options$debugProps === void 0 ? void 0 : _options$debugProps.localLink,
|
49
50
|
instanceId: this.instanceId
|
@@ -86,6 +87,11 @@ export var ContainerController = /*#__PURE__*/function () {
|
|
86
87
|
value: function switchContainerStatus(status) {
|
87
88
|
this.containerStatus = status;
|
88
89
|
}
|
90
|
+
}, {
|
91
|
+
key: "getContainerStatus",
|
92
|
+
value: function getContainerStatus() {
|
93
|
+
return this.containerStatus;
|
94
|
+
}
|
89
95
|
}, {
|
90
96
|
key: "getEventService",
|
91
97
|
value: function getEventService() {
|
@@ -1,3 +1,4 @@
|
|
1
|
+
var _excluded = ["type"];
|
1
2
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
2
3
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
3
4
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
@@ -5,6 +6,8 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
|
|
5
6
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
6
7
|
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
7
8
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
9
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
10
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
8
11
|
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 e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
9
12
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
10
13
|
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); }); }; }
|
@@ -97,7 +100,8 @@ var ElementController = /*#__PURE__*/function () {
|
|
97
100
|
var _this = this;
|
98
101
|
var _checkCanMount = checkCanMount({
|
99
102
|
sdkSelector: sdkSelector,
|
100
|
-
status: this.elementContainer.getStatus()
|
103
|
+
status: this.elementContainer.getStatus(),
|
104
|
+
containerService: this.elementContainerService.getContainerService(renderOptions.type)
|
101
105
|
}),
|
102
106
|
success = _checkCanMount.success,
|
103
107
|
errorMsg = _checkCanMount.errorMsg;
|
@@ -111,11 +115,9 @@ var ElementController = /*#__PURE__*/function () {
|
|
111
115
|
this.changeLoading(true);
|
112
116
|
var startBizFlowData = {
|
113
117
|
paymentSession: this.options.sessionData,
|
114
|
-
displayInfo: renderOptions,
|
115
|
-
|
116
|
-
|
117
|
-
merchantAppointParam: renderOptions.type === ElementType.payment ? renderOptions.merchantAppointParam : undefined
|
118
|
-
}
|
118
|
+
displayInfo: _objectSpread(_objectSpread({}, renderOptions), {}, {
|
119
|
+
appendAliasContainerId: true
|
120
|
+
})
|
119
121
|
};
|
120
122
|
if (cashier && renderOptions.sessionData) {
|
121
123
|
startBizFlowData.paymentSession = renderOptions.sessionData;
|
@@ -136,7 +138,8 @@ var ElementController = /*#__PURE__*/function () {
|
|
136
138
|
options: renderOptions
|
137
139
|
});
|
138
140
|
this.elementProcessors[renderOptions.type].registerEventCenter(this.elementContainerService.getEventService(renderOptions.type));
|
139
|
-
this.
|
141
|
+
this.elementProcessors[renderOptions.type].beforeMount();
|
142
|
+
this.sendRequestAndWaitWebLaunch(renderOptions);
|
140
143
|
this.addEventListener();
|
141
144
|
this.serviceMap.EventCenter.addIFrame(this.elementContainerService.getContainerService(renderOptions.type).getContainerService().getWebApp());
|
142
145
|
return {
|
@@ -241,10 +244,10 @@ var ElementController = /*#__PURE__*/function () {
|
|
241
244
|
key: "addEventListener",
|
242
245
|
value: function addEventListener() {
|
243
246
|
var _this3 = this;
|
244
|
-
this.serviceMap.EventCenter.listen(ElementPaymentEvent.CALLBACK, function (
|
245
|
-
if (_this3.elementProcessors[
|
247
|
+
this.serviceMap.EventCenter.listen(ElementPaymentEvent.CALLBACK, function (data) {
|
248
|
+
if (_this3.elementProcessors[data.source].eventListener[data.event]) {
|
246
249
|
var _this3$elementProcess, _this3$elementProcess2;
|
247
|
-
(_this3$elementProcess = (_this3$elementProcess2 = _this3.elementProcessors[
|
250
|
+
(_this3$elementProcess = (_this3$elementProcess2 = _this3.elementProcessors[data.source].eventListener)[data.event]) === null || _this3$elementProcess === void 0 || _this3$elementProcess.call(_this3$elementProcess2, data.data);
|
248
251
|
}
|
249
252
|
});
|
250
253
|
this.serviceMap.EventCenter.listen(EVENT.sizeChanged.name, function (data) {
|
@@ -258,22 +261,24 @@ var ElementController = /*#__PURE__*/function () {
|
|
258
261
|
// this.elementContainer.setStatus(IContainerStatus.IN_BIZ_FLOW);
|
259
262
|
// }
|
260
263
|
});
|
261
|
-
this.serviceMap.EventCenter.listen(EVENT.redirect.name, function (
|
262
|
-
handleRedirect(
|
264
|
+
this.serviceMap.EventCenter.listen(EVENT.redirect.name, function (data) {
|
265
|
+
handleRedirect(data);
|
263
266
|
});
|
264
267
|
}
|
265
268
|
}, {
|
266
269
|
key: "sendRequestAndWaitWebLaunch",
|
267
|
-
value: function sendRequestAndWaitWebLaunch(
|
270
|
+
value: function sendRequestAndWaitWebLaunch(renderOptions) {
|
268
271
|
var _this4 = this;
|
272
|
+
var type = renderOptions.type,
|
273
|
+
options = _objectWithoutProperties(renderOptions, _excluded);
|
269
274
|
var webLaunchPromise = this.elementContainerService.getContainerService(type).createWebLaunchPromise();
|
270
275
|
Promise.all([webLaunchPromise, this.elementProcessors[type].obtainData()]).then(function (_ref3) {
|
271
276
|
var _ref4 = _slicedToArray(_ref3, 2),
|
272
277
|
_webLaunchRes = _ref4[0],
|
273
278
|
_obtainDataRes = _ref4[1];
|
274
|
-
_this4.elementProcessors[type].onReady({
|
279
|
+
_this4.elementProcessors[type].onReady(_objectSpread(_objectSpread({}, options), {}, {
|
275
280
|
queryResult: _obtainDataRes.originActionQuery
|
276
|
-
});
|
281
|
+
}));
|
277
282
|
});
|
278
283
|
}
|
279
284
|
}, {
|
@@ -356,6 +361,7 @@ var ElementController = /*#__PURE__*/function () {
|
|
356
361
|
try {
|
357
362
|
destroyModal(); // 关闭popup弹窗
|
358
363
|
} catch (error) {}
|
364
|
+
this.elementContainer.destroy();
|
359
365
|
this.elementContainer.setStatus(IContainerStatus.DESTROYED);
|
360
366
|
}
|
361
367
|
}]);
|
@@ -43,7 +43,7 @@ var AuthProcessor = /*#__PURE__*/function (_BaseElementProcessor) {
|
|
43
43
|
key: "generateIframeSrc",
|
44
44
|
value: function generateIframeSrc() {
|
45
45
|
// 实现 generateIframeSrc 方法
|
46
|
-
return '';
|
46
|
+
return 'http://30.177.81.89:5175/auth-elements/src/pages/element_auth/index.html';
|
47
47
|
}
|
48
48
|
}, {
|
49
49
|
key: "obtainData",
|
@@ -1,6 +1,9 @@
|
|
1
1
|
import BaseElementProcessor from './baseElementProcessor';
|
2
2
|
declare class PaymentProcessor extends BaseElementProcessor {
|
3
|
+
private ApplePayService;
|
3
4
|
onReady(extraParam: any): void;
|
5
|
+
private addEventListener;
|
6
|
+
private initApplePaySdk;
|
4
7
|
beforeMount(): void;
|
5
8
|
preload(): void;
|
6
9
|
generateIframeSrc({ link, instanceId }: {
|
@@ -8,11 +8,11 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
8
8
|
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 e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
9
9
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
10
10
|
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); }); }; }
|
11
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
12
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
11
13
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
12
14
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
13
15
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
14
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
15
|
-
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
16
16
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
17
17
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
18
18
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
@@ -20,25 +20,36 @@ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) ===
|
|
20
20
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
21
21
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
22
22
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
23
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
24
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
25
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
23
26
|
import { parseSessionData } from "../..";
|
24
27
|
import PackageJson from "../../../../../package.json";
|
28
|
+
import { EVENT } from "../../../../constant";
|
25
29
|
import { ServiceProvider } from "../../../../foundation/service";
|
30
|
+
import { ApplePaySdk, handleGooglePay, isSkipRenderPaymentMethod } from "../../../../plugin/component/channel";
|
26
31
|
import { generateIframeSrc as _generateIframeSrc } from "../util";
|
32
|
+
import { LogConfig, Logger } from "../../../../util/logger";
|
33
|
+
var logger = new Logger(LogConfig, true);
|
27
34
|
import BaseElementProcessor from "./baseElementProcessor";
|
28
35
|
var PaymentProcessor = /*#__PURE__*/function (_BaseElementProcessor) {
|
29
36
|
_inherits(PaymentProcessor, _BaseElementProcessor);
|
30
37
|
var _super = _createSuper(PaymentProcessor);
|
31
38
|
function PaymentProcessor() {
|
39
|
+
var _this;
|
32
40
|
_classCallCheck(this, PaymentProcessor);
|
33
|
-
|
41
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
42
|
+
args[_key] = arguments[_key];
|
43
|
+
}
|
44
|
+
_this = _super.call.apply(_super, [this].concat(args));
|
45
|
+
// parameterInitAndCheck(): void {}
|
46
|
+
// apple pay
|
47
|
+
_defineProperty(_assertThisInitialized(_this), "ApplePayService", void 0);
|
48
|
+
return _this;
|
34
49
|
}
|
35
50
|
_createClass(PaymentProcessor, [{
|
36
51
|
key: "onReady",
|
37
|
-
value:
|
38
|
-
// parameterInitAndCheck(): void {}
|
39
|
-
|
40
|
-
function onReady(extraParam) {
|
41
|
-
var _paymentContext$start, _paymentContext$start2;
|
52
|
+
value: function onReady(extraParam) {
|
42
53
|
var paymentContext = this.elementContainer.getPaymentContext();
|
43
54
|
this.eventCenter.dispatchToApp({
|
44
55
|
event: 'renderComponent',
|
@@ -52,15 +63,124 @@ var PaymentProcessor = /*#__PURE__*/function (_BaseElementProcessor) {
|
|
52
63
|
},
|
53
64
|
appearance: paymentContext === null || paymentContext === void 0 ? void 0 : paymentContext.displayInfo.appearance,
|
54
65
|
sessionResult: paymentContext === null || paymentContext === void 0 ? void 0 : paymentContext.paymentSessionObj,
|
55
|
-
notRedirectAfterComplete: (
|
56
|
-
merchantAppointParam:
|
66
|
+
notRedirectAfterComplete: (extraParam === null || extraParam === void 0 ? void 0 : extraParam.notRedirectAfterComplete) === true,
|
67
|
+
merchantAppointParam: extraParam === null || extraParam === void 0 ? void 0 : extraParam.merchantAppointParam
|
57
68
|
}
|
58
69
|
});
|
59
70
|
}
|
71
|
+
}, {
|
72
|
+
key: "addEventListener",
|
73
|
+
value: function addEventListener() {
|
74
|
+
var _this2 = this;
|
75
|
+
this.eventCenter.listen(EVENT.onPollingEnd.name, function (data) {
|
76
|
+
_this2.eventCenter.dispatchToApp({
|
77
|
+
event: 'onPollingEnd',
|
78
|
+
data: data
|
79
|
+
});
|
80
|
+
});
|
81
|
+
this.eventCenter.listen(EVENT.closePaymentPolling.name, function (data) {
|
82
|
+
_this2.eventCenter.dispatchToApp({
|
83
|
+
event: EVENT.closePaymentPolling.name,
|
84
|
+
data: data
|
85
|
+
});
|
86
|
+
});
|
87
|
+
this.eventCenter.listen(EVENT.getGooglePayToken.name, function (data, result) {
|
88
|
+
handleGooglePay(result).then(function (res) {
|
89
|
+
_this2.eventCenter.dispatchToApp({
|
90
|
+
event: 'getGooglePayToken',
|
91
|
+
data: _objectSpread({}, res)
|
92
|
+
});
|
93
|
+
}).catch(function (err) {
|
94
|
+
_this2.eventCenter.dispatchToApp({
|
95
|
+
event: 'getGooglePayToken',
|
96
|
+
data: {
|
97
|
+
err: err
|
98
|
+
}
|
99
|
+
});
|
100
|
+
});
|
101
|
+
});
|
102
|
+
this.eventCenter.listen(EVENT.getApplePayToken.name, function (data) {
|
103
|
+
var _this2$elementContain = _this2.elementContainer.getPaymentContext(),
|
104
|
+
paymentSessionId = _this2$elementContain.paymentSessionId,
|
105
|
+
paymentSessionObj = _this2$elementContain.paymentSessionObj;
|
106
|
+
var applePayService = new ApplePaySdk({
|
107
|
+
paymentSessionData: paymentSessionId,
|
108
|
+
parseData: paymentSessionObj,
|
109
|
+
logger: logger
|
110
|
+
});
|
111
|
+
applePayService.startPay().then(function (res) {
|
112
|
+
_this2.eventCenter.dispatchToApp({
|
113
|
+
event: 'getApplePayToken',
|
114
|
+
data: {
|
115
|
+
success: true,
|
116
|
+
result: res
|
117
|
+
}
|
118
|
+
});
|
119
|
+
}).catch(function (err) {
|
120
|
+
_this2.eventCenter.dispatchToApp({
|
121
|
+
event: 'getApplePayToken',
|
122
|
+
data: {
|
123
|
+
success: false,
|
124
|
+
result: err
|
125
|
+
}
|
126
|
+
});
|
127
|
+
});
|
128
|
+
});
|
129
|
+
}
|
130
|
+
}, {
|
131
|
+
key: "initApplePaySdk",
|
132
|
+
value: function () {
|
133
|
+
var _initApplePaySdk = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
134
|
+
var _this$elementContaine2;
|
135
|
+
var _this$elementContaine, paymentSessionObj, paymentSessionId;
|
136
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
137
|
+
while (1) switch (_context.prev = _context.next) {
|
138
|
+
case 0:
|
139
|
+
_this$elementContaine = (_this$elementContaine2 = this.elementContainer) === null || _this$elementContaine2 === void 0 ? void 0 : _this$elementContaine2.getPaymentContext(), paymentSessionObj = _this$elementContaine.paymentSessionObj, paymentSessionId = _this$elementContaine.paymentSessionId;
|
140
|
+
if (!isSkipRenderPaymentMethod(paymentSessionObj)) {
|
141
|
+
_context.next = 13;
|
142
|
+
break;
|
143
|
+
}
|
144
|
+
this.ApplePayService = new ApplePaySdk({
|
145
|
+
paymentSessionData: paymentSessionId,
|
146
|
+
parseData: paymentSessionObj,
|
147
|
+
logger: logger
|
148
|
+
});
|
149
|
+
_context.prev = 3;
|
150
|
+
logger.logInfo({
|
151
|
+
title: 'a3753.b107385.c398110'
|
152
|
+
});
|
153
|
+
_context.next = 7;
|
154
|
+
return this.ApplePayService.initApplePaySession();
|
155
|
+
case 7:
|
156
|
+
logger.logInfo({
|
157
|
+
title: 'a3753.b107385.c398112'
|
158
|
+
});
|
159
|
+
_context.next = 13;
|
160
|
+
break;
|
161
|
+
case 10:
|
162
|
+
_context.prev = 10;
|
163
|
+
_context.t0 = _context["catch"](3);
|
164
|
+
logger.logError({
|
165
|
+
title: 'a3753.b107385.c398111'
|
166
|
+
});
|
167
|
+
case 13:
|
168
|
+
case "end":
|
169
|
+
return _context.stop();
|
170
|
+
}
|
171
|
+
}, _callee, this, [[3, 10]]);
|
172
|
+
}));
|
173
|
+
function initApplePaySdk() {
|
174
|
+
return _initApplePaySdk.apply(this, arguments);
|
175
|
+
}
|
176
|
+
return initApplePaySdk;
|
177
|
+
}()
|
60
178
|
}, {
|
61
179
|
key: "beforeMount",
|
62
180
|
value: function beforeMount() {
|
63
181
|
// 实现 beforeMount 方法
|
182
|
+
this.initApplePaySdk();
|
183
|
+
this.addEventListener();
|
64
184
|
}
|
65
185
|
}, {
|
66
186
|
key: "preload",
|
@@ -107,17 +227,17 @@ var PaymentProcessor = /*#__PURE__*/function (_BaseElementProcessor) {
|
|
107
227
|
}, {
|
108
228
|
key: "obtainData",
|
109
229
|
value: function () {
|
110
|
-
var _obtainData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
111
|
-
var requestService, _this$
|
112
|
-
return _regeneratorRuntime().wrap(function
|
113
|
-
while (1) switch (
|
230
|
+
var _obtainData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
231
|
+
var requestService, _this$elementContaine3, paymentSession, paymentSessionObj, _this$options2, environment, locale, _ref4, paymentSessionConfig, hostSign, originActionQuery;
|
232
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
233
|
+
while (1) switch (_context2.prev = _context2.next) {
|
114
234
|
case 0:
|
115
235
|
requestService = ServiceProvider.getInstance(this.instanceId).getService('Requester');
|
116
|
-
_this$
|
236
|
+
_this$elementContaine3 = this.elementContainer.getPaymentContext(), paymentSession = _this$elementContaine3.paymentSession, paymentSessionObj = _this$elementContaine3.paymentSessionObj;
|
117
237
|
_this$options2 = this.options, environment = _this$options2.env.environment, locale = _this$options2.locale;
|
118
238
|
_ref4 = paymentSessionObj || {}, paymentSessionConfig = _ref4.paymentSessionConfig;
|
119
239
|
hostSign = paymentSession.split('&&')[1] || '';
|
120
|
-
|
240
|
+
_context2.next = 7;
|
121
241
|
return requestService.request({
|
122
242
|
paymentSessionConfig: paymentSessionConfig,
|
123
243
|
paymentSessionData: paymentSession
|
@@ -132,15 +252,15 @@ var PaymentProcessor = /*#__PURE__*/function (_BaseElementProcessor) {
|
|
132
252
|
'Operation-Type': 'com.ipay.iexpcashier.sdkAction.query'
|
133
253
|
});
|
134
254
|
case 7:
|
135
|
-
originActionQuery =
|
136
|
-
return
|
255
|
+
originActionQuery = _context2.sent;
|
256
|
+
return _context2.abrupt("return", {
|
137
257
|
originActionQuery: originActionQuery
|
138
258
|
});
|
139
259
|
case 9:
|
140
260
|
case "end":
|
141
|
-
return
|
261
|
+
return _context2.stop();
|
142
262
|
}
|
143
|
-
},
|
263
|
+
}, _callee2, this);
|
144
264
|
}));
|
145
265
|
function obtainData() {
|
146
266
|
return _obtainData.apply(this, arguments);
|
@@ -24,8 +24,9 @@ declare const formatElementOption: (options: IElementOptions) => {
|
|
24
24
|
* 校验渲染条件
|
25
25
|
* 校验当前sdkSelector结点是否存在
|
26
26
|
*/
|
27
|
-
export declare function checkCanMount({ sdkSelector, status }: {
|
27
|
+
export declare function checkCanMount({ sdkSelector, containerService, status, }: {
|
28
28
|
sdkSelector: string;
|
29
|
+
containerService: ContainerController;
|
29
30
|
status: IElementStatus;
|
30
31
|
}): {
|
31
32
|
success: boolean;
|
@@ -10,8 +10,8 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
10
10
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
11
11
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
12
12
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
13
|
-
import { IElementStatus } from "../../../foundation";
|
14
13
|
import { ERRORMESSAGE } from "../../../constant";
|
14
|
+
import { IElementStatus } from "../../../foundation";
|
15
15
|
import { getIframeUrl } from "../../../plugin/component/cashierApp";
|
16
16
|
import { DisplayTypeEnum, RedirectType, TargetEnum, terminalTypeEnum } from "../../../types";
|
17
17
|
import { device } from "../../../util/index";
|
@@ -31,6 +31,7 @@ var formatElementOption = function formatElementOption(options) {
|
|
31
31
|
*/
|
32
32
|
export function checkCanMount(_ref) {
|
33
33
|
var sdkSelector = _ref.sdkSelector,
|
34
|
+
containerService = _ref.containerService,
|
34
35
|
status = _ref.status;
|
35
36
|
// 校验当前 sdkSelector 结点是否存在
|
36
37
|
var element = document.querySelector(sdkSelector);
|
@@ -47,7 +48,12 @@ export function checkCanMount(_ref) {
|
|
47
48
|
errorMsg: "Creating components in the destroyed state is forbidden."
|
48
49
|
};
|
49
50
|
}
|
50
|
-
if (status
|
51
|
+
if (status === IElementStatus.READY) {
|
52
|
+
return {
|
53
|
+
success: true
|
54
|
+
};
|
55
|
+
}
|
56
|
+
if (containerService) {
|
51
57
|
return {
|
52
58
|
success: false,
|
53
59
|
errorMsg: "SDK status error."
|
@@ -59,7 +59,11 @@ export var ContainerService = /*#__PURE__*/function () {
|
|
59
59
|
}, {
|
60
60
|
key: "load",
|
61
61
|
value: function load(displayInfo, url, closeBtnFunc) {
|
62
|
-
var
|
62
|
+
var appendAliasContainerId = displayInfo.appendAliasContainerId,
|
63
|
+
selector = displayInfo.selector,
|
64
|
+
type = displayInfo.type,
|
65
|
+
platform = displayInfo.platform;
|
66
|
+
var webApp = createIframe('antom-sdk-web-app' + (displayInfo.appendAliasContainerId ? "-".concat(selector) : ''));
|
63
67
|
this.webApp = webApp;
|
64
68
|
this.displayInfo = displayInfo;
|
65
69
|
webApp.src = url;
|
@@ -70,7 +74,7 @@ export var ContainerService = /*#__PURE__*/function () {
|
|
70
74
|
// TODO call ApiBusManager to add listener to iframe, componentApp line 979
|
71
75
|
|
72
76
|
// create container and append web app
|
73
|
-
var container =
|
77
|
+
var container = type === DisplayTypeEnum.inline ? createInlineBaseElement(selector, appendAliasContainerId ? "".concat(COMPONENT_CONTAINER_ID, "-").concat((selector === null || selector === void 0 ? void 0 : selector.indexOf('#')) === -1 ? selector : selector.slice(1)) : '') : createBaseElement(platform, closeBtnFunc);
|
74
78
|
container.appendChild(webApp);
|
75
79
|
return container;
|
76
80
|
}
|
@@ -214,22 +218,26 @@ export var ContainerService = /*#__PURE__*/function () {
|
|
214
218
|
}, {
|
215
219
|
key: "handleSizeChanged",
|
216
220
|
value: function handleSizeChanged(data) {
|
221
|
+
var _this$displayInfo3 = this.displayInfo,
|
222
|
+
appendAliasContainerId = _this$displayInfo3.appendAliasContainerId,
|
223
|
+
selector = _this$displayInfo3.selector;
|
224
|
+
var cashierId = appendAliasContainerId ? "".concat(COMPONENT_CONTAINER_ID, "-").concat((selector === null || selector === void 0 ? void 0 : selector.indexOf('#')) === -1 ? selector : selector.slice(1)) : COMPONENT_CONTAINER_ID;
|
217
225
|
if (!this.webApp || !this.displayInfo) {
|
218
226
|
return;
|
219
227
|
}
|
220
|
-
var cashier = document.getElementById(
|
221
|
-
if ((data === null || data === void 0 ? void 0 : data.height) <= 1 || data.height === parseInt(cashier.style.height)) return;
|
228
|
+
var cashier = document.getElementById(cashierId);
|
229
|
+
if (!cashier || (data === null || data === void 0 ? void 0 : data.height) <= 1 || data.height === parseInt(cashier.style.height)) return;
|
222
230
|
cashier.style.height = "".concat(data.height, "px");
|
223
231
|
this.webApp.style.opacity = '1';
|
224
232
|
if (this.displayInfo.type === DisplayTypeEnum.popup) {
|
225
233
|
if (this.displayInfo.platform === 'desktop') {
|
226
234
|
if (data.width) cashier.style.width = "".concat(data.width, "px");
|
227
|
-
cashier.classList.add("".concat(
|
235
|
+
cashier.classList.add("".concat(cashierId, "-").concat(this.displayInfo.platform, "-animation"));
|
228
236
|
this.webApp.style.height = "".concat(data.height, "px");
|
229
237
|
}
|
230
238
|
if (this.displayInfo.platform === 'mobile') {
|
231
|
-
cashier.classList.add("".concat(
|
232
|
-
var animationStyleId = "".concat(
|
239
|
+
cashier.classList.add("".concat(cashierId, "-").concat(this.displayInfo.platform, "-animation"));
|
240
|
+
var animationStyleId = "".concat(cashierId, "-").concat(this.displayInfo.platform, "-animation-style");
|
233
241
|
var animationStyle = document.getElementById(animationStyleId);
|
234
242
|
if (animationStyle) animationStyle === null || animationStyle === void 0 || animationStyle.remove();
|
235
243
|
|
@@ -109,7 +109,7 @@ export var EventCenter = /*#__PURE__*/function () {
|
|
109
109
|
var isJson = isJsonString(e.data);
|
110
110
|
if (isJson) {
|
111
111
|
var _eventPayload = JSON.parse(e.data);
|
112
|
-
if (_eventPayload.context.event && _eventPayload.context.event !==
|
112
|
+
if (_eventPayload.context.event && _eventPayload.context.event !== 'onLog') {}
|
113
113
|
if (!this.checkEventCompliant(_eventPayload)) {
|
114
114
|
return;
|
115
115
|
}
|