{"version":3,"file":"index-DfXvcB9C.js","sources":["../../src/pages/register/RegisterForm.tsx","../../src/pages/register/index.tsx"],"sourcesContent":["import HCaptcha from '@hcaptcha/react-hcaptcha';\r\nimport { yupResolver } from '@hookform/resolvers/yup';\r\nimport { FormProvider, useForm } from 'react-hook-form';\r\nimport { FaArrowRight } from 'react-icons/fa';\r\nimport { useNavigate } from 'react-router';\r\nimport { Link } from 'react-router-dom';\r\nimport { boolean, type InferType, object, string } from 'yup';\r\nimport { clearAuthCookie } from '@app/api/auth.api';\r\nimport { createSubscription } from '@app/api/subscription.api';\r\nimport { HCAPTCHA_SITE_KEY } from '@app/config/hCaptcha';\r\nimport { FormCheckbox, FormSelect } from '@app/core/components/form';\r\nimport { FormError } from '@app/core/components/form/FormError';\r\nimport { FormInput } from '@app/core/components/form/FormInput';\r\nimport { FormLabel } from '@app/core/components/form/FormLabel';\r\nimport { FormPassword } from '@app/core/components/form/FormPassword';\r\nimport { LoadingButton } from '@app/core/components/LoadingButton';\r\nimport { useReportError } from '@app/hooks/useReportError';\r\nimport { passwordSchema } from '@app/schemas/passwordSchema';\r\nimport { processRegisterError } from './processRegisterError';\r\nimport { useMemo, useRef } from 'react';\r\nimport type { ITenantType } from '@app/types';\r\n\r\nconst formSchema = object({\r\n contactFirstName: string().trim().required('Enter first name'),\r\n contactLastName: string().trim().required('Enter last name'),\r\n businessName: string().trim().required('Enter your organization’s name'),\r\n contactEmail: string().required('Enter email').email('Invalid email'),\r\n contactPostalCode: string()\r\n .required('Enter zip code')\r\n .matches(/(^\\d{5}$)|(^\\d{5}-\\d{4}$)/, 'Invalid zip code'),\r\n productId: string().required(),\r\n priceId: string().required(),\r\n token: string().required('Please complete the captcha'),\r\n terms: boolean().defined().oneOf([true], 'You must agree to the terms of service'),\r\n promoCode: string().defined(),\r\n password: passwordSchema.required(),\r\n tenantTypeId: string().required('Select account type'),\r\n});\r\n\r\ntype IRegisterFormValues = InferType;\r\n\r\nconst DUPLICATE_EMAIL_ERROR = 'This account already exists.';\r\n\r\ninterface IProps {\r\n productId: string;\r\n priceId: string;\r\n tenantTypes: ITenantType[];\r\n}\r\n\r\nexport const RegisterForm = (props: IProps) => {\r\n const { productId, priceId, tenantTypes } = props;\r\n const navigate = useNavigate();\r\n const reportError = useReportError();\r\n\r\n const selectableTenantTypes = useMemo(\r\n () => tenantTypes.filter((tenantType) => tenantType.isSelectable),\r\n [tenantTypes]\r\n );\r\n\r\n if (selectableTenantTypes.length < 1) {\r\n throw new Error('No selectable tenant types found');\r\n }\r\n\r\n const hasTenantTypeSelector = selectableTenantTypes.length > 1;\r\n\r\n const defaultTenantTypeId = hasTenantTypeSelector ? '' : selectableTenantTypes[0].id;\r\n\r\n const captchaRef = useRef(null as never);\r\n\r\n const methods = useForm({\r\n resolver: yupResolver(formSchema),\r\n defaultValues: {\r\n productId,\r\n priceId,\r\n tenantTypeId: defaultTenantTypeId,\r\n },\r\n });\r\n const {\r\n register,\r\n handleSubmit,\r\n setError,\r\n clearErrors,\r\n setValue,\r\n formState: { errors, isSubmitting },\r\n } = methods;\r\n\r\n const resetCaptcha = () => {\r\n if (captchaRef.current) {\r\n captchaRef.current.resetCaptcha();\r\n }\r\n setValue('token', '');\r\n };\r\n\r\n const onSubmit = async (data: IRegisterFormValues) => {\r\n try {\r\n await clearAuthCookie();\r\n await createSubscription(data);\r\n navigate(`/register/success?email=${encodeURIComponent(data.contactEmail)}`);\r\n } catch (error) {\r\n processRegisterError({ error, setError, reportError, resetCaptcha });\r\n }\r\n };\r\n\r\n const onCaptchaVerify = (token: string) => {\r\n clearErrors('token');\r\n setValue('token', token);\r\n };\r\n const onCaptchaError = (event: string) => setError('token', { message: event });\r\n const onCaptchaExpire = () => setError('token', { message: 'Captcha expired, please try again.' });\r\n\r\n return (\r\n \r\n
\r\n
\r\n
\r\n \r\n First Name\r\n \r\n \r\n \r\n
\r\n\r\n
\r\n \r\n Last Name\r\n \r\n \r\n \r\n
\r\n\r\n
\r\n \r\n Email Address\r\n \r\n \r\n \r\n {errors.contactEmail?.message === DUPLICATE_EMAIL_ERROR && (\r\n

\r\n If you already registered and are trying to create a new InScope account, please{' '}\r\n \r\n sign in\r\n {' '}\r\n first.\r\n

\r\n )}\r\n
\r\n\r\n
\r\n \r\n Password\r\n \r\n \r\n \r\n
\r\n\r\n
\r\n \r\n Business Name\r\n \r\n \r\n \r\n
\r\n\r\n
\r\n \r\n Zip Code\r\n \r\n \r\n \r\n
\r\n\r\n {hasTenantTypeSelector && (\r\n
\r\n \r\n Account Type\r\n \r\n \r\n \r\n {selectableTenantTypes.map((tenantType) => (\r\n \r\n ))}\r\n \r\n \r\n
\r\n )}\r\n\r\n
\r\n Promo Code\r\n \r\n \r\n
\r\n
\r\n\r\n
\r\n \r\n \r\n\r\n \r\n
\r\n\r\n
\r\n \r\n \r\n
\r\n\r\n
\r\n \r\n \r\n Register and Confirm\r\n \r\n
\r\n
\r\n
\r\n );\r\n};\r\n","import { clearAuthCookie } from '@app/api/auth.api';\r\nimport { Alert } from '@app/core/components/Alert';\r\nimport { AuthPaper } from '@app/core/components/AuthPaper';\r\nimport { getStripeSubscriptionProductsQuery } from '@app/queries/subscription.queries';\r\nimport { getTenantTypesQuery } from '@app/queries/tenants.queries';\r\nimport { useQuery } from '@tanstack/react-query';\r\nimport { Link, useLoaderData } from 'react-router-dom';\r\nimport { queryClient } from '../../queryClient';\r\nimport { RegisterForm } from './RegisterForm';\r\n\r\nexport async function loader() {\r\n await clearAuthCookie();\r\n\r\n const [subscriptionProducts, tenantTypes] = await Promise.all([\r\n await queryClient.ensureQueryData(getStripeSubscriptionProductsQuery()),\r\n await queryClient.ensureQueryData(getTenantTypesQuery()),\r\n ]);\r\n\r\n if (!subscriptionProducts[0]) {\r\n throw new Error('No subscription products found');\r\n }\r\n\r\n return {\r\n subscriptionProducts,\r\n tenantTypes,\r\n };\r\n}\r\n\r\nexport const Component = () => {\r\n const loaderData = useLoaderData() as Awaited>;\r\n\r\n const { data: subscriptionProducts } = useQuery({\r\n ...getStripeSubscriptionProductsQuery(),\r\n initialData: loaderData.subscriptionProducts,\r\n });\r\n const { data: tenantTypes } = useQuery({ ...getTenantTypesQuery(), initialData: loaderData.tenantTypes });\r\n\r\n const subscriptionProduct = subscriptionProducts[0];\r\n\r\n return (\r\n \r\n {!!subscriptionProduct.description && {subscriptionProduct.description}}\r\n \r\n\r\n
\r\n

\r\n \r\n Sign In Page\r\n \r\n

\r\n
\r\n );\r\n};\r\nComponent.displayName = 'RegisterPage';\r\n"],"names":["formSchema","object","string","boolean","passwordSchema","DUPLICATE_EMAIL_ERROR","RegisterForm","props","productId","priceId","tenantTypes","navigate","useNavigate","reportError","useReportError","selectableTenantTypes","useMemo","tenantType","hasTenantTypeSelector","defaultTenantTypeId","captchaRef","useRef","methods","useForm","yupResolver","register","handleSubmit","setError","clearErrors","setValue","errors","isSubmitting","resetCaptcha","onSubmit","data","clearAuthCookie","createSubscription","error","processRegisterError","onCaptchaVerify","token","onCaptchaError","event","onCaptchaExpire","jsx","FormProvider","jsxs","FormLabel","FormInput","FormError","_a","Link","FormPassword","FormSelect","FormCheckbox","HCaptcha","HCAPTCHA_SITE_KEY","LoadingButton","FaArrowRight","loader","subscriptionProducts","queryClient","getStripeSubscriptionProductsQuery","getTenantTypesQuery","Component","loaderData","useLoaderData","useQuery","subscriptionProduct","AuthPaper","Alert"],"mappings":"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"}