From a5c8ba0e34f245b86745d8fe3039a50eaf446c06 Mon Sep 17 00:00:00 2001 From: Ategon Date: Fri, 7 Feb 2025 22:52:13 -0500 Subject: [PATCH] Add image previews --- src/app/settings/page.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/app/settings/page.tsx b/src/app/settings/page.tsx index f6c3afb..bbdd806 100644 --- a/src/app/settings/page.tsx +++ b/src/app/settings/page.tsx @@ -4,11 +4,12 @@ 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 { Avatar, 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"; +import Image from "next/image"; export default function UserPage() { const [user, setUser] = useState(); @@ -54,7 +55,7 @@ export default function UserPage() { }, [pathname]); return ( -
+
{!user ? ( "Loading settings..." ) : ( @@ -134,6 +135,8 @@ export default function UserPage() { onValueChange={setProfilePicture} /> + {profilePicture && } + + {bannerPicture && + bannerPicture.startsWith("https://") && + bannerPicture.length > 8 && ( +
+ {`${user.name}'s +
+ )} +