import React, { useState } from "react"; import Col from "react-bootstrap/Col"; import Form from "react-bootstrap/Form"; import Row from "react-bootstrap/Row"; import Button from "../../pageElements/Button"; import { db, auth } from "../../firebase"; import { createUserWithEmailAndPassword } from "firebase/auth"; import { useNavigate } from "react-router-dom"; import Toggle from "../../pageElements/Toggle"; import TextInput from "../../pageElements/TextInput"; import { v4 as uuidv4 } from "uuid"; import { collection, setDoc, doc } from "firebase/firestore"; import { splitEvery } from "../../Utils/Array"; import { getFormDataDefaults, getValidatedFormData, handleFormDataChange, isFormDataHasErrors, } from "../../Utils/Form"; import { objectMap } from "../../Utils/Object"; import { determinePlan } from "../../Utils/Miscutils"; import { signupFields } from "../../Constants/Fields/SignupFields"; import { paymentfields } from "../../Constants/Fields/PaymentFields"; import { signupRadioFields } from "../../Constants/Fields/RadioFields"; import PaymentModal from "../Modals/PaymentModal"; import Radio from "../../pageElements/Radio"; import "../../styles/signup.scss"; import Stripe from "stripe"; import { stripeApiKey } from "../../secrets"; const SignupPage = () => { const navigate = useNavigate(); const [notice, setNotice] = useState(""); const fieldsChunkSize = 2; const [isBusy, setIsBusy] = useState(false); const [data, setData] = useState(getFormDataDefaults(signupFields)); const [paymentData, setPaymentData] = useState( getFormDataDefaults(paymentfields) ); const [showPaymentModal, setShowPaymentModal] = useState(false); const [showSelectPlan, setShowSelectPlan] = useState(false); const [activeRadioOption, setActiveRadioOption] = useState("partner"); const [selectedPlan, setSelectedPlan] = useState([signupRadioFields[1]]); const [isAnnual, setIsAnnual] = useState(true); const stripe = new Stripe(stripeApiKey); const apiUrl = process.env.NODE_ENV === "development" ? process.env.REACT_APP_API_DEV : process.env.REACT_APP_API_PROD; const [showAddAccount, setShowAddAccount] = useState(false); const [numberOfAccountsToAdd, setNumberOfAccountsToAdd] = useState(); const handleChangeInput = (e, name) => { const newData = handleFormDataChange(e, name, data, signupFields); if (newData !== null) { setData(newData); } }; const handleChangeAccountSelect = (e, name) => { const num = e.target.value; const temp = Number(num); setNumberOfAccountsToAdd(temp); }; const handleChangePaymentInput = (e, name) => { const newPaymentData = handleFormDataChange( e, name, paymentData, paymentfields ); if (newPaymentData !== null) { setPaymentData(newPaymentData); } }; const handleChangeRadioInput = (value) => { const tempPlan = signupRadioFields.filter((plan) => { if (plan.value === value) { return plan; } }); setSelectedPlan(tempPlan); setActiveRadioOption(tempPlan[0].value); }; const vals = [ [1, 2, 3, 4, 5, 6, 7, 8], [1, 2], ]; const selectAdditionalAccountValues = selectedPlan[0].value === "partner" ? vals[1] : vals[0]; const validateUserData = () => { const newData = getValidatedFormData(data, signupFields); const hasErrors = isFormDataHasErrors(newData); setData(newData); return hasErrors ? null : objectMap(({ value }) => value, newData); }; const validatePaymentData = () => { const newPaymentData = getValidatedFormData(paymentData, paymentfields); const hasErrors = isFormDataHasErrors(newPaymentData); setPaymentData(newPaymentData); return hasErrors ? null : objectMap(({ value }) => value, newPaymentData); }; async function saveLeadData(dataValues) { const signupId = uuidv4(); const { firstName, lastName, firm, telephone, streetAddress, city, state, zipCode, barNumber, practiceArea, email, } = dataValues; const userData = { firstName, lastName, firm, telephone, streetAddress, city, state, zipCode, barNumber, practiceArea, email, signupId, }; try { const collecRef = collection(db, "signupLeads"); await setDoc(doc(collecRef, `${signupId}`), userData); } catch (error) { console.log(`Error saving new user to db: ${error}`); } } async function saveUserData(authId, dataValues) { const appUserId = uuidv4(); const firmId = uuidv4(); const fbAuthUid = authId; const plan = selectedPlan; const docsAllowed = plan === "associate" ? 1 : plan === "partner" ? 3 : "unlimited"; const docsGenerated = 0; const { firstName, lastName, firm, telephone, streetAddress, city, state, zipCode, barNumber, practiceArea, email, } = dataValues; const subscriptionId = dataValues?.subscriptionId; const customerId = dataValues?.customerId; const userData = { docsAllowed, docsGenerated, appUserId, fbAuthUid, firmId, firstName, lastName, firm, telephone, streetAddress, city, state, zipCode, barNumber, practiceArea, email, subscriptionId, customerId, }; try { const usersRef = collection(db, "users"); await setDoc(doc(usersRef, fbAuthUid), userData); } catch (error) { console.log(`Error saving new user to db: ${error}`); } } const handleProceedToPayment = (e) => { e.preventDefault(); setShowPaymentModal(true); }; const handleAdd = () => { //add accounts, close section setShowAddAccount(!showAddAccount); setShowPaymentModal(true); }; const handleOpenSelectPlan = (e) => { e.preventDefault(); if (isBusy) { return; } const dataValues = validateUserData(); if (dataValues === null) { return; } /* const userDataValues = { barNumber: "232323", city: "broolyn", email: "j@s.com", firm: "asdf", firstName: "ghghg", lastName: "hhhhh", password: "123344556", practiceArea: "dfdfdf", state: "New York", streetAddress: "123 Main", telephone: "(313) 555-5555", zipCode: "12345", }; */ saveLeadData(dataValues); setShowSelectPlan(!showSelectPlan); }; const handleToggle = () => { setIsAnnual(!isAnnual); }; const handleAddAccounts = () => { setShowAddAccount(!showAddAccount); }; const handleCancelAdd = () => { setShowAddAccount(!showAddAccount); }; // ******************** STRIPE PAY API CALL ******************** // async function handleStripeAuthorization( user, paymentDataValues, customerDataValues ) { const additionalAccounts = numberOfAccountsToAdd ? numberOfAccountsToAdd : 0; let error = false; let subscriptionId = null; let customerId = null; console.log("~~~~~~~~~~~~~~~~~~~~~~~~handleStripeAuthorization fired"); const token = await stripe.tokens.create({ card: { number: paymentDataValues.cardNumber, exp_month: paymentDataValues.cardExpirationMonth, exp_year: paymentDataValues.cardExpirationYear, cvc: paymentDataValues.cardCvvCode, name: paymentDataValues.cardFirstName + " " + paymentDataValues.cardLastName, }, }); try { console.log("got to create-subscription try block"); let response = await fetch(`${apiUrl}/create-subscription`, { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ type: selectedPlan, additionalAccounts: additionalAccounts, isAnnual: isAnnual, customerData: { email: customerDataValues.email, name: `${customerDataValues.firstName} ${customerDataValues.lastName}`, }, token, }), }); response = await response.json(); subscriptionId = response.subscriptionId; customerId = response.customerId; return { subscriptionId, customerId, }; } catch (error) { console.log(error); error = true; } if (error) { return false; } return { subscriptionId, customerId, }; } // ******************** END STRIPE PAY API CALL ******************** // const handleSignup = async (totalDue) => { console.log(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>handleSignup fired"); console.log("totalDue", totalDue); const paymentDataValues = validatePaymentData(); if (paymentDataValues === null) { return; } let dataValues = validateUserData(); if (dataValues === null) { return; } console.log("dataValues in handleSignup", dataValues); const planType = determinePlan(isAnnual, activeRadioOption); setIsBusy(true); if (paymentDataValues && dataValues) { console.log( "tryblock ~~~ tryblock ~~~ tryblock ~~~ tryblock ~~~ tryblock ~~~ " ); try { const userCredential = await createUserWithEmailAndPassword( auth, dataValues.email, dataValues.password ); const user = userCredential.user; const paymentResponse = await handleStripeAuthorization( user, paymentDataValues, dataValues ); if (paymentResponse === false) { setIsBusy(false); setNotice("Sorry, something went wrong. Please try again."); return; } else { dataValues = { ...dataValues, ...paymentResponse }; await saveUserData(user.uid, dataValues); navigate("/"); } } catch (error) { setIsBusy(false); setNotice( error.message || "Sorry, something went wrong. Please try again." ); } } }; const showNoticeOnPage = "" !== notice && !showPaymentModal; const addAccountCopy = selectedPlan[0]?.value === "seniorPartner" ? "Add up to eight" : "Add up to two"; const showAddAccountBtn = selectedPlan[0].value === "seniorPartner" || selectedPlan[0].value === "partner"; return (
Billed annually
Billed montly
User profiles will be setup later