207 lines
7.3 KiB
TypeScript
207 lines
7.3 KiB
TypeScript
"use client";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuGroup,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuPortal,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuSub,
|
|
DropdownMenuSubContent,
|
|
DropdownMenuSubTrigger,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { Icon } from "@/components/ui/icon";
|
|
import { signOut, auth } from "@/lib/auth";
|
|
import Image from "next/image";
|
|
import { Link } from "@/i18n/routing";
|
|
import { Button } from "@/components/ui/button";
|
|
import Cookies from "js-cookie";
|
|
import { useEffect } from "react";
|
|
|
|
const ProfileInfo = () => {
|
|
const username = Cookies.get("state");
|
|
const picture = Cookies.get("profile_picture");
|
|
useEffect(() => {
|
|
console.log("us", username);
|
|
}, [username]);
|
|
|
|
return (
|
|
<div className="md:block hidden">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild className=" cursor-pointer">
|
|
<div className=" flex items-center gap-3 text-default-800 ">
|
|
<Image
|
|
src={"/images/avatar/icon-avatar-1.png"}
|
|
alt={username as string}
|
|
width={36}
|
|
height={36}
|
|
className="rounded-full"
|
|
/>
|
|
|
|
<div className="text-sm font-medium capitalize lg:block hidden ">
|
|
{username}
|
|
</div>
|
|
<span className="text-base me-2.5 lg:inline-block hidden">
|
|
<Icon icon="heroicons-outline:chevron-down"></Icon>
|
|
</span>
|
|
</div>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="w-56 p-0" align="end">
|
|
<DropdownMenuLabel className="flex gap-2 items-center mb-1 p-3">
|
|
<Image
|
|
src={"/images/avatar/icon-avatar-1.png"}
|
|
alt={username as string}
|
|
width={36}
|
|
height={36}
|
|
className="rounded-full"
|
|
/>
|
|
|
|
<div>
|
|
<div className="text-sm font-medium text-default-800 capitalize ">
|
|
{username}
|
|
</div>
|
|
<Link
|
|
href="/dashboard"
|
|
className="text-xs text-default-600 hover:text-primary"
|
|
>
|
|
{username}
|
|
</Link>
|
|
</div>
|
|
</DropdownMenuLabel>
|
|
<DropdownMenuGroup>
|
|
{[
|
|
{
|
|
name: "profile",
|
|
icon: "heroicons:user",
|
|
href: "/user-profile",
|
|
},
|
|
{
|
|
name: "Billing",
|
|
icon: "heroicons:megaphone",
|
|
href: "/dashboard",
|
|
},
|
|
{
|
|
name: "Settings",
|
|
icon: "heroicons:paper-airplane",
|
|
href: "/dashboard",
|
|
},
|
|
{
|
|
name: "Keyboard shortcuts",
|
|
icon: "heroicons:language",
|
|
href: "/dashboard",
|
|
},
|
|
].map((item, index) => (
|
|
<Link
|
|
href={item.href}
|
|
key={`info-menu-${index}`}
|
|
className="cursor-pointer"
|
|
>
|
|
<DropdownMenuItem className="flex items-center gap-2 text-sm font-medium text-default-600 capitalize px-3 py-1.5 cursor-pointer">
|
|
<Icon icon={item.icon} className="w-4 h-4" />
|
|
{item.name}
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
))}
|
|
</DropdownMenuGroup>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuGroup>
|
|
<Link href="/dashboard" className="cursor-pointer">
|
|
<DropdownMenuItem className="flex items-center gap-2 text-sm font-medium text-default-600 capitalize px-3 py-1.5 cursor-pointer">
|
|
<Icon icon="heroicons:user-group" className="w-4 h-4" />
|
|
team
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
<DropdownMenuSub>
|
|
<DropdownMenuSubTrigger className="flex items-center gap-2 text-sm font-medium text-default-600 capitalize px-3 py-1.5 ">
|
|
<Icon icon="heroicons:user-plus" className="w-4 h-4" />
|
|
Invite user
|
|
</DropdownMenuSubTrigger>
|
|
<DropdownMenuPortal>
|
|
<DropdownMenuSubContent>
|
|
{[
|
|
{
|
|
name: "email",
|
|
},
|
|
{
|
|
name: "message",
|
|
},
|
|
{
|
|
name: "facebook",
|
|
},
|
|
].map((item, index) => (
|
|
<Link
|
|
href="/dashboard"
|
|
key={`message-sub-${index}`}
|
|
className="cursor-pointer"
|
|
>
|
|
<DropdownMenuItem className="text-sm font-medium text-default-600 capitalize px-3 py-1.5 cursor-pointer">
|
|
{item.name}
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
))}
|
|
</DropdownMenuSubContent>
|
|
</DropdownMenuPortal>
|
|
</DropdownMenuSub>
|
|
<Link href="/dashboard">
|
|
<DropdownMenuItem className="flex items-center gap-2 text-sm font-medium text-default-600 capitalize px-3 py-1.5 cursor-pointer">
|
|
<Icon icon="heroicons:variable" className="w-4 h-4" />
|
|
Github
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
|
|
<DropdownMenuSub>
|
|
<DropdownMenuSubTrigger className="flex items-center gap-2 text-sm font-medium text-default-600 capitalize px-3 py-1.5 cursor-pointer">
|
|
<Icon icon="heroicons:phone" className="w-4 h-4" />
|
|
Support
|
|
</DropdownMenuSubTrigger>
|
|
<DropdownMenuPortal>
|
|
<DropdownMenuSubContent>
|
|
{[
|
|
{
|
|
name: "portal",
|
|
},
|
|
{
|
|
name: "slack",
|
|
},
|
|
{
|
|
name: "whatsapp",
|
|
},
|
|
].map((item, index) => (
|
|
<Link href="/dashboard" key={`message-sub-${index}`}>
|
|
<DropdownMenuItem className="text-sm font-medium text-default-600 capitalize px-3 py-1.5 cursor-pointer">
|
|
{item.name}
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
))}
|
|
</DropdownMenuSubContent>
|
|
</DropdownMenuPortal>
|
|
</DropdownMenuSub>
|
|
</DropdownMenuGroup>
|
|
<DropdownMenuSeparator className="mb-0 dark:bg-background" />
|
|
<DropdownMenuItem className="flex items-center gap-2 text-sm font-medium text-default-600 capitalize my-1 px-3 cursor-pointer">
|
|
<div>
|
|
<form
|
|
// action={async () => {
|
|
// "use server";
|
|
// await signOut();
|
|
// }}
|
|
>
|
|
<button
|
|
type="submit"
|
|
className=" w-full flex items-center gap-2"
|
|
>
|
|
<Icon icon="heroicons:power" className="w-4 h-4" />
|
|
Log out
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
);
|
|
};
|
|
export default ProfileInfo;
|