@complycube/react-native
Version:
ComplyCube's React Native Mobile SDK library for Identity Verification, KYC, and AML
42 lines (40 loc) • 2.61 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ComplyCubeComponent = void 0;
exports.default = ComplyCubeAndroid;
var React = _interopRequireWildcard(require("react"));
var _reactNative = require("react-native");
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
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; }
// @ts-nocheck
// Extend the UIManager with the commands we need
let ComplyCubeComponent = (0, _reactNative.requireNativeComponent)('ComplyCubeComponent');
exports.ComplyCubeComponent = ComplyCubeComponent;
console.log("ddddd", _reactNative.UIManager === null || _reactNative.UIManager === void 0 ? void 0 : _reactNative.UIManager.ComplyCubeComponent);
const createFragment = viewId => _reactNative.UIManager.dispatchViewManagerCommand(viewId, // we are calling the 'create' command
_reactNative.UIManager === null || _reactNative.UIManager === void 0 ? void 0 : _reactNative.UIManager.ComplyCubeComponent.Commands.create.toString(),
// 1,
[viewId]);
console.log('ComplyCubeView: ', ComplyCubeComponent);
function ComplyCubeAndroid(_ref) {
let {
settings
} = _ref;
const ref = React.useRef(null);
React.useEffect(() => {
// console.log(ref);
const viewId = (0, _reactNative.findNodeHandle)(ref.current);
createFragment(viewId);
}, []);
return /*#__PURE__*/React.createElement(_reactNative.View, null, /*#__PURE__*/React.createElement(ComplyCubeComponent, {
ref: ref,
settings: settings,
style: {
height: 10,
width: 10
}
}));
}
//# sourceMappingURL=ComplyCubeComponentAndroid.js.map