mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
207 lines
6.9 KiB
TypeScript
207 lines
6.9 KiB
TypeScript
"use client"
|
|
|
|
import { useAccount } from "@/lib/providers/jazz-provider"
|
|
import { useState, useRef, useCallback } from "react"
|
|
import { useParams } from "next/navigation"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Button } from "@/components/ui/button"
|
|
import Link from "next/link"
|
|
import { Avatar, AvatarImage, AvatarFallback } from "@/components/ui/avatar"
|
|
|
|
interface ProfileStatsProps {
|
|
number: number
|
|
label: string
|
|
}
|
|
|
|
const ProfileStats: React.FC<ProfileStatsProps> = ({ number, label }) => {
|
|
return (
|
|
<div className="text-center font-semibold text-black/60 dark:text-white">
|
|
<p className="text-4xl">{number}</p>
|
|
<p className="text-[#878787]">{label}</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export const ProfileWrapper = () => {
|
|
const account = useAccount()
|
|
const params = useParams()
|
|
const username = params.username as string
|
|
const avatarInputRef = useRef<HTMLInputElement>(null)
|
|
|
|
const [isEditing, setIsEditing] = useState(false)
|
|
const [newName, setNewName] = useState(account.me?.profile?.name || "")
|
|
const [error, setError] = useState("")
|
|
|
|
const editProfileClicked = () => {
|
|
setIsEditing(true)
|
|
setError("")
|
|
}
|
|
|
|
const changeName = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setNewName(e.target.value)
|
|
setError("")
|
|
}
|
|
|
|
const validateName = useCallback((name: string) => {
|
|
if (name.trim().length < 2) {
|
|
return "Name must be at least 2 characters long"
|
|
}
|
|
if (name.trim().length > 40) {
|
|
return "Name must not exceed 40 characters"
|
|
}
|
|
return ""
|
|
}, [])
|
|
|
|
const saveProfile = () => {
|
|
const validationError = validateName(newName)
|
|
if (validationError) {
|
|
setError(validationError)
|
|
return
|
|
}
|
|
|
|
if (account.me && account.me.profile) {
|
|
account.me.profile.name = newName.trim()
|
|
console.log("Updating name to:", newName.trim())
|
|
}
|
|
setIsEditing(false)
|
|
}
|
|
|
|
const cancelEditing = () => {
|
|
setNewName(account.me?.profile?.name || "")
|
|
setIsEditing(false)
|
|
setError("")
|
|
}
|
|
|
|
const editAvatar = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
const file = event.target.files?.[0]
|
|
if (file) {
|
|
console.log("File selected:", file)
|
|
}
|
|
}
|
|
|
|
if (!account.me || !account.me.profile) {
|
|
return (
|
|
<div className="flex h-screen flex-col py-3 text-black dark:text-white">
|
|
<div className="flex flex-1 flex-col rounded-3xl border border-neutral-800">
|
|
<p className="my-10 h-[74px] border-b border-neutral-900 text-center text-2xl font-semibold">
|
|
Oops! This account doesn't exist.
|
|
</p>
|
|
<p className="mb-5 text-center text-lg font-semibold">Try searching for another.</p>
|
|
<p className="mb-5 text-center text-lg font-semibold">
|
|
The link you followed may be broken, or the page may have been removed. Go back to
|
|
<Link href="/">
|
|
<span className=""> homepage</span>
|
|
</Link>
|
|
.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="flex flex-1 flex-col text-black dark:text-white">
|
|
<div className="flex items-center justify-between p-[20px]">
|
|
<p className="text-2xl font-semibold opacity-70">Profile</p>
|
|
</div>
|
|
<p className="text-2xl font-semibold">{username}</p>
|
|
<div className="flex flex-col items-center border-b border-neutral-900 bg-inherit pb-5">
|
|
<div className="flex w-full max-w-2xl align-top">
|
|
<Avatar className="mr-3 h-[130px] w-[130px] hover:opacity-80">
|
|
<AvatarImage src={account.me?.profile?.avatarUrl} alt={account.me?.profile?.name} />
|
|
<AvatarFallback onClick={() => avatarInputRef.current?.click()} className="cursor-pointer">
|
|
{account.me?.profile?.name?.charAt(0)}
|
|
</AvatarFallback>
|
|
</Avatar>
|
|
<input type="file" ref={avatarInputRef} onChange={editAvatar} accept="image/*" style={{ display: "none" }} />
|
|
|
|
<div className="ml-6 flex-1">
|
|
{isEditing ? (
|
|
<>
|
|
<Input
|
|
value={newName}
|
|
onChange={changeName}
|
|
className="border-result mb-3 mr-3 text-[25px] font-semibold"
|
|
/>
|
|
{error && <p className="text-red-500 text-opacity-70">{error}</p>}
|
|
</>
|
|
) : (
|
|
<p className="mb-3 text-[25px] font-semibold">{account.me?.profile?.name}</p>
|
|
)}
|
|
</div>
|
|
{isEditing ? (
|
|
<div>
|
|
<Button onClick={saveProfile} className="mr-2">
|
|
Save
|
|
</Button>
|
|
<Button onClick={cancelEditing} variant="outline">
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
) : (
|
|
<Button
|
|
onClick={editProfileClicked}
|
|
className="shadow-outer ml-auto flex h-[34px] cursor-pointer flex-row items-center justify-center space-x-2 rounded-lg bg-white px-3 text-center font-medium text-black shadow-[1px_1px_1px_1px_rgba(0,0,0,0.3)] hover:bg-black/10 dark:bg-[#222222] dark:text-white dark:hover:opacity-60"
|
|
>
|
|
Edit profile
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="mt-10 flex justify-center">
|
|
<div className="flex flex-row gap-20">
|
|
<ProfileStats number={account.me.root?.topicsLearning?.length || 0} label="Learning" />
|
|
<ProfileStats number={account.me.root?.topicsWantToLearn?.length || 0} label="To Learn" />
|
|
<ProfileStats number={account.me.root?.topicsLearned?.length || 0} label="Learned" />
|
|
</div>
|
|
</div>
|
|
<div className="mx-auto py-20">
|
|
<p>Public profiles are coming soon</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
{
|
|
// interface ProfileLinksProps {
|
|
// linklabel?: string
|
|
// link?: string
|
|
// topic?: string
|
|
// }
|
|
// interface ProfilePagesProps {
|
|
// topic?: string
|
|
// }
|
|
// const ProfileLinks: React.FC<ProfileLinksProps> = ({ linklabel, link, topic }) => {
|
|
// return (
|
|
// <div className="flex flex-row items-center justify-between bg-[#121212] p-3 text-black dark:text-white">
|
|
// <div className="flex flex-row items-center space-x-3">
|
|
// <p className="text-base text-opacity-90">{linklabel || "Untitled"}</p>
|
|
// <div className="flex cursor-pointer flex-row items-center gap-1">
|
|
// <LaIcon name="Link" />
|
|
// <p className="text-sm text-opacity-10">{link || "#"}</p>
|
|
// </div>
|
|
// </div>
|
|
// <div className="text0opacity-50 bg-[#1a1a1a] p-2">{topic || "Uncategorized"}</div>
|
|
// </div>
|
|
// )
|
|
// }
|
|
// const ProfilePages: React.FC<ProfilePagesProps> = ({ topic }) => {
|
|
// return (
|
|
// <div className="flex flex-row items-center justify-between rounded-lg bg-[#121212] p-3 text-black dark:text-white">
|
|
// <div className="rounded-lg bg-[#1a1a1a] p-2 text-opacity-50">{topic || "Uncategorized"}</div>
|
|
// </div>
|
|
// )
|
|
// }
|
|
/* <a href={account.me.root?.website || "#"} className="mb-1 flex flex-row items-center text-sm font-light">
|
|
<Icon name="Link" />
|
|
<p className="pl-1">{account.me.root?.website}</p>
|
|
</a> */
|
|
/* <Button
|
|
onClick={clickEdit}
|
|
className="shadow-outer ml-auto flex h-[34px] cursor-pointer flex-row space-x-2 rounded-lg bg-white px-3 text-black shadow-[1px_1px_1px_1px_rgba(0,0,0,0.3)] hover:bg-black/10 dark:bg-[#222222] dark:text-white dark:hover:opacity-60"
|
|
>
|
|
<LaIcon name="UserCog" className="text-foreground cursor-pointer" />
|
|
<span>Edit Profile</span>
|
|
</Button> */
|
|
}
|