{"version":3,"file":"applicationErrorHelper-ba84a51a.js","sources":["../../../client-app/src/common/ui/StepList/index.tsx","../../../client-app/src/common/applicationPages/applicationErrorHelper.ts"],"sourcesContent":["import React from \"react\";\nimport { joinNames } from \"../helpers\";\nimport styles from \"./style.module.scss\";\n\ntype Step = { name: string; description?: string };\ntype ApplicationStepListProps = { steps: Step[]; current: number };\n\nexport default function ApplicationStepList({\n steps,\n current,\n}: ApplicationStepListProps) {\n const { name: progressName } = steps[current];\n return (\n \n
    \n {steps.map((a, i) => (\n
  1. \n {i + 1}\n {a.name}\n
  2. \n ))}\n
\n \n );\n}\n","import { ServiceInvocationError, ApplicationError, DurationExeededError, ValidationProblemDetailsError } from '@n2-common/services/errors';\nimport { getI18n } from 'react-i18next';\nimport { logErrorToServerside } from '@n2-common/services/serverSideLogging';\nimport { ActionOptions } from '@n2-common/ui/Container';\nimport { TFunction } from 'i18next';\nimport { FetchError } from '@n2-common/lib/fetchProxy';\n\nexport function errorToAction(\n error: unknown,\n formNameOrSubmitHandler: string | (() => void),\n applicationId: string | null | undefined,\n applicantId: string | null | undefined\n): ActionOptions | undefined;\n\nexport function errorToAction(\n error: unknown,\n formNameOrSubmitHandler: string | (() => void),\n applicationId: string | null | undefined,\n applicantId: string | null | undefined,\n backend: Backend\n): ActionOptions | undefined;\n\n/**\n * Function to be used in in catch block, to parse catched error, and return a possible ActionOptions object,\n * to be used as argument for t.ex. DismissableErrorMessage, to show errormessage, and/or possible user-action.\n * @note This method is logging error serverside, if error has a solution (action).\n * @param error\n * @param formNameOrSubmitHandler Formname or submit-handler, to be used on resubmit types.\n * @param applicationId\n * @param applicantId\n * @returns\n */\nexport function errorToAction(\n error: unknown,\n formNameOrSubmitHandler: string | (() => void),\n applicationId: string | null | undefined,\n applicantId: string | null | undefined,\n backend: Backend = 'O1'\n): ActionOptions | undefined {\n if (error instanceof DOMException && error.name == 'AbortError') {\n return { action: 'ignore', message: 'We ignore abort from abortsignal' };\n }\n\n const { t } = getI18n();\n let data: unknown = undefined;\n const [action, message] = (function parseError(): Readonly<[ActionOptions, string] | [undefined, undefined]> {\n if (error instanceof DurationExeededError) {\n // Only thing we can do, is to reload with applicationId, and see if state has changed.\n return [\n {\n message: t(`common:PollingError.Message`),\n button: t(`common:PollingError.ButtonText`),\n action: 'replace',\n url: getLoadApplicationUrl(location, error.applicationId, error.applicantId),\n },\n `${error.message}`,\n ] as const;\n }\n if (error instanceof ServiceInvocationError) {\n data = error.response;\n switch (error.method) {\n // Submit failed - ask for retry\n case 'O2Service.UploadDocuments':\n case 'O2Service.DeleteDocument':\n case 'ApplicationApiService.PostLoanApplication':\n case 'ApplicationApiService.SetPpi':\n case 'CddService.PostToKompisApi':\n case 'ApplicationApiService.StartCreditCardSigning':\n case 'ApplicationApiService.SetAccountNumber': {\n return [createRetryAction(t, formNameOrSubmitHandler), `Error calling ${error.method}: ${error.message}`] as const;\n }\n\n // Chained servicecall failed - Ask to load application, to se current state of application.\n case 'ApplicationApiService.GetApplicatId':\n return [\n {\n message: t(`common:ServiceInvocationError.StatusRequest.Message`),\n button: t(`common:ServiceInvocationError.StatusRequest.ButtonText`),\n action: 'replace',\n url: getLoadApplicationUrl(location, error.applicationId, error.applicantId),\n },\n `Error calling ${error.method}: ${error.message}`,\n ] as const;\n }\n }\n if (error instanceof ApplicationError && error.applicationId) {\n return [\n {\n message: t(`common:GeneralApplicationError.Load.Message`),\n button: t(`common:GeneralApplicationError.Load.ButtonText`),\n action: 'replace',\n url: getLoadApplicationUrl(location, error.applicationId, error.applicantId),\n },\n error.message,\n ] as const;\n }\n if (error instanceof ValidationProblemDetailsError) {\n // This error should never be possible to experience on client - cs- and ss-validation should be in sync.\n return [\n {\n message: `${error.message}
${Object.entries(error.errors)\n .map(([k, v]) => `${k}: ${v.join(', ')}`)\n .join('
')}`,\n action: 'dismissable',\n },\n error.message,\n ] as const;\n }\n\n if (error instanceof FetchError) {\n return [\n {\n message: t('common:ServiceInvocationError.FetchError.Message'),\n action: 'dismissable',\n },\n error.message,\n ] as const;\n }\n\n // This is typically network errors, endpoint problems - we just show an alert, and ask user to try submitting again.\n if (error instanceof TypeError) {\n return [\n {\n message: t('common:ServiceInvocationError.FetchError.Message'),\n action: 'dismissable',\n },\n error.message,\n ] as const;\n }\n return [undefined, undefined] as const;\n })();\n\n if (action) {\n logErrorToServerside(`Action found for error: ${message}.`, applicationId, applicantId, data || error, backend);\n } else {\n logErrorToServerside(`Unhandled error`, applicationId, applicantId, data || error, backend);\n }\n return action;\n}\n\nexport function createRetryAction(t: TFunction, formNameOrSubmitHandler: string | (() => void)) {\n const options = {\n message: t(`common:ServiceInvocationError.PrimarySubmit.Message`),\n button: t(`common:ServiceInvocationError.PrimarySubmit.ButtonText`),\n };\n return getResubmitAction(formNameOrSubmitHandler, options);\n}\n\nfunction getResubmitAction(formNameOrSubmitHandler: string | (() => void), options: { button: string; message: string }): ActionOptions {\n const isForm = typeof formNameOrSubmitHandler == 'string';\n return isForm\n ? { ...options, action: 'submit', formName: formNameOrSubmitHandler }\n : { ...options, action: 'click', onClick: formNameOrSubmitHandler };\n}\n\nfunction getLoadApplicationUrl(location: Location, applicationId: string | undefined, applicantId: string | undefined) {\n return applicationId\n ? `${location.pathname}?applicationId=${applicationId}${applicantId ? `&applicantId=${applicantId}` : ''}`\n : location.pathname;\n}\n"],"names":["ApplicationStepList","steps","current","progressName","jsx","styles","a","i","jsxs","joinNames","errorToAction","error","formNameOrSubmitHandler","applicationId","applicantId","backend","getI18n","data","action","message","DurationExeededError","getLoadApplicationUrl","ServiceInvocationError","createRetryAction","ApplicationError","ValidationProblemDetailsError","k","v","FetchError","logErrorToServerside","t","options","getResubmitAction","location"],"mappings":"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"}