diff --git a/next.config.ts b/next.config.ts index c57540f..e0c829f 100644 --- a/next.config.ts +++ b/next.config.ts @@ -5,10 +5,7 @@ const nextConfig: NextConfig = { remotePatterns: [ { protocol: "https", - hostname: "static-cdn.jtvnw.net", - port: "", - pathname: "/**", - search: "", + hostname: "**", }, ], }, diff --git a/src/app/settings/page.tsx b/src/app/settings/page.tsx index 72a84c0..f6c3afb 100644 --- a/src/app/settings/page.tsx +++ b/src/app/settings/page.tsx @@ -1,17 +1,24 @@ "use client"; +import Editor from "@/components/editor"; +import sanitizeHtml from "sanitize-html"; import { getCookie, hasCookie } from "@/helpers/cookie"; import { UserType } from "@/types/UserType"; import { Button, Form, Input } from "@nextui-org/react"; import { redirect, usePathname } from "next/navigation"; import { useEffect, useState } from "react"; import { toast } from "react-toastify"; +import { LoaderCircle } from "lucide-react"; export default function UserPage() { const [user, setUser] = useState(); const [profilePicture, setProfilePicture] = useState(""); + const [name, setName] = useState(""); + const [bannerPicture, setBannerPicture] = useState(""); + const [bio, setBio] = useState(""); const [errors] = useState({}); const pathname = usePathname(); + const [waitingSave, setWaitingSave] = useState(false); useEffect(() => { loadUser(); @@ -37,6 +44,9 @@ export default function UserPage() { setUser(data); setProfilePicture(data.profilePicture ?? ""); + setBannerPicture(data.bannerPicture ?? ""); + setBio(data.bio ?? ""); + setName(data.name ?? ""); } else { setUser(undefined); } @@ -49,14 +59,26 @@ export default function UserPage() { "Loading settings..." ) : (
{ setProfilePicture(user.profilePicture ?? ""); + setBannerPicture(user.bannerPicture ?? ""); + setBio(user.bio ?? ""); + setName(user.name ?? ""); }} onSubmit={async (e) => { e.preventDefault(); + const sanitizedBio = sanitizeHtml(bio); + + if (!name) { + toast.error("You need to enter a name"); + return; + } + + setWaitingSave(true); + const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" ? "https://d2jam.com/api/v1/user" @@ -64,7 +86,10 @@ export default function UserPage() { { body: JSON.stringify({ slug: user.slug, + name: name, + bio: sanitizedBio, profilePicture: profilePicture, + bannerPicture: bannerPicture, }), method: "PUT", headers: { @@ -77,11 +102,28 @@ export default function UserPage() { if (response.ok) { toast.success("Changed settings"); setUser(await response.json()); + setWaitingSave(false); } else { toast.error("Failed to update settings"); + setWaitingSave(false); } }} > +

Settings

+ + + +

Bio

+ + + +