1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 07:30:19 +01:00
upscayl/renderer/components/upscayl-cloud-modal.tsx
NayamAmarshe 95843ded88
Refactor Renderer Code (#987)
* Initial refactor

* Remove unused imports

* Update code

* Refactor and Update Code

- Change file names to kebab-caase
- Add new useTranslation Hook
- Change useLog hook name to useLogger
- Update translation hook to provide autocomplete

* Update import and component name

* Rename files and components

* Update locales

* Update electron commands

* Update var

* Change Lowercase

* Replace filter with map

* Add props

* Update flag check

* Add validate paths

* Update formats

* Update import

* Update function

* Update function and translation

* Update handlePaste
2024-10-04 14:45:54 +05:30

132 lines
4.0 KiB
TypeScript

import { useState } from "react";
import { waitlistCollection } from "../firebase";
import { doc, setDoc } from "firebase/firestore";
import { useAtomValue } from "jotai";
import { translationAtom } from "@/atoms/translations-atom";
const nameRegex = /^[A-Za-z\s.'-]+$/;
const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
export const UpscaylCloudModal = ({ show, setShow, setDontShowCloudModal }) => {
const [name, setName] = useState("");
const [email, setEmail] = useState("");
const t = useAtomValue(translationAtom);
return (
<dialog className={`modal ${show && "modal-open"}`}>
<div className="modal-box flex flex-col items-center gap-4 text-center">
<button
className="btn btn-circle absolute right-4 top-2"
onClick={() => setShow(false)}
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<rect
x="0"
y="0"
width="24"
height="24"
fill="none"
stroke="none"
/>
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-width="1.5"
d="m8.464 15.535l7.072-7.07m-7.072 0l7.072 7.07"
/>
</svg>
</button>
<p className="badge badge-neutral text-xs">
{t("UPSCAYL_CLOUD.COMING_SOON")}
</p>
<p className="text-2xl font-semibold">{t("INTRO")}</p>
<p className="w-9/12 text-lg font-medium">
{t("UPSCAYL_CLOUD.CATCHY_PHRASE_1")}
</p>
<div className="flex flex-col gap-2 text-start">
<pre style={{ fontFamily: "inherit" }} className="leading-8">
{t("UPSCAYL_CLOUD.CATCHY_PHRASE_2")}
</pre>
</div>
<form
className="flex flex-col items-center gap-3"
onSubmit={async (e) => {
e.preventDefault();
if (
name &&
email &&
nameRegex.test(name) &&
emailRegex.test(email)
) {
try {
await setDoc(doc(waitlistCollection, email), {
name,
email,
});
} catch (error) {
alert(t("UPSCAYL_CLOUD.ALREADY_REGISTERED_ALERT", { name }));
return;
}
setName("");
setEmail("");
setDontShowCloudModal(true);
setShow(false);
alert(t("UPSCAYL_CLOUD.ADD_SUCCESS"));
} else {
alert(t("UPSCAYL_CLOUD.INCORRECT_FIELDS_ALERT"));
}
}}
>
<div className="grid grid-cols-2 gap-2">
<input
type="text"
className="input input-bordered"
placeholder="Name"
value={name}
onChange={(e) => setName(e.target.value)}
/>
<input
type="email"
className="input input-bordered"
placeholder="Email"
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
</div>
<button
type="submit"
className="rounded-2xl bg-success px-4 py-2 text-success-content"
>
{t("UPSCAYL_CLOUD.JOIN_WAITLIST")}
</button>
<button
className="text-xs text-base-content/50"
onClick={() => {
setDontShowCloudModal(true);
setShow(false);
}}
type="button"
>
{t("UPSCAYL_CLOUD.DONT_SHOW_AGAIN")}
</button>
</form>
</div>
<form method="dialog" className="modal-backdrop">
<button onClick={() => setShow(false)}>
{t("APP.DIALOG_BOX.CLOSE")}
</button>
</form>
</dialog>
);
};