From b7ecf5cdb4322505251e08c3c79e09bb31c36a04 Mon Sep 17 00:00:00 2001 From: Carlos Zoido Date: Thu, 5 Sep 2024 17:52:01 +0200 Subject: [PATCH] Update form (#179) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * update register * wip * post json * clean * Update conanio/pages/private/register.tsx --------- Co-authored-by: Francisco Ramírez --- conanio/pages/api/conan-user/signup.ts | 26 ++-- conanio/pages/private/register.tsx | 202 +++++++++++++++++++------ conanio/styles/stylev2.css | 3 + 3 files changed, 176 insertions(+), 55 deletions(-) diff --git a/conanio/pages/api/conan-user/signup.ts b/conanio/pages/api/conan-user/signup.ts index 8c59b04..9cde4bf 100644 --- a/conanio/pages/api/conan-user/signup.ts +++ b/conanio/pages/api/conan-user/signup.ts @@ -1,22 +1,30 @@ import { NextApiRequest, NextApiResponse } from "next"; interface SignupRequest extends NextApiRequest { - query: { - full_name?: string; - email?: string; - }; + body: { + full_name?: string; + email?: string; + region?: string; + gdpr_consent?: boolean; + }; } export default async (req: SignupRequest, res: NextApiResponse) => { - let full_name = req.query.full_name || ""; - let email = req.query.email || ""; + const { full_name = "", email = "", region = "", gdpr_consent = false } = req.body; const response = await fetch( - `${encodeURI(process.env.conanioAuthServer)}/conan-user/signup?full_name=${encodeURIComponent( - full_name, - )}&email=${encodeURIComponent(email)}`, + `${encodeURI(process.env.conanioAuthServer)}/conan-user/signup`, { method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + full_name, + email, + region, + gdpr_consent, + }), }, ); if (!response.ok) { diff --git a/conanio/pages/private/register.tsx b/conanio/pages/private/register.tsx index aa62764..c74b100 100644 --- a/conanio/pages/private/register.tsx +++ b/conanio/pages/private/register.tsx @@ -1,4 +1,4 @@ -import React, { FormEvent, ChangeEvent, useState } from "react"; +import React, { FormEvent, ChangeEvent, useState, useEffect } from "react"; import Container from "react-bootstrap/Container"; import Row from "react-bootstrap/Row"; import Col from "react-bootstrap/Col"; @@ -16,34 +16,76 @@ const ConanRegistration = () => { const [email, setEmail] = useState(""); const [info, setInfo] = useState(null); const [termsAgree, setTermsAgree] = useState(false); + const [gdprConsent, setGdprConsent] = useState(false); + const [region, setRegion] = useState("US"); const [show, setShow] = useState(false); + const [alertMessage, setAlertMessage] = useState(""); - const handleSubmit = (event: FormEvent) => { + // Function to detect user's region based on browser language + useEffect(() => { + const euCountries = [ + "AT", "BE", "BG", "CY", "CZ", "DE", "DK", "EE", "ES", "FI", "FR", + "GR", "HR", "HU", "IE", "IT", "LT", "LU", "LV", "MT", "NL", "PL", + "PT", "RO", "SE", "SI", "SK", "IS", "LI", "NO", "CH", "GB" + ]; + + const userCountryCode = navigator.language.slice(-2).toUpperCase(); + + if (euCountries.includes(userCountryCode)) { + setRegion("EU"); + } else { + setRegion("US"); + } + }, []); + + const handleSubmit = async (event: FormEvent) => { event.preventDefault(); - // Post user information to send the token - const fetchData = async () => { - let urls = getUrls(); - const response = await fetch( - `${encodeURI(urls.api.public)}/${encodeURI(urls.signup)}?full_name=${encodeURIComponent( - fullName, - )}&email=${encodeURIComponent(email)}`, - { - method: "POST", - }, - ); - const data = await response.json(); - console.log(data) - console.log(response) - setInfo({ - status: response.status, - message: data.message, - }); + + // Validate that terms are accepted + if (!termsAgree) { + setAlertMessage("You must accept the Terms of Service and Privacy Notice before registering."); + setShow(true); + return; + } + + const payload = { + full_name: fullName, + email: email, + region: region, + gdpr_consent: gdprConsent, }; - setTermsAgree(false); - fetchData(); - setFullName(""); - setEmail(""); - setShow(true); + + try { + const urls = getUrls(); + const response = await fetch(`${encodeURI(urls.api.public)}/${encodeURI(urls.signup)}`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(payload), + }); + + if (!response.ok) { + throw new Error(`Request failed with status ${response.status}`); + } + + const data = await response.json(); + setInfo({ + status: response.status, + message: data.message, + }); + + // Clear form fields only after successful request + setFullName(""); + setEmail(""); + setTermsAgree(false); + setGdprConsent(false); + setShow(true); + } catch (error) { + console.error("Error during registration:", error); + setAlertMessage("An error occurred during registration. Please try again."); + setShow(true); + } }; return ( @@ -52,12 +94,27 @@ const ConanRegistration = () => {
-

- Registration -

-
-
- + {show && alertMessage && ( + + + + + {alertMessage} + + + setShow(false)} + /> + + + + + )} {info && (info.status == "200" || info.status == "422" || info.status == "403") && ( { lg={{ span: 8, offset: 2 }} > - + {info.message} @@ -102,13 +159,21 @@ const ConanRegistration = () => { )} -
- -
+ +
+

Registration

+
+

+ By registering, you will receive a token via email that will grant you access to the preview of the service. For information on how to use the service and set-up your token, please{" "} + + refer to this blogpost + . +

+ -

Full name

+

Full name:

{ -

Email

+

Email:

{
+ + + +

Region:

+
+ + setRegion(e.target.value)} + > + + + + + +
+
+ {(region === "EU" || region === "Other") && ( + + + + ) => { + setGdprConsent(e.currentTarget.checked); + }} + /> + + Yes, I would like to receive marketing communications regarding JFrog products, services, and events. I can unsubscribe at any time. + + + + + )} @@ -155,16 +256,27 @@ const ConanRegistration = () => { }} /> - Agree to{" "} + By completing registration, you agree to the{" "} - terms + JFrog Terms and Conditions {" "} - and conditions. + For information about the storing and processing of your personal data by JFrog, see our{" "} + + Privacy Notice + + . @@ -174,12 +286,10 @@ const ConanRegistration = () => { Submit -
- - -
-
- + +
+ +
diff --git a/conanio/styles/stylev2.css b/conanio/styles/stylev2.css index be1aef2..bc99d03 100644 --- a/conanio/styles/stylev2.css +++ b/conanio/styles/stylev2.css @@ -352,6 +352,9 @@ border-radius: 10px; border-radius: 10px; background-color: white; box-shadow: 0px 9px 29px rgba(0, 0, 0, 0.07), 0px 1.12694px 3.63125px rgba(0, 0, 0, 0.035); + margin-bottom: 30px; + font-size: 14px; + text-align: left; } .backgroundWhite{