mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Add image previews
This commit is contained in:
parent
6a1f3abaa5
commit
a5c8ba0e34
1 changed files with 18 additions and 2 deletions
|
@ -4,11 +4,12 @@ import Editor from "@/components/editor";
|
||||||
import sanitizeHtml from "sanitize-html";
|
import sanitizeHtml from "sanitize-html";
|
||||||
import { getCookie, hasCookie } from "@/helpers/cookie";
|
import { getCookie, hasCookie } from "@/helpers/cookie";
|
||||||
import { UserType } from "@/types/UserType";
|
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 { redirect, usePathname } from "next/navigation";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { toast } from "react-toastify";
|
import { toast } from "react-toastify";
|
||||||
import { LoaderCircle } from "lucide-react";
|
import { LoaderCircle } from "lucide-react";
|
||||||
|
import Image from "next/image";
|
||||||
|
|
||||||
export default function UserPage() {
|
export default function UserPage() {
|
||||||
const [user, setUser] = useState<UserType>();
|
const [user, setUser] = useState<UserType>();
|
||||||
|
@ -54,7 +55,7 @@ export default function UserPage() {
|
||||||
}, [pathname]);
|
}, [pathname]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="absolute flex items-center justify-center top-0 left-0 w-screen h-screen">
|
<div className="flex items-center justify-center">
|
||||||
{!user ? (
|
{!user ? (
|
||||||
"Loading settings..."
|
"Loading settings..."
|
||||||
) : (
|
) : (
|
||||||
|
@ -134,6 +135,8 @@ export default function UserPage() {
|
||||||
onValueChange={setProfilePicture}
|
onValueChange={setProfilePicture}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{profilePicture && <Avatar src={profilePicture} />}
|
||||||
|
|
||||||
<Input
|
<Input
|
||||||
label="Banner Picture"
|
label="Banner Picture"
|
||||||
labelPlacement="outside"
|
labelPlacement="outside"
|
||||||
|
@ -144,6 +147,19 @@ export default function UserPage() {
|
||||||
onValueChange={setBannerPicture}
|
onValueChange={setBannerPicture}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{bannerPicture &&
|
||||||
|
bannerPicture.startsWith("https://") &&
|
||||||
|
bannerPicture.length > 8 && (
|
||||||
|
<div className="bg-[#222222] h-28 w-full relative">
|
||||||
|
<Image
|
||||||
|
src={bannerPicture}
|
||||||
|
alt={`${user.name}'s profile banner`}
|
||||||
|
className="object-cover"
|
||||||
|
fill
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
<Button color="primary" type="submit">
|
<Button color="primary" type="submit">
|
||||||
{waitingSave ? (
|
{waitingSave ? (
|
||||||
|
|
Loading…
Reference in a new issue