551 lines
27 KiB
TypeScript
551 lines
27 KiB
TypeScript
"use client";
|
|
|
|
import React, { useEffect, useState, useCallback, useMemo } from "react";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/navigation";
|
|
import { Button } from "@/components/ui/button";
|
|
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "@/components/ui/dropdown-menu";
|
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
|
import { Edit, Trash2, Eye, Calendar, Loader2 } from "lucide-react";
|
|
import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle } from "@/components/ui/alert-dialog";
|
|
|
|
// Imports dos Serviços
|
|
import { doctorsService } from "@/services/doctorsApi.mjs";
|
|
import Sidebar from "@/components/Sidebar";
|
|
|
|
// --- NOVOS IMPORTS (Certifique-se que criou os arquivos no passo anterior) ---
|
|
import { FilterBar } from "@/components/ui/filter-bar";
|
|
import { normalizeSpecialty, getUniqueSpecialties } from "@/lib/normalization";
|
|
|
|
interface Doctor {
|
|
id: number;
|
|
full_name: string;
|
|
specialty: string;
|
|
crm: string;
|
|
phone_mobile: string | null;
|
|
city: string | null;
|
|
state: string | null;
|
|
status?: string;
|
|
}
|
|
|
|
interface DoctorDetails {
|
|
nome: string;
|
|
crm: string;
|
|
especialidade: string;
|
|
contato: {
|
|
celular?: string;
|
|
telefone1?: string;
|
|
};
|
|
endereco: {
|
|
cidade?: string;
|
|
estado?: string;
|
|
};
|
|
convenio?: string;
|
|
vip?: boolean;
|
|
status?: string;
|
|
ultimo_atendimento?: string;
|
|
proximo_atendimento?: string;
|
|
error?: string;
|
|
}
|
|
|
|
export default function DoctorsPage() {
|
|
const router = useRouter();
|
|
|
|
// --- Estados de Dados ---
|
|
const [doctors, setDoctors] = useState<Doctor[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
// --- Estados de Modais ---
|
|
const [detailsDialogOpen, setDetailsDialogOpen] = useState(false);
|
|
const [doctorDetails, setDoctorDetails] = useState<DoctorDetails | null>(null);
|
|
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
|
const [doctorToDeleteId, setDoctorToDeleteId] = useState<number | null>(null);
|
|
|
|
// --- Estados de Filtro e Busca ---
|
|
const [searchTerm, setSearchTerm] = useState("");
|
|
const [filters, setFilters] = useState({
|
|
specialty: "all",
|
|
status: "all"
|
|
});
|
|
|
|
// --- Estados de Paginação ---
|
|
const [itemsPerPage, setItemsPerPage] = useState(10);
|
|
const [currentPage, setCurrentPage] = useState(1);
|
|
|
|
// 1. Buscar Médicos na API
|
|
const fetchDoctors = useCallback(async () => {
|
|
setLoading(true);
|
|
setError(null);
|
|
try {
|
|
const data: Doctor[] = await doctorsService.list();
|
|
// Mockando status para visualização (conforme original)
|
|
const dataWithStatus = data.map((doc, index) => ({
|
|
...doc,
|
|
status: index % 3 === 0 ? "Inativo" : index % 2 === 0 ? "Férias" : "Ativo",
|
|
}));
|
|
setDoctors(dataWithStatus || []);
|
|
// Não resetamos a página aqui para manter a navegação fluida se apenas recarregar dados
|
|
} catch (e: any) {
|
|
console.error("Erro ao carregar lista de médicos:", e);
|
|
setError("Não foi possível carregar a lista de médicos. Verifique a conexão com a API.");
|
|
setDoctors([]);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
fetchDoctors();
|
|
}, [fetchDoctors]);
|
|
|
|
// 2. Gerar lista única de especialidades (Normalizada)
|
|
const uniqueSpecialties = useMemo(() => {
|
|
return getUniqueSpecialties(doctors);
|
|
}, [doctors]);
|
|
|
|
// 3. Lógica de Filtragem Centralizada
|
|
const filteredDoctors = useMemo(() => {
|
|
return doctors.filter((doctor) => {
|
|
// Normaliza a especialidade do médico atual para comparar
|
|
const normalizedDocSpecialty = normalizeSpecialty(doctor.specialty);
|
|
|
|
// Filtros exatos
|
|
const specialtyMatch = filters.specialty === "all" || normalizedDocSpecialty === filters.specialty;
|
|
const statusMatch = filters.status === "all" || doctor.status === filters.status;
|
|
|
|
// Busca textual (Nome, Telefone, CRM)
|
|
const searchLower = searchTerm.toLowerCase();
|
|
const nameMatch = doctor.full_name?.toLowerCase().includes(searchLower);
|
|
const phoneMatch = doctor.phone_mobile?.includes(searchLower);
|
|
const crmMatch = doctor.crm?.toLowerCase().includes(searchLower);
|
|
|
|
return specialtyMatch && statusMatch && (searchTerm === "" || nameMatch || phoneMatch || crmMatch);
|
|
});
|
|
}, [doctors, filters, searchTerm]);
|
|
|
|
// --- Handlers de Controle (Com Reset de Paginação) ---
|
|
|
|
const handleSearch = (term: string) => {
|
|
setSearchTerm(term);
|
|
setCurrentPage(1); // Correção: Reseta para página 1 ao buscar
|
|
};
|
|
|
|
const handleFilterChange = (key: string, value: string) => {
|
|
setFilters(prev => ({ ...prev, [key]: value }));
|
|
setCurrentPage(1); // Correção: Reseta para página 1 ao filtrar
|
|
};
|
|
|
|
const handleClearFilters = () => {
|
|
setSearchTerm("");
|
|
setFilters({ specialty: "all", status: "all" });
|
|
setCurrentPage(1); // Correção: Reseta para página 1 ao limpar
|
|
};
|
|
|
|
const handleItemsPerPageChange = (value: string) => {
|
|
setItemsPerPage(Number(value));
|
|
setCurrentPage(1);
|
|
};
|
|
|
|
// --- Lógica de Paginação ---
|
|
const totalPages = Math.ceil(filteredDoctors.length / itemsPerPage);
|
|
const indexOfLastItem = currentPage * itemsPerPage;
|
|
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
|
const currentItems = filteredDoctors.slice(indexOfFirstItem, indexOfLastItem);
|
|
|
|
const paginate = (pageNumber: number) => setCurrentPage(pageNumber);
|
|
const goToPrevPage = () => setCurrentPage((prev) => Math.max(1, prev - 1));
|
|
const goToNextPage = () => setCurrentPage((prev) => Math.min(totalPages, prev + 1));
|
|
|
|
const getVisiblePageNumbers = (totalPages: number, currentPage: number) => {
|
|
const pages: number[] = [];
|
|
const maxVisiblePages = 5;
|
|
const halfRange = Math.floor(maxVisiblePages / 2);
|
|
let startPage = Math.max(1, currentPage - halfRange);
|
|
let endPage = Math.min(totalPages, currentPage + halfRange);
|
|
|
|
if (endPage - startPage + 1 < maxVisiblePages) {
|
|
if (endPage === totalPages) {
|
|
startPage = Math.max(1, totalPages - maxVisiblePages + 1);
|
|
}
|
|
if (startPage === 1) {
|
|
endPage = Math.min(totalPages, maxVisiblePages);
|
|
}
|
|
}
|
|
|
|
for (let i = startPage; i <= endPage; i++) {
|
|
pages.push(i);
|
|
}
|
|
return pages;
|
|
};
|
|
|
|
const visiblePageNumbers = getVisiblePageNumbers(totalPages, currentPage);
|
|
|
|
// --- Handlers de Ações (Detalhes e Delete) ---
|
|
const openDetailsDialog = (doctor: Doctor) => {
|
|
setDetailsDialogOpen(true);
|
|
setDoctorDetails({
|
|
nome: doctor.full_name,
|
|
crm: doctor.crm,
|
|
especialidade: normalizeSpecialty(doctor.specialty), // Exibe normalizado
|
|
contato: { celular: doctor.phone_mobile ?? undefined },
|
|
endereco: { cidade: doctor.city ?? undefined, estado: doctor.state ?? undefined },
|
|
status: doctor.status || "Ativo",
|
|
convenio: "Particular",
|
|
vip: false,
|
|
ultimo_atendimento: "N/A",
|
|
proximo_atendimento: "N/A",
|
|
});
|
|
};
|
|
|
|
const openDeleteDialog = (doctorId: number) => {
|
|
setDoctorToDeleteId(doctorId);
|
|
setDeleteDialogOpen(true);
|
|
};
|
|
|
|
const handleDelete = async () => {
|
|
if (doctorToDeleteId === null) return;
|
|
setLoading(true);
|
|
try {
|
|
await doctorsService.delete(doctorToDeleteId);
|
|
setDeleteDialogOpen(false);
|
|
setDoctorToDeleteId(null);
|
|
await fetchDoctors();
|
|
} catch (e) {
|
|
console.error("Erro ao excluir:", e);
|
|
alert("Erro ao excluir médico.");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Sidebar>
|
|
<div className="space-y-6 px-2 sm:px-4 md:px-6">
|
|
{/* Cabeçalho */}
|
|
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between gap-3">
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-gray-900">
|
|
Médicos Cadastrados
|
|
</h1>
|
|
<p className="text-sm text-gray-500">
|
|
Gerencie todos os profissionais de saúde.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* --- NOVO COMPONENTE DE FILTRO --- */}
|
|
<FilterBar
|
|
searchTerm={searchTerm}
|
|
onSearch={handleSearch}
|
|
activeFilters={filters}
|
|
onFilterChange={handleFilterChange}
|
|
onClearFilters={handleClearFilters}
|
|
searchPlaceholder="Buscar por nome, CRM ou telefone..."
|
|
filters={[
|
|
{
|
|
key: "specialty",
|
|
label: "Especialidade",
|
|
options: uniqueSpecialties
|
|
},
|
|
{
|
|
key: "status",
|
|
label: "Status",
|
|
options: ["Ativo", "Férias", "Inativo"]
|
|
}
|
|
]}
|
|
>
|
|
{/* Seletor de Itens por Página (Filho do FilterBar) */}
|
|
<div className="hidden lg:block">
|
|
<Select onValueChange={handleItemsPerPageChange} defaultValue={String(itemsPerPage)}>
|
|
<SelectTrigger className="w-[70px]">
|
|
<SelectValue placeholder="10" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="5">5</SelectItem>
|
|
<SelectItem value="10">10</SelectItem>
|
|
<SelectItem value="20">20</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</FilterBar>
|
|
|
|
{/* Tabela de Médicos */}
|
|
<div className="bg-white rounded-lg border border-gray-200 shadow-md overflow-hidden hidden md:block">
|
|
{loading ? (
|
|
<div className="p-8 text-center text-gray-500">
|
|
<Loader2 className="w-8 h-8 animate-spin mx-auto mb-3 text-green-600" />
|
|
Carregando médicos...
|
|
</div>
|
|
) : error ? (
|
|
<div className="p-8 text-center text-red-600">{error}</div>
|
|
) : filteredDoctors.length === 0 ? (
|
|
<div className="p-8 text-center text-gray-500">
|
|
{doctors.length === 0
|
|
? <>Nenhum médico cadastrado. <Link href="/manager/home/novo" className="text-green-600 hover:underline">Adicione um novo</Link>.</>
|
|
: "Nenhum médico encontrado com os filtros aplicados."
|
|
}
|
|
</div>
|
|
) : (
|
|
<div className="overflow-x-auto">
|
|
<table className="w-full min-w-[600px]">
|
|
<thead className="bg-gray-50 border-b border-gray-200">
|
|
<tr>
|
|
<th className="text-left p-2 md:p-4 font-medium text-gray-700">Nome</th>
|
|
<th className="text-left p-2 md:p-4 font-medium text-gray-700">CRM</th>
|
|
<th className="text-left p-2 md:p-4 font-medium text-gray-700">Especialidade</th>
|
|
<th className="text-left p-2 md:p-4 font-medium text-gray-700 hidden lg:table-cell">Status</th>
|
|
<th className="text-left p-2 md:p-4 font-medium text-gray-700 hidden xl:table-cell">Cidade/Estado</th>
|
|
<th className="text-right p-4 font-medium text-gray-700">Ações</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="bg-white divide-y divide-gray-200">
|
|
{currentItems.map((doctor) => (
|
|
<tr key={doctor.id} className="hover:bg-gray-50 transition">
|
|
<td className="px-4 py-3 font-medium text-gray-900">
|
|
{doctor.full_name}
|
|
</td>
|
|
<td className="px-4 py-3 text-gray-500 hidden sm:table-cell">{doctor.crm}</td>
|
|
<td className="px-4 py-3 text-gray-500 hidden md:table-cell">
|
|
{/* Exibe Especialidade Normalizada */}
|
|
{normalizeSpecialty(doctor.specialty)}
|
|
</td>
|
|
<td className="px-4 py-3 text-gray-500 hidden lg:table-cell">
|
|
<span className={`px-2 py-1 rounded-full text-xs ${
|
|
doctor.status === 'Ativo' ? 'bg-green-100 text-green-800' :
|
|
doctor.status === 'Inativo' ? 'bg-red-100 text-red-800' : 'bg-yellow-100 text-yellow-800'
|
|
}`}>
|
|
{doctor.status || "N/A"}
|
|
</span>
|
|
</td>
|
|
<td className="px-4 py-3 text-gray-500 hidden xl:table-cell">
|
|
{(doctor.city || doctor.state)
|
|
? `${doctor.city || ""}${doctor.city && doctor.state ? '/' : ''}${doctor.state || ""}`
|
|
: "N/A"}
|
|
</td>
|
|
<td className="px-4 py-3 text-right">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<div className="text-blue-600 cursor-pointer inline-block hover:underline">Ações</div>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem onClick={() => openDetailsDialog(doctor)}>
|
|
<Eye className="mr-2 h-4 w-4" />
|
|
Ver detalhes
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem asChild>
|
|
<Link href={`/manager/home/${doctor.id}/editar`}>
|
|
<Edit className="mr-2 h-4 w-4" />
|
|
Editar
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem>
|
|
<Calendar className="mr-2 h-4 w-4" />
|
|
Marcar consulta
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem className="text-red-600" onClick={() => openDeleteDialog(doctor.id)}>
|
|
<Trash2 className="mr-2 h-4 w-4" />
|
|
Excluir
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{/* Cards de Médicos (Mobile) */}
|
|
<div className="bg-white rounded-lg border border-gray-200 shadow-md p-4 block md:hidden">
|
|
{loading ? (
|
|
<div className="p-8 text-center text-gray-500">
|
|
<Loader2 className="w-8 h-8 animate-spin mx-auto mb-3 text-green-600" />
|
|
Carregando médicos...
|
|
</div>
|
|
) : error ? (
|
|
<div className="p-8 text-center text-red-600">{error}</div>
|
|
) : filteredDoctors.length === 0 ? (
|
|
<div className="p-8 text-center text-gray-500">
|
|
{doctors.length === 0
|
|
? <>Nenhum médico cadastrado. <Link href="/manager/home/novo" className="text-green-600 hover:underline">Adicione um novo</Link>.</>
|
|
: "Nenhum médico encontrado com os filtros aplicados."
|
|
}
|
|
</div>
|
|
) : (
|
|
<div className="space-y-4">
|
|
{currentItems.map((doctor) => (
|
|
<div key={doctor.id} className="bg-gray-50 rounded-lg p-4 flex justify-between items-center border border-gray-100">
|
|
<div>
|
|
<div className="font-semibold text-gray-900">{doctor.full_name}</div>
|
|
<div className="text-xs text-gray-500 mb-1">{doctor.phone_mobile}</div>
|
|
<div className="text-sm text-gray-600">{normalizeSpecialty(doctor.specialty)}</div>
|
|
<div className="text-xs mt-1">
|
|
<span className={`px-2 py-0.5 rounded-full text-xs ${
|
|
doctor.status === 'Ativo' ? 'bg-green-100 text-green-800' :
|
|
doctor.status === 'Inativo' ? 'bg-red-100 text-red-800' : 'bg-yellow-100 text-yellow-800'
|
|
}`}>
|
|
{doctor.status || "N/A"}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="ghost" size="sm" className="h-8 w-8 p-0">
|
|
<span className="sr-only">Abrir menu</span>
|
|
<div className="font-bold text-gray-500">...</div>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem onClick={() => openDetailsDialog(doctor)}>
|
|
<Eye className="mr-2 h-4 w-4" />
|
|
Ver detalhes
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem asChild>
|
|
<Link href={`/manager/home/${doctor.id}/editar`}>
|
|
<Edit className="mr-2 h-4 w-4" />
|
|
Editar
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem className="text-red-600" onClick={() => openDeleteDialog(doctor.id)}>
|
|
<Trash2 className="mr-2 h-4 w-4" />
|
|
Excluir
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{/* Paginação */}
|
|
{totalPages > 1 && (
|
|
<div className="flex flex-wrap justify-center items-center gap-2 mt-4 p-4 bg-white rounded-lg border border-gray-200 shadow-md">
|
|
<button
|
|
onClick={goToPrevPage}
|
|
disabled={currentPage === 1}
|
|
className="flex items-center px-4 py-2 rounded-md font-medium transition-colors text-sm bg-gray-100 text-gray-700 hover:bg-gray-200 disabled:opacity-50 disabled:cursor-not-allowed border border-gray-300"
|
|
>
|
|
{"< Anterior"}
|
|
</button>
|
|
|
|
{visiblePageNumbers.map((number) => (
|
|
<button
|
|
key={number}
|
|
onClick={() => paginate(number)}
|
|
className={`px-4 py-2 rounded-md font-medium transition-colors text-sm border border-gray-300 ${
|
|
currentPage === number
|
|
? "bg-blue-600 text-white shadow-md border-blue-600"
|
|
: "bg-gray-100 text-gray-700 hover:bg-gray-200"
|
|
}`}
|
|
>
|
|
{number}
|
|
</button>
|
|
))}
|
|
|
|
<button
|
|
onClick={goToNextPage}
|
|
disabled={currentPage === totalPages}
|
|
className="flex items-center px-4 py-2 rounded-md font-medium transition-colors text-sm bg-gray-100 text-gray-700 hover:bg-gray-200 disabled:opacity-50 disabled:cursor-not-allowed border border-gray-300"
|
|
>
|
|
{"Próximo >"}
|
|
</button>
|
|
</div>
|
|
)}
|
|
|
|
{/* Dialogs (Exclusão e Detalhes) */}
|
|
<AlertDialog open={deleteDialogOpen} onOpenChange={setDeleteDialogOpen}>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>Confirma a exclusão?</AlertDialogTitle>
|
|
<AlertDialogDescription>Esta ação é irreversível e excluirá permanentemente o registro deste médico.</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel disabled={loading}>Cancelar</AlertDialogCancel>
|
|
<AlertDialogAction onClick={handleDelete} className="bg-red-600 hover:bg-red-700" disabled={loading}>
|
|
{loading ? <Loader2 className="w-4 h-4 mr-2 animate-spin" /> : null}
|
|
Excluir
|
|
</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
|
|
<AlertDialog
|
|
open={detailsDialogOpen}
|
|
onOpenChange={setDetailsDialogOpen}
|
|
>
|
|
<AlertDialogContent className="max-w-[95%] sm:max-w-lg">
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle className="text-2xl">
|
|
{doctorDetails?.nome}
|
|
</AlertDialogTitle>
|
|
<AlertDialogDescription className="text-left text-gray-700">
|
|
{doctorDetails && (
|
|
<div className="space-y-3 text-left">
|
|
<h3 className="font-semibold mt-2">
|
|
Informações Principais
|
|
</h3>
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-y-2 gap-x-4 text-sm">
|
|
<div>
|
|
<strong>CRM:</strong> {doctorDetails.crm}
|
|
</div>
|
|
<div>
|
|
<strong>Especialidade:</strong>{" "}
|
|
{doctorDetails.especialidade}
|
|
</div>
|
|
<div>
|
|
<strong>Celular:</strong>{" "}
|
|
{doctorDetails.contato.celular || "N/A"}
|
|
</div>
|
|
<div>
|
|
<strong>Localização:</strong>{" "}
|
|
{`${doctorDetails.endereco.cidade || "N/A"}/${
|
|
doctorDetails.endereco.estado || "N/A"
|
|
}`}
|
|
</div>
|
|
</div>
|
|
|
|
<h3 className="font-semibold mt-4">
|
|
Atendimento e Convênio
|
|
</h3>
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-y-2 gap-x-4 text-sm">
|
|
<div>
|
|
<strong>Convênio:</strong>{" "}
|
|
{doctorDetails.convenio || "N/A"}
|
|
</div>
|
|
<div>
|
|
<strong>VIP:</strong>{" "}
|
|
{doctorDetails.vip ? "Sim" : "Não"}
|
|
</div>
|
|
<div>
|
|
<strong>Status:</strong> {doctorDetails.status || "N/A"}
|
|
</div>
|
|
<div>
|
|
<strong>Último atendimento:</strong>{" "}
|
|
{doctorDetails.ultimo_atendimento || "N/A"}
|
|
</div>
|
|
<div>
|
|
<strong>Próximo atendimento:</strong>{" "}
|
|
{doctorDetails.proximo_atendimento || "N/A"}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
{doctorDetails === null && !loading && (
|
|
<div className="text-red-600">Detalhes não disponíveis.</div>
|
|
)}
|
|
</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel>Fechar</AlertDialogCancel>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
</div>
|
|
</Sidebar>
|
|
);
|
|
}
|