UNPKG

pay-sdk-react

Version:

A cross-platform payment SDK for React, supporting Alipay, WeChat Pay, PayPal, Stripe, Payssion, and Airwallex, compatible with H5, PC, and App environments.

71 lines 4.25 kB
const _excluded = ["type", "options", "initOptions", "style", "onReady", "onSuccess", "onError"]; function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } 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; } 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; } function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; } 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); } function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; } function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; } import React, { forwardRef, useEffect, useImperativeHandle, useRef } from 'react'; import { loadAirwallex } from 'airwallex-payment-elements'; import { clientDocument, off, on } from '../utils/dom'; const Airwallex = /*#__PURE__*/forwardRef((props, ref) => { const { type = 'fullFeaturedCard', options, initOptions, style, onReady: propsOnReady, onSuccess: propsOnSuccess, onError: propsOnError } = props, others = _objectWithoutProperties(props, _excluded); const airwallexRef = useRef(null); useImperativeHandle(ref, () => airwallexRef.current); useEffect(() => { loadAirwallex(_objectSpread({ env: 'demo' }, initOptions)).then(airwallex => { if (airwallex) { const cardElement = airwallex.createElement(type, options); if (cardElement) { cardElement.mount(type); } } }); }, [options, type, initOptions]); useEffect(() => { const el = clientDocument === null || clientDocument === void 0 ? void 0 : clientDocument.getElementById(type); const onReady = event => { propsOnReady === null || propsOnReady === void 0 || propsOnReady(event); }; const onSuccess = event => { propsOnSuccess === null || propsOnSuccess === void 0 || propsOnSuccess(event); }; const onError = event => { propsOnError === null || propsOnError === void 0 || propsOnError(event); }; if (el) { on(el, 'onReady', onReady); on(el, 'onSuccess', onSuccess); on(el, 'onError', onError); } return () => { if (el) { off(el, 'onReady', onReady); off(el, 'onSuccess', onSuccess); off(el, 'onError', onError); } }; }, [type, propsOnReady, propsOnSuccess, propsOnError]); return /*#__PURE__*/React.createElement("div", _extends({ ref: airwallexRef, id: String(type), style: _objectSpread({ width: '100%' }, style) }, others)); }); Airwallex.displayName = 'Airwallex'; export default /*#__PURE__*/React.memo(Airwallex);