37679e83e6
- Next.js 16 + Appwrite multi-tenant emlak CRM - Database: kovakemlak-db (properties, customers, customer_searches, property_matches, presentations, investors, activities, tenant_settings) - Same stack as isletmem-kovakcrm (shadcn/ui template base) - Modules: portföy, müşteri takibi, arama kriterleri, otomatik eşleştirme, sunum linki, yatırımcı portalı
121 lines
4.0 KiB
TypeScript
121 lines
4.0 KiB
TypeScript
"use client";
|
||
|
||
import { useTransition } from "react";
|
||
import {
|
||
BellDot,
|
||
CircleUser,
|
||
CreditCard,
|
||
EllipsisVertical,
|
||
LogOut,
|
||
} from "lucide-react";
|
||
import Link from "next/link";
|
||
|
||
import {
|
||
DropdownMenu,
|
||
DropdownMenuContent,
|
||
DropdownMenuGroup,
|
||
DropdownMenuItem,
|
||
DropdownMenuLabel,
|
||
DropdownMenuSeparator,
|
||
DropdownMenuTrigger,
|
||
} from "@/components/ui/dropdown-menu";
|
||
import {
|
||
SidebarMenu,
|
||
SidebarMenuButton,
|
||
SidebarMenuItem,
|
||
useSidebar,
|
||
} from "@/components/ui/sidebar";
|
||
import { signOutAction } from "@/lib/appwrite/auth-actions";
|
||
|
||
function initials(name: string) {
|
||
const parts = name.trim().split(/\s+/).slice(0, 2);
|
||
return parts.map((p) => p[0]?.toUpperCase() ?? "").join("") || "?";
|
||
}
|
||
|
||
export function NavUser({
|
||
user,
|
||
}: {
|
||
user: { name: string; email: string };
|
||
}) {
|
||
const { isMobile } = useSidebar();
|
||
const [isPending, startTransition] = useTransition();
|
||
|
||
const handleSignOut = () => {
|
||
startTransition(async () => {
|
||
await signOutAction();
|
||
});
|
||
};
|
||
|
||
return (
|
||
<SidebarMenu>
|
||
<SidebarMenuItem>
|
||
<DropdownMenu>
|
||
<DropdownMenuTrigger asChild>
|
||
<SidebarMenuButton
|
||
size="lg"
|
||
className="data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground cursor-pointer"
|
||
>
|
||
<div className="bg-primary/10 text-primary flex size-8 items-center justify-center rounded-lg text-sm font-medium">
|
||
{initials(user.name)}
|
||
</div>
|
||
<div className="grid flex-1 text-left text-sm leading-tight">
|
||
<span className="truncate font-medium">{user.name}</span>
|
||
<span className="text-muted-foreground truncate text-xs">{user.email}</span>
|
||
</div>
|
||
<EllipsisVertical className="ml-auto size-4" />
|
||
</SidebarMenuButton>
|
||
</DropdownMenuTrigger>
|
||
<DropdownMenuContent
|
||
className="w-(--radix-dropdown-menu-trigger-width) min-w-56 rounded-lg"
|
||
side={isMobile ? "bottom" : "right"}
|
||
align="end"
|
||
sideOffset={4}
|
||
>
|
||
<DropdownMenuLabel className="p-0 font-normal">
|
||
<div className="flex items-center gap-2 px-1 py-1.5 text-left text-sm">
|
||
<div className="bg-primary/10 text-primary flex size-8 items-center justify-center rounded-lg text-sm font-medium">
|
||
{initials(user.name)}
|
||
</div>
|
||
<div className="grid flex-1 text-left text-sm leading-tight">
|
||
<span className="truncate font-medium">{user.name}</span>
|
||
<span className="text-muted-foreground truncate text-xs">{user.email}</span>
|
||
</div>
|
||
</div>
|
||
</DropdownMenuLabel>
|
||
<DropdownMenuSeparator />
|
||
<DropdownMenuGroup>
|
||
<DropdownMenuItem asChild className="cursor-pointer">
|
||
<Link href="/settings/account">
|
||
<CircleUser />
|
||
Profil
|
||
</Link>
|
||
</DropdownMenuItem>
|
||
<DropdownMenuItem asChild className="cursor-pointer">
|
||
<Link href="/settings/billing">
|
||
<CreditCard />
|
||
Plan & Faturalama
|
||
</Link>
|
||
</DropdownMenuItem>
|
||
<DropdownMenuItem asChild className="cursor-pointer">
|
||
<Link href="/settings/notifications">
|
||
<BellDot />
|
||
Bildirimler
|
||
</Link>
|
||
</DropdownMenuItem>
|
||
</DropdownMenuGroup>
|
||
<DropdownMenuSeparator />
|
||
<DropdownMenuItem
|
||
onClick={handleSignOut}
|
||
disabled={isPending}
|
||
className="cursor-pointer"
|
||
>
|
||
<LogOut />
|
||
{isPending ? "Çıkış yapılıyor..." : "Çıkış yap"}
|
||
</DropdownMenuItem>
|
||
</DropdownMenuContent>
|
||
</DropdownMenu>
|
||
</SidebarMenuItem>
|
||
</SidebarMenu>
|
||
);
|
||
}
|