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.

79 lines (78 loc) 5.07 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] = "87da0c30-4d6d-4a57-a018-a50d4f0ccd8d", e._sentryDebugIdIdentifier = "sentry-dbid-87da0c30-4d6d-4a57-a018-a50d4f0ccd8d"); } 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 } from "./useLegalEntity-yxi9XhLi.js"; import { t as getLegalEntityCountry } from "./getLegalEntityCountry-C6bSV6sB.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 } from "./processCapabilities-DlZY9-Jc.js"; import { p as TaskTypes } from "./entityAssociationUtil-BEzUdPbm.js"; import { n as useCapabilityProblems, t as getProblemsForEntity } from "./getProblemsForEntity-BLcIg3x_.js"; import { t as IndividualDropin } from "./IndividualDropin-D1n1fwWm.js"; import { jsx } from "preact/jsx-runtime"; import { skipToken } from "@tanstack/preact-query"; import { useParams } from "wouter-preact"; //#region src/components/UnincorporatedPartnership/pages/UnincorporatedPartnershipIndividualPage.tsx function UnincorporatedPartnershipIndividualPage({ memberId: memberIdProp, partnershipId, member, asModal = false, hideSidebar = false, isTargetLegalEntityType = false, onSubmit, handleBackClick, handleCloseClick, handleHomeClick = noop }) { const routeParams = useParams(); const memberId = memberIdProp ?? routeParams.memberId; const { data: memberLe } = useLegalEntity(memberId || skipToken); const { data: partnershipLe } = useLegalEntity(partnershipId ?? skipToken); const capabilityProblems = useCapabilityProblems(); const { i18n } = useTranslation(); addResourceBundles(i18n, [{ ns: "individual", importFn: (lang) => _rolldown_dynamic_import_helper_default(/* @__PURE__ */ Object.assign({ "../../Individual/language/bg-BG.json": () => import("./bg-BG-BlOJQ7iZ.js"), "../../Individual/language/cs-CZ.json": () => import("./cs-CZ-CtEcakjz.js"), "../../Individual/language/da-DK.json": () => import("./da-DK-Cp1cdZTG.js"), "../../Individual/language/de-DE.json": () => import("./de-DE-ZWLyKP5G.js"), "../../Individual/language/el-GR.json": () => import("./el-GR-DSmTVw3A.js"), "../../Individual/language/en-US.instructions.json": () => import("./en-US.instructions-HI_HXwIA.js"), "../../Individual/language/en-US.json": () => import("./en-US-5p2iDJhN.js"), "../../Individual/language/es-ES.json": () => import("./es-ES-CKWpTQva.js"), "../../Individual/language/et-EE.json": () => import("./et-EE-BeU-JlIv.js"), "../../Individual/language/fi-FI.json": () => import("./fi-FI-DKJi4py_.js"), "../../Individual/language/fr-FR.json": () => import("./fr-FR-JIF28b7U.js"), "../../Individual/language/hr-HR.json": () => import("./hr-HR-C4LLZhRc.js"), "../../Individual/language/hu-HU.json": () => import("./hu-HU-1NJpWkUj.js"), "../../Individual/language/it-IT.json": () => import("./it-IT-C4b9Y6tP.js"), "../../Individual/language/ja-JP.json": () => import("./ja-JP-BFkGV7Ct.js"), "../../Individual/language/lt-LT.json": () => import("./lt-LT-Cq2T_YgH.js"), "../../Individual/language/lv-LV.json": () => import("./lv-LV-DcclJdry.js"), "../../Individual/language/nl-NL.json": () => import("./nl-NL-DWgJVfgU.js"), "../../Individual/language/no-NO.json": () => import("./no-NO-BCZzdSpR.js"), "../../Individual/language/pl-PL.json": () => import("./pl-PL-D3efS6b_.js"), "../../Individual/language/pt-BR.json": () => import("./pt-BR-OCQiqikl.js"), "../../Individual/language/pt-PT.json": () => import("./pt-PT-BHbd93Ic.js"), "../../Individual/language/ro-RO.json": () => import("./ro-RO-CVzi0I9_.js"), "../../Individual/language/sk-SK.json": () => import("./sk-SK-woMNza6o.js"), "../../Individual/language/sl-SI.json": () => import("./sl-SI-Czu6HrQs.js"), "../../Individual/language/sv-SE.json": () => import("./sv-SE-BIe7wyHM.js") }), `../../Individual/language/${lang}.json`, 5) }]); if (!partnershipLe || memberId && !memberLe) return /* @__PURE__ */ jsx(Loader, {}); const country = getLegalEntityCountry(memberLe ?? partnershipLe); const problems = capabilityProblems && memberId ? getProblemsForEntity(capabilityProblems, EntityTypes.LEGAL_ENTITY, memberId) : void 0; return /* @__PURE__ */ jsx(IndividualDropin, { taskType: TaskTypes.UNINCORPORATED_PARTNERSHIP_MEMBER_INDIVIDUAL, taskName: "partnershipMemberDetails", legalEntityResponse: memberLe, parentLegalEntity: partnershipLe, trustMember: member, problems, country, asModal, hideSidebar, isTargetLegalEntityType, onSubmit, handleBackClick, handleCloseClick, handleHomeClick }); } //#endregion export { UnincorporatedPartnershipIndividualPage };