{"version":3,"file":"authentication-Cx1p_RCB.js","sources":["../../../app/assets/images/envelope-check.png?react","../../../app/javascript/components/Login/index.jsx","../../../app/javascript/entrypoints/authentication.jsx"],"sourcesContent":["export default \"__VITE_ASSET__Zvwh1xKa__$_?react__\"","import React, { useState } from 'react'\nimport PhoneInput from 'react-phone-input-2'\n\nimport TwofaInput from '@components/TwofaInput'\nimport { InputField } from '@components/FormBuilder'\nimport Fetch from '@javascript/Fetch'\nimport Icon from '@components/shared/icons'\nimport { formatPhoneNumber } from '@javascript/util'\n\nimport Envelope from '@images/envelope-check.png?react'\n\nimport 'react-phone-input-2/lib/material.css'\n\nconst Login = ({ data }) => {\n const { requestTwofaPath, confirmTwofaPath, reaPath } = data\n\n const [view, setView] = useState('phone')\n const [phone, setPhone] = useState('')\n const [email, setEmail] = useState('')\n const [dialCode, setDialCode] = useState('')\n const [phoneError, setPhoneError] = useState([])\n const [twofaError, setTwofaError] = useState([])\n const [pin, setPin] = useState('')\n const [twofaType, setTwofaType] = useState('phone')\n\n const handlePhoneChange = (newPhone, data, e, formattedValue) => {\n setPhone(newPhone);\n setDialCode(data.dialCode);\n setPhoneError([]);\n }\n\n const onEnterKeyPress = (e) => {\n if (e.key === \"Enter\") {\n sendTwofa(e);\n }\n }\n\n const handleEmailChange = (e) => {\n setEmail(e.currentTarget.value)\n }\n\n const handleChangePin = (e, value) => {\n setPin(value)\n }\n\n const retry = () => {\n setView(twofaType);\n setPhoneError([]);\n setTwofaError([]);\n }\n\n const redirectBackToRea = () => {\n window.open(reaPath, '_self')\n }\n\n const sendTwofa = async (e) => {\n const target = e.currentTarget\n\n target.disabled = true\n\n setTwofaType(view)\n\n const payload = view === 'phone' ? { phone } : { email }\n\n const resp = await Fetch.post({\n url: requestTwofaPath,\n payload,\n })\n\n if (!resp.errors) {\n setView('confirmation')\n } else {\n setPhoneError([resp.errors])\n }\n\n target.disabled = false\n }\n\n const confirmTwofa = async (e) => {\n const target = e.currentTarget\n\n target.disabled = true\n\n const resp = await Fetch.post({\n url: confirmTwofaPath,\n payload: {\n code: pin,\n phone,\n email,\n },\n })\n\n if (!resp.errors) {\n window.location = resp.url\n } else {\n setTwofaError(resp.errors)\n }\n\n target.disabled = false\n }\n\n const swapView = (newView) => {\n setPhoneError([]);\n setView(newView)\n }\n\n const twofaContent = () => {\n switch (view) {\n case 'email':\n return (\n
\n In order to retrieve your agents, we need you to verify your\n contact information.\n
\n\n A message with a verification code was just sent to \n {twofaType === 'phone' ? formatPhoneNumber(phone) : email }\n
\n \n\n In order to retrieve your agents, we need you to verify your\n contact information.\n
\n