1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 09:20:52 +01:00
upscayl/renderer/components/UpscaylCloudModal.tsx

130 lines
4.1 KiB
TypeScript
Raw Normal View History

2023-08-30 09:16:54 +02:00
import { useState } from "react";
2023-08-30 09:58:15 +02:00
import { waitlistCollection } from "../firebase";
import { doc, setDoc } from "firebase/firestore";
2023-08-30 09:16:54 +02:00
const nameRegex = /^[A-Za-z\s.'-]+$/;
const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
2023-09-03 11:16:48 +02:00
export const UpscaylCloudModal = ({ show, setShow, setDontShowCloudModal }) => {
2023-08-30 09:16:54 +02:00
const [name, setName] = useState("");
const [email, setEmail] = useState("");
2023-08-30 07:53:53 +02:00
return (
<dialog className={`modal ${show && "modal-open"}`}>
<div className="modal-box flex flex-col text-center items-center gap-4">
2023-09-03 11:16:48 +02:00
<button
className="absolute top-2 right-4 btn btn-circle"
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>
2023-08-30 08:01:04 +02:00
<p className="badge badge-neutral text-xs">Coming soon!</p>
2023-08-30 07:53:53 +02:00
<p className="text-2xl font-semibold">Introducing Upscayl Cloud!</p>
<p className="w-9/12 font-medium text-lg">
2023-08-30 09:16:54 +02:00
No more errors, hardware issues, quality compromises or long loading
times!
2023-08-30 07:53:53 +02:00
</p>
<div className="flex flex-col gap-2 text-start">
<p>🌐 Upscayl anywhere, anytime, any device</p>
<p> No Graphics Card or hardware required</p>
<p>👩 Face Enhancement</p>
<p>🦋 10+ models to choose from</p>
<p>🏎 5x faster than Upscayl Desktop</p>
<p>🎞 Video Upscaling</p>
<p>💰 Commercial Usage</p>
<p>😴 Upscayl while you sleep</p>
</div>
2023-08-30 09:58:15 +02:00
<form
className="flex flex-col items-center gap-3"
onSubmit={async (e) => {
e.preventDefault();
2023-08-30 09:16:54 +02:00
if (
name &&
email &&
nameRegex.test(name) &&
emailRegex.test(email)
) {
try {
2023-08-30 09:58:15 +02:00
await setDoc(doc(waitlistCollection, email), {
2023-08-30 09:16:54 +02:00
name,
email,
});
} catch (error) {
2023-09-03 11:16:48 +02:00
alert(
`Thank you ${name}! It seems that your email has already been registered :D If that's not the case, please try again.`
);
2023-08-30 09:16:54 +02:00
return;
}
2023-08-30 09:58:15 +02:00
setName("");
setEmail("");
2023-09-03 11:16:48 +02:00
setDontShowCloudModal(true);
setShow(false);
2023-08-30 09:16:54 +02:00
alert(
"Thank you for joining the waitlist! We will notify you when Upscayl Cloud is ready for you."
);
} else {
alert("Please fill in all the fields correctly.");
}
}}>
2023-08-30 16:11:12 +02:00
<div className="gap-2 grid grid-cols-2">
2023-08-30 09:58:15 +02:00
<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="bg-success text-success-content rounded-2xl px-4 py-2">
Join the waitlist
</button>
2023-09-03 11:16:48 +02:00
<button
className="text-xs text-base-content/50"
onClick={() => {
setDontShowCloudModal(true);
setShow(false);
}}
type="button">
DON'T SHOW AGAIN
</button>
2023-08-30 09:58:15 +02:00
</form>
2023-08-30 07:53:53 +02:00
</div>
2023-08-30 09:16:54 +02:00
2023-08-30 07:53:53 +02:00
<form method="dialog" className="modal-backdrop">
<button onClick={() => setShow(false)}>close</button>
</form>
</dialog>
);
};