UNPKG

@adyen/kyc-components

Version:

This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.

82 lines (81 loc) 4.98 kB
try { let e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack; n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "7f0ef8f9-0d28-4825-afb6-417571257cda", e._sentryDebugIdIdentifier = "sentry-dbid-7f0ef8f9-0d28-4825-afb6-417571257cda"); } catch (e) {} import { n as addResourceBundles, r as useTranslation } from "./translation-BFxyJ1c5.js"; import { r as Loader } from "./Button-oj6H8OrC.js"; import { r as useLegalEntity, t as ROOT_LE } from "./useLegalEntity-yxi9XhLi.js"; import { t as getLegalEntityCountry } from "./getLegalEntityCountry-C6bSV6sB.js"; import { t as useAccountHolder } from "./useAccountHolder-ClppK4-L.js"; import { s as noop } from "./useAnalyticsContext-BVFDMrVE.js"; import { t as _rolldown_dynamic_import_helper_default } from "./_rolldown_dynamic_import_helper-rq_tsyLP.js"; import { C as EntityTypes, c as individualBaseMapping } from "./processCapabilities-DlZY9-Jc.js"; import { p as TaskTypes } from "./entityAssociationUtil-BEzUdPbm.js"; import { o as isPartOfTrustFromLegalEntity } from "./trustUtil-BTHvlo55.js"; import { n as useCapabilityProblems, t as getProblemsForEntity } from "./getProblemsForEntity-BLcIg3x_.js"; import { t as filterProblemsByTaskForms } from "./filterProblemsByTaskForms-DwS9T-_E.js"; import { n as getTrustedFields, r as getTrustedFieldsProvider } from "./getTrustedFields-UVTLadau.js"; import { n as individualForms, t as IndividualDropin } from "./IndividualDropin-D1n1fwWm.js"; import { jsx } from "preact/jsx-runtime"; //#region src/components/Individual/pages/RootIndividualDetailsPage.tsx function RootIndividualDetailsPage({ asModal = false, hideSidebar = false, isTargetLegalEntityType = false, onSubmit, handleBackClick, handleCloseClick, handleHomeClick = noop }) { const { data: rootLe } = useLegalEntity(ROOT_LE); const capabilityProblems = useCapabilityProblems(); const { accountHolder } = useAccountHolder(); const { i18n } = useTranslation(); addResourceBundles(i18n, [{ ns: "individual", importFn: (lang) => _rolldown_dynamic_import_helper_default(/* @__PURE__ */ Object.assign({ "../language/bg-BG.json": () => import("./bg-BG-BlOJQ7iZ.js"), "../language/cs-CZ.json": () => import("./cs-CZ-CtEcakjz.js"), "../language/da-DK.json": () => import("./da-DK-Cp1cdZTG.js"), "../language/de-DE.json": () => import("./de-DE-ZWLyKP5G.js"), "../language/el-GR.json": () => import("./el-GR-DSmTVw3A.js"), "../language/en-US.instructions.json": () => import("./en-US.instructions-HI_HXwIA.js"), "../language/en-US.json": () => import("./en-US-5p2iDJhN.js"), "../language/es-ES.json": () => import("./es-ES-CKWpTQva.js"), "../language/et-EE.json": () => import("./et-EE-BeU-JlIv.js"), "../language/fi-FI.json": () => import("./fi-FI-DKJi4py_.js"), "../language/fr-FR.json": () => import("./fr-FR-JIF28b7U.js"), "../language/hr-HR.json": () => import("./hr-HR-C4LLZhRc.js"), "../language/hu-HU.json": () => import("./hu-HU-1NJpWkUj.js"), "../language/it-IT.json": () => import("./it-IT-C4b9Y6tP.js"), "../language/ja-JP.json": () => import("./ja-JP-BFkGV7Ct.js"), "../language/lt-LT.json": () => import("./lt-LT-Cq2T_YgH.js"), "../language/lv-LV.json": () => import("./lv-LV-DcclJdry.js"), "../language/nl-NL.json": () => import("./nl-NL-DWgJVfgU.js"), "../language/no-NO.json": () => import("./no-NO-BCZzdSpR.js"), "../language/pl-PL.json": () => import("./pl-PL-D3efS6b_.js"), "../language/pt-BR.json": () => import("./pt-BR-OCQiqikl.js"), "../language/pt-PT.json": () => import("./pt-PT-BHbd93Ic.js"), "../language/ro-RO.json": () => import("./ro-RO-CVzi0I9_.js"), "../language/sk-SK.json": () => import("./sk-SK-woMNza6o.js"), "../language/sl-SI.json": () => import("./sl-SI-Czu6HrQs.js"), "../language/sv-SE.json": () => import("./sv-SE-BIe7wyHM.js") }), `../language/${lang}.json`, 3) }]); if (!rootLe) return /* @__PURE__ */ jsx(Loader, {}); const country = getLegalEntityCountry(rootLe); const hasTrust = accountHolder === "aTrust" || isPartOfTrustFromLegalEntity(rootLe); const problemsByTask = filterProblemsByTaskForms(capabilityProblems ? getProblemsForEntity(capabilityProblems, EntityTypes.LEGAL_ENTITY, rootLe.id) : void 0, Object.keys(individualForms)); const trustedFieldsProvider = getTrustedFieldsProvider(rootLe); const trustedFields = getTrustedFields(rootLe, individualBaseMapping); return /* @__PURE__ */ jsx(IndividualDropin, { taskType: TaskTypes.INDIVIDUAL, taskName: hasTrust ? "individualTrusteeDetails" : "individualDetails", legalEntityResponse: rootLe, problems: problemsByTask, country, asModal, hideSidebar, isTargetLegalEntityType, onSubmit, trustedFieldsProvider, handleBackClick, handleCloseClick, handleHomeClick, trustedFields }); } //#endregion export { RootIndividualDetailsPage };