{"version":3,"file":"linkAccountStore.BhJWWRyH.js","sources":["../../../../../../app/services/LinkAccountService.ts","../../../../../../app/stores/linkAccountStore.ts"],"sourcesContent":["import { ErrorCode } from \"~/enum/ErrorCode\";\nimport LoginResult from \"../models/LoginResult\";\nimport { createSnackbarNotification } from \"@frontiers/brink-ui\";\nimport { useConfigurationStore } from \"~/stores/configurationStore\";\nimport { navigateTo } from \"nuxt/app\";\nimport ErrorMessages from \"~/helpers/ErrorMessages\";\n\nexport class LinkAccountService {\n public static async LinkAccount(loginAuthenticationToken: string): Promise {\n try {\n const configurationStore = useConfigurationStore();\n const configuration = configurationStore.config;\n const response = await fetch(\"/api/onboarding-ui/v1/email/terms-and-conditions/accept\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ loginAuthenticationToken })\n });\n\n if (response.ok) {\n const loginResult = new LoginResult(await response.json());\n\n if (loginResult.LoginResultAction == \"1\") {\n if (loginResult.returnUrl) {\n navigateTo(loginResult.returnUrl, { external: true });\n } else {\n throw new Error(\"Account linked but no returnUrl found after logging in.\");\n }\n }\n }\n else {\n const errorResult = await response.json();\n const errorCode = errorResult.Code;\n\n if (errorCode == ErrorCode.UserSuspended) {\n navigateTo(\"/people/login\");\n createSnackbarNotification({\n message: ErrorMessages.getMessage(ErrorCode.UserSuspended),\n type: \"error\",\n autoDismiss: true,\n showCloseIcon: true,\n actionLabel: \"Contact support team\",\n onActionClick: () => {\n window.location.href = `mailto:${configuration.domainProperties.supportEmail}`;\n }\n });\n newrelic.noticeError('Suspended user has linked account');\n }\n else if (errorCode == ErrorCode.AccountInactiveOrNotVerified) {\n navigateTo(\"/register/code-validation\");\n }\n }\n } catch (e) {\n console.error(\"Error posting login (LinkAccount): \" + e);\n throw e;\n }\n }\n}","import { defineStore } from \"pinia\";\nimport { LinkAccountService } from \"~/services/LinkAccountService\";\n\nexport const useLinkAccountStore = defineStore(\"linkAccount\", {\n state: () => {\n return {\n loginAuthenticationToken: null as string | null,\n loading: false\n };\n },\n getters: {},\n actions: {\n async LinkAccount(): Promise {\n try {\n this.loading = true;\n if (!this.loginAuthenticationToken) {\n throw new Error(\"LoginAuthenticationToken must have a value when calling the link account service.\");\n }\n await LinkAccountService.LinkAccount(this.loginAuthenticationToken as string);\n } catch (error) {\n console.error(error);\n this.loading = false;\n throw error;\n }\n },\n\n setLoginAuthenticationToken(token: string) {\n this.loginAuthenticationToken = token;\n }\n }\n});"],"names":["LinkAccountService","loginAuthenticationToken","configuration","useConfigurationStore","response","loginResult","LoginResult","navigateTo","errorCode","ErrorCode","createSnackbarNotification","ErrorMessages","useLinkAccountStore","defineStore","error","token"],"mappings":"mMAOO,MAAMA,CAAmB,CAC5B,aAAoB,YAAYC,EAAiD,CACzE,GAAA,CAEA,MAAMC,EADqBC,IACc,OACnCC,EAAW,MAAM,MAAM,0DAA2D,CACpF,OAAQ,OACR,QAAS,CACL,eAAgB,kBACpB,EACA,KAAM,KAAK,UAAU,CAAE,yBAAAH,EAA0B,CAAA,CACpD,EAED,GAAIG,EAAS,GAAI,CACb,MAAMC,EAAc,IAAIC,EAAY,MAAMF,EAAS,KAAM,CAAA,EAErD,GAAAC,EAAY,mBAAqB,IACjC,GAAIA,EAAY,UACZE,EAAWF,EAAY,UAAW,CAAE,SAAU,EAAM,CAAA,MAE9C,OAAA,IAAI,MAAM,yDAAyD,CAEjF,KAEC,CAED,MAAMG,GADc,MAAMJ,EAAS,QACL,KAE1BI,GAAaC,EAAU,eACvBF,EAAW,eAAe,EACCG,EAAA,CACvB,QAASC,EAAc,WAAWF,EAAU,aAAa,EACzD,KAAM,QACN,YAAa,GACb,cAAe,GACf,YAAa,uBACb,cAAe,IAAM,CACjB,OAAO,SAAS,KAAO,UAAUP,EAAc,iBAAiB,YAAY,EAChF,CAAA,CACH,EACD,SAAS,YAAY,mCAAmC,GAEnDM,GAAaC,EAAU,8BAC5BF,EAAW,2BAA2B,CAE9C,QACK,EAAG,CACA,cAAA,MAAM,sCAAwC,CAAC,EACjD,CACV,CACJ,CACJ,CCvDa,MAAAK,EAAsBC,EAAY,cAAe,CAC1D,MAAO,KACI,CACH,yBAA0B,KAC1B,QAAS,EAAA,GAGjB,QAAS,CAAC,EACV,QAAS,CACL,MAAM,aAA6B,CAC3B,GAAA,CAEI,GADJ,KAAK,QAAU,GACX,CAAC,KAAK,yBACA,MAAA,IAAI,MAAM,mFAAmF,EAEjG,MAAAb,EAAmB,YAAY,KAAK,wBAAkC,QACvEc,EAAO,CACZ,cAAQ,MAAMA,CAAK,EACnB,KAAK,QAAU,GACTA,CACV,CACJ,EAEA,4BAA4BC,EAAe,CACvC,KAAK,yBAA2BA,CACpC,CACJ,CACJ,CAAC"}