213 lines
7.0 KiB
TypeScript
213 lines
7.0 KiB
TypeScript
"use client"
|
|
|
|
import type React from "react"
|
|
|
|
import { useState, useEffect } from "react"
|
|
import { useRouter, usePathname } from "next/navigation"
|
|
import Link from "next/link"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Badge } from "@/components/ui/badge"
|
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog"
|
|
import { Search, Bell, Calendar, Clock, User, LogOut, Menu, X, Home, FileText, ChevronLeft, ChevronRight } from "lucide-react"
|
|
|
|
interface SecretaryData {
|
|
id: string,
|
|
name: string,
|
|
email: string,
|
|
phone: string,
|
|
cpf: string,
|
|
employeeId: string,
|
|
department: string,
|
|
permissions: object,
|
|
}
|
|
|
|
interface PatientLayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default function SecretaryLayout({ children }: PatientLayoutProps) {
|
|
const [secretaryData, setSecretaryData] = useState<SecretaryData | null>(null)
|
|
const [sidebarCollapsed, setSidebarCollapsed] = useState(false)
|
|
const [showLogoutDialog, setShowLogoutDialog] = useState(false)
|
|
const router = useRouter()
|
|
const pathname = usePathname()
|
|
|
|
useEffect(() => {
|
|
const data = localStorage.getItem("secretaryData")
|
|
if (data) {
|
|
setSecretaryData(JSON.parse(data))
|
|
} else {
|
|
router.push("/patient/login")
|
|
}
|
|
}, [router])
|
|
|
|
const handleLogout = () => {
|
|
setShowLogoutDialog(true)
|
|
}
|
|
|
|
const confirmLogout = () => {
|
|
localStorage.removeItem("secretaryData")
|
|
setShowLogoutDialog(false)
|
|
router.push("/")
|
|
}
|
|
|
|
const cancelLogout = () => {
|
|
setShowLogoutDialog(false)
|
|
}
|
|
|
|
const menuItems = [
|
|
{
|
|
href: "#",
|
|
icon: Home,
|
|
label: "Dashboard",
|
|
// Botão para o dashboard da secretária
|
|
},
|
|
{
|
|
href: "#",
|
|
icon: Calendar,
|
|
label: "Consultas",
|
|
// Botão para página de consultas marcadas
|
|
},
|
|
{
|
|
href: "#",
|
|
icon: Clock,
|
|
label: "Agendar Consulta",
|
|
// Botão para página de agendamento da consulta para o paciente
|
|
},
|
|
{
|
|
href: "/secretary/pacientes",
|
|
icon: User,
|
|
label: "Pacientes",
|
|
// Botão para a página de visualização de todos os pacientes
|
|
},
|
|
]
|
|
|
|
if (!secretaryData) {
|
|
return <div>Carregando...</div>
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 flex">
|
|
{/* Sidebar */}
|
|
<div
|
|
className={`bg-white border-r border-gray-200 transition-all duration-300 ${sidebarCollapsed ? "w-16" : "w-64"} h-screen flex flex-col`}
|
|
>
|
|
<div className="p-4 border-b border-gray-200">
|
|
<div className="flex items-center justify-between">
|
|
{!sidebarCollapsed && (
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center">
|
|
<div className="w-4 h-4 bg-white rounded-sm"></div>
|
|
</div>
|
|
<span className="font-semibold text-gray-900">Hospital System</span>
|
|
</div>
|
|
)}
|
|
<Button variant="ghost" size="sm" onClick={() => setSidebarCollapsed(!sidebarCollapsed)} className="p-1">
|
|
{sidebarCollapsed ? <ChevronRight className="w-4 h-4" /> : <ChevronLeft className="w-4 h-4" />}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<nav className="flex-1 p-2">
|
|
{menuItems.map((item) => {
|
|
const Icon = item.icon
|
|
const isActive = pathname === item.href || (item.href !== "/" && pathname.startsWith(item.href))
|
|
|
|
return (
|
|
<Link key={item.href} href={item.href}>
|
|
<div
|
|
className={`flex items-center gap-3 px-3 py-2 rounded-lg mb-1 transition-colors ${
|
|
isActive ? "bg-blue-50 text-blue-600 border-r-2 border-blue-600" : "text-gray-600 hover:bg-gray-50"
|
|
}`}
|
|
>
|
|
<Icon className="w-5 h-5 flex-shrink-0" />
|
|
{!sidebarCollapsed && <span className="font-medium">{item.label}</span>}
|
|
</div>
|
|
</Link>
|
|
)
|
|
})}
|
|
</nav>
|
|
|
|
<div className="border-t p-4">
|
|
<div className="flex items-center space-x-3 mb-4">
|
|
<Avatar>
|
|
<AvatarImage src="/placeholder.svg?height=40&width=40" />
|
|
<AvatarFallback>
|
|
{secretaryData.name
|
|
.split(" ")
|
|
.map((n) => n[0])
|
|
.join("")}
|
|
</AvatarFallback>
|
|
</Avatar>
|
|
<div className="flex-1 min-w-0">
|
|
<p className="text-sm font-medium text-gray-900 truncate">{secretaryData.name}</p>
|
|
<p className="text-xs text-gray-500 truncate">{secretaryData.email}</p>
|
|
</div>
|
|
</div>
|
|
<Button variant="outline" size="sm" className="w-full bg-transparent" onClick={handleLogout}>
|
|
<LogOut className="mr-2 h-4 w-4" />
|
|
Sair
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Main Content */}
|
|
<div className="flex-1 flex flex-col">
|
|
{/* Header */}
|
|
<header className="bg-white border-b border-gray-200 px-6 py-4">
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-4 flex-1 max-w-md">
|
|
<div className="relative flex-1">
|
|
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400 w-4 h-4" />
|
|
<Input placeholder="Buscar paciente" className="pl-10 bg-gray-50 border-gray-200" />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-4">
|
|
<Button variant="ghost" size="sm" className="relative">
|
|
<Bell className="w-5 h-5" />
|
|
<Badge className="absolute -top-1 -right-1 w-5 h-5 p-0 flex items-center justify-center bg-red-500 text-white text-xs">
|
|
1
|
|
</Badge>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
{/* Page Content */}
|
|
<main className="flex-1 p-6">{children}</main>
|
|
</div>
|
|
|
|
{/* Logout confirmation dialog */}
|
|
<Dialog open={showLogoutDialog} onOpenChange={setShowLogoutDialog}>
|
|
<DialogContent className="sm:max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle>Confirmar Saída</DialogTitle>
|
|
<DialogDescription>
|
|
Deseja realmente sair do sistema? Você precisará fazer login novamente para acessar sua conta.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<DialogFooter className="flex gap-2">
|
|
<Button variant="outline" onClick={cancelLogout}>
|
|
Cancelar
|
|
</Button>
|
|
<Button variant="destructive" onClick={confirmLogout}>
|
|
<LogOut className="mr-2 h-4 w-4" />
|
|
Sair
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
)
|
|
}
|