492 lines
22 KiB
TypeScript
492 lines
22 KiB
TypeScript
"use client"
|
|
|
|
import { useState, useEffect, useCallback } from "react"
|
|
import { useRouter, useParams } from "next/navigation"
|
|
import Link from "next/link"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Label } from "@/components/ui/label"
|
|
import { Textarea } from "@/components/ui/textarea"
|
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
|
|
import { Checkbox } from "@/components/ui/checkbox"
|
|
import { Save, Loader2, ArrowLeft } from "lucide-react"
|
|
import Sidebar from "@/components/Sidebar"
|
|
import { doctorsService } from "services/doctorsApi.mjs";
|
|
|
|
const UF_LIST = ["AC", "AL", "AP", "AM", "BA", "CE", "DF", "ES", "GO", "MA", "MT", "MS", "MG", "PA", "PB", "PR", "PE", "PI", "RJ", "RN", "RS", "RO", "RR", "SC", "SP", "SE", "TO"];
|
|
|
|
interface DoctorFormData {
|
|
nomeCompleto: string;
|
|
crm: string;
|
|
crmEstado: string;
|
|
especialidade: string;
|
|
cpf: string;
|
|
email: string;
|
|
dataNascimento: string;
|
|
rg: string;
|
|
telefoneCelular: string;
|
|
telefone2: string;
|
|
cep: string;
|
|
endereco: string;
|
|
numero: string;
|
|
complemento: string;
|
|
bairro: string;
|
|
cidade: string;
|
|
estado: string;
|
|
ativo: boolean;
|
|
observacoes: string;
|
|
}
|
|
const apiMap: { [K in keyof DoctorFormData]: string | null } = {
|
|
nomeCompleto: 'full_name', crm: 'crm', crmEstado: 'crm_uf', especialidade: 'specialty',
|
|
cpf: 'cpf', email: 'email', dataNascimento: 'birth_date', rg: 'rg',
|
|
telefoneCelular: 'phone_mobile', telefone2: 'phone2', cep: 'cep',
|
|
endereco: 'street', numero: 'number', complemento: 'complement',
|
|
bairro: 'neighborhood', cidade: 'city', estado: 'state', ativo: 'active',
|
|
observacoes: null,
|
|
};
|
|
|
|
const defaultFormData: DoctorFormData = {
|
|
nomeCompleto: '', crm: '', crmEstado: '', especialidade: '', cpf: '', email: '',
|
|
dataNascimento: '', rg: '', telefoneCelular: '', telefone2: '', cep: '',
|
|
endereco: '', numero: '', complemento: '', bairro: '', cidade: '', estado: '',
|
|
ativo: true, observacoes: '',
|
|
};
|
|
|
|
const cleanNumber = (value: string): string => value.replace(/\D/g, '');
|
|
|
|
const formatCPF = (value: string): string => {
|
|
const cleaned = cleanNumber(value).substring(0, 11);
|
|
return cleaned.replace(/(\d{3})(\d{3})(\d{3})(\d{2})/, '$1.$2.$3-$4');
|
|
};
|
|
|
|
const formatCEP = (value: string): string => {
|
|
const cleaned = cleanNumber(value).substring(0, 8);
|
|
return cleaned.replace(/(\d{5})(\d{3})/, '$1-$2');
|
|
};
|
|
|
|
const formatPhoneMobile = (value: string): string => {
|
|
const cleaned = cleanNumber(value).substring(0, 11);
|
|
if (cleaned.length > 10) {
|
|
return cleaned.replace(/(\d{2})(\d{5})(\d{4})/, '($1) $2-$3');
|
|
}
|
|
return cleaned.replace(/(\d{2})(\d{4})(\d{4})/, '($1) $2-$3');
|
|
};
|
|
|
|
export default function EditarMedicoPage() {
|
|
const router = useRouter();
|
|
const params = useParams();
|
|
const id = Array.isArray(params.id) ? params.id[0] : params.id;
|
|
const [formData, setFormData] = useState<DoctorFormData>(defaultFormData);
|
|
const [loading, setLoading] = useState(true);
|
|
const [isSaving, setIsSaving] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const apiToFormMap: { [key: string]: keyof DoctorFormData } = {
|
|
'full_name': 'nomeCompleto', 'crm': 'crm', 'crm_uf': 'crmEstado', 'specialty': 'especialidade',
|
|
'cpf': 'cpf', 'email': 'email', 'birth_date': 'dataNascimento', 'rg': 'rg',
|
|
'phone_mobile': 'telefoneCelular', 'phone2': 'telefone2', 'cep': 'cep',
|
|
'street': 'endereco', 'number': 'numero', 'complement': 'complemento',
|
|
'neighborhood': 'bairro', 'city': 'cidade', 'state': 'estado', 'active': 'ativo'
|
|
};
|
|
|
|
|
|
useEffect(() => {
|
|
if (!id) return;
|
|
|
|
const fetchDoctor = async () => {
|
|
try {
|
|
const data = await doctorsService.getById(id);
|
|
|
|
if (!data) {
|
|
setError("Médico não encontrado.");
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
const initialData: Partial<DoctorFormData> = {};
|
|
|
|
Object.keys(data).forEach(key => {
|
|
const formKey = apiToFormMap[key];
|
|
if (formKey) {
|
|
let value = data[key] === null ? '' : data[key];
|
|
if (formKey === 'ativo') {
|
|
value = !!value;
|
|
} else if (typeof value !== 'boolean') {
|
|
value = String(value);
|
|
}
|
|
initialData[formKey] = value as any;
|
|
}
|
|
});
|
|
initialData.observacoes = "Observação carregada do sistema (exemplo de campo interno)";
|
|
|
|
setFormData(prev => ({ ...prev, ...initialData }));
|
|
} catch (e) {
|
|
console.error("Erro ao carregar dados:", e);
|
|
setError("Não foi possível carregar os dados do médico.");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
fetchDoctor();
|
|
}, [id]);
|
|
|
|
const handleInputChange = (key: keyof DoctorFormData, value: string | boolean) => {
|
|
|
|
|
|
if (typeof value === 'string') {
|
|
let maskedValue = value;
|
|
if (key === 'cpf') maskedValue = formatCPF(value);
|
|
if (key === 'cep') maskedValue = formatCEP(value);
|
|
if (key === 'telefoneCelular' || key === 'telefone2') maskedValue = formatPhoneMobile(value);
|
|
|
|
setFormData((prev) => ({ ...prev, [key]: maskedValue }));
|
|
} else {
|
|
setFormData((prev) => ({ ...prev, [key]: value }));
|
|
}
|
|
};
|
|
|
|
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError(null);
|
|
setIsSaving(true);
|
|
|
|
if (!id) {
|
|
setError("ID do médico ausente.");
|
|
setIsSaving(false);
|
|
return;
|
|
}
|
|
|
|
const finalPayload: { [key: string]: any } = {};
|
|
const formKeys = Object.keys(formData) as Array<keyof DoctorFormData>;
|
|
|
|
|
|
formKeys.forEach((key) => {
|
|
const apiFieldName = apiMap[key];
|
|
|
|
if (!apiFieldName) return;
|
|
|
|
let value = formData[key];
|
|
|
|
if (typeof value === 'string') {
|
|
let trimmedValue = value.trim();
|
|
if (trimmedValue === '') {
|
|
finalPayload[apiFieldName] = null;
|
|
return;
|
|
}
|
|
if (key === 'crmEstado' || key === 'estado') {
|
|
trimmedValue = trimmedValue.toUpperCase();
|
|
}
|
|
|
|
value = trimmedValue;
|
|
}
|
|
|
|
finalPayload[apiFieldName] = value;
|
|
});
|
|
|
|
delete finalPayload.user_id;
|
|
try {
|
|
await doctorsService.update(id, finalPayload);
|
|
router.push("/manager/home");
|
|
} catch (e: any) {
|
|
console.error("Erro ao salvar o médico:", e);
|
|
let detailedError = "Erro ao atualizar. Verifique os dados e tente novamente.";
|
|
|
|
if (e.message && e.message.includes("duplicate key value violates unique constraint")) {
|
|
detailedError = "O CPF ou CRM informado já está cadastrado em outro registro.";
|
|
} else if (e.message && e.message.includes("Detalhes:")) {
|
|
detailedError = e.message.split("Detalhes:")[1].trim();
|
|
} else if (e.message) {
|
|
detailedError = e.message;
|
|
}
|
|
|
|
setError(`Erro ao atualizar. Detalhes: ${detailedError}`);
|
|
} finally {
|
|
setIsSaving(false);
|
|
}
|
|
};
|
|
if (loading) {
|
|
return (
|
|
<Sidebar>
|
|
<div className="flex justify-center items-center h-full w-full py-16">
|
|
<Loader2 className="w-8 h-8 animate-spin text-green-600" />
|
|
<p className="ml-2 text-gray-600">Carregando dados do médico...</p>
|
|
</div>
|
|
</Sidebar>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Sidebar>
|
|
<div className="w-full space-y-6 p-4 md:p-8">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-gray-900">
|
|
Editar Médico: <span className="text-green-600">{formData.nomeCompleto}</span>
|
|
</h1>
|
|
<p className="text-sm text-gray-500">
|
|
Atualize as informações do médico
|
|
</p>
|
|
</div>
|
|
<Link href="/manager/home">
|
|
<Button variant="outline">
|
|
<ArrowLeft className="w-4 h-4 mr-2" />
|
|
Voltar
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
|
|
{error && (
|
|
<div className="p-3 bg-red-100 text-red-700 rounded-lg border border-red-300">
|
|
<p className="font-medium">Erro na Atualização:</p>
|
|
<p className="text-sm">{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
<div className="space-y-4 p-4 border rounded-xl shadow-sm bg-white">
|
|
<h2 className="text-lg font-semibold text-gray-800 border-b pb-2">
|
|
Dados Principais e Pessoais
|
|
</h2>
|
|
<div className="grid md:grid-cols-4 gap-4">
|
|
<div className="space-y-2 col-span-2">
|
|
<Label htmlFor="nomeCompleto">Nome Completo (full_name)</Label>
|
|
<Input
|
|
id="nomeCompleto"
|
|
value={formData.nomeCompleto}
|
|
onChange={(e) => handleInputChange("nomeCompleto", e.target.value)}
|
|
placeholder="Nome do Médico"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2 col-span-1">
|
|
<Label htmlFor="crm">CRM</Label>
|
|
<Input
|
|
id="crm"
|
|
value={formData.crm}
|
|
onChange={(e) => handleInputChange("crm", e.target.value)}
|
|
placeholder="Ex: 123456"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2 col-span-1">
|
|
<Label htmlFor="crmEstado">UF do CRM (crm_uf)</Label>
|
|
<Select value={formData.crmEstado} onValueChange={(v) => handleInputChange("crmEstado", v)}>
|
|
<SelectTrigger id="crmEstado">
|
|
<SelectValue placeholder="UF" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{UF_LIST.map(uf => (
|
|
<SelectItem key={uf} value={uf}>{uf}</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div className="grid md:grid-cols-3 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="especialidade">Especialidade (specialty)</Label>
|
|
<Input
|
|
id="especialidade"
|
|
value={formData.especialidade}
|
|
onChange={(e) => handleInputChange("especialidade", e.target.value)}
|
|
placeholder="Ex: Cardiologia"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="cpf">CPF</Label>
|
|
<Input
|
|
id="cpf"
|
|
value={formData.cpf}
|
|
onChange={(e) => handleInputChange("cpf", e.target.value)}
|
|
placeholder="000.000.000-00"
|
|
maxLength={14}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="rg">RG</Label>
|
|
<Input
|
|
id="rg"
|
|
value={formData.rg}
|
|
onChange={(e) => handleInputChange("rg", e.target.value)}
|
|
placeholder="00.000.000-0"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid md:grid-cols-4 gap-4">
|
|
<div className="space-y-2 col-span-2">
|
|
<Label htmlFor="email">E-mail</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
value={formData.email}
|
|
onChange={(e) => handleInputChange("email", e.target.value)}
|
|
placeholder="exemplo@dominio.com"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2 col-span-1">
|
|
<Label htmlFor="dataNascimento">Data de Nascimento (birth_date)</Label>
|
|
<Input
|
|
id="dataNascimento"
|
|
type="date"
|
|
value={formData.dataNascimento}
|
|
onChange={(e) => handleInputChange("dataNascimento", e.target.value)}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2 flex items-end justify-center pb-1">
|
|
<div className="flex items-center space-x-2">
|
|
<Checkbox
|
|
id="ativo"
|
|
checked={formData.ativo}
|
|
onCheckedChange={(checked) => handleInputChange("ativo", checked === true)}
|
|
/>
|
|
<Label htmlFor="ativo">Médico Ativo (active)</Label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-4 p-4 border rounded-xl shadow-sm bg-white">
|
|
<h2 className="text-lg font-semibold text-gray-800 border-b pb-2">
|
|
Contato e Endereço
|
|
</h2>
|
|
|
|
<div className="grid md:grid-cols-2 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="telefoneCelular">Telefone Celular (phone_mobile)</Label>
|
|
<Input
|
|
id="telefoneCelular"
|
|
value={formData.telefoneCelular}
|
|
onChange={(e) => handleInputChange("telefoneCelular", e.target.value)}
|
|
placeholder="(00) 00000-0000"
|
|
maxLength={15}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="telefone2">Telefone Adicional (phone2)</Label>
|
|
<Input
|
|
id="telefone2"
|
|
value={formData.telefone2}
|
|
onChange={(e) => handleInputChange("telefone2", e.target.value)}
|
|
placeholder="(00) 00000-0000"
|
|
maxLength={15}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div className="grid md:grid-cols-4 gap-4">
|
|
<div className="space-y-2 col-span-1">
|
|
<Label htmlFor="cep">CEP</Label>
|
|
<Input
|
|
id="cep"
|
|
value={formData.cep}
|
|
onChange={(e) => handleInputChange("cep", e.target.value)}
|
|
placeholder="00000-000"
|
|
maxLength={9}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2 col-span-3">
|
|
<Label htmlFor="endereco">Logradouro (street)</Label>
|
|
<Input
|
|
id="endereco"
|
|
value={formData.endereco}
|
|
onChange={(e) => handleInputChange("endereco", e.target.value)}
|
|
placeholder="Rua, Avenida, etc."
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid md:grid-cols-4 gap-4">
|
|
<div className="space-y-2 col-span-1">
|
|
<Label htmlFor="numero">Número</Label>
|
|
<Input
|
|
id="numero"
|
|
value={formData.numero}
|
|
onChange={(e) => handleInputChange("numero", e.target.value)}
|
|
placeholder="123"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2 col-span-3">
|
|
<Label htmlFor="complemento">Complemento</Label>
|
|
<Input
|
|
id="complemento"
|
|
value={formData.complemento}
|
|
onChange={(e) => handleInputChange("complemento", e.target.value)}
|
|
placeholder="Apto, Bloco, etc."
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid md:grid-cols-4 gap-4">
|
|
<div className="space-y-2 col-span-2">
|
|
<Label htmlFor="bairro">Bairro</Label>
|
|
<Input
|
|
id="bairro"
|
|
value={formData.bairro}
|
|
onChange={(e) => handleInputChange("bairro", e.target.value)}
|
|
placeholder="Bairro"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2 col-span-1">
|
|
<Label htmlFor="cidade">Cidade</Label>
|
|
<Input
|
|
id="cidade"
|
|
value={formData.cidade}
|
|
onChange={(e) => handleInputChange("cidade", e.target.value)}
|
|
placeholder="São Paulo"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2 col-span-1">
|
|
<Label htmlFor="estado">Estado (state)</Label>
|
|
<Input
|
|
id="estado"
|
|
value={formData.estado}
|
|
onChange={(e) => handleInputChange("estado", e.target.value)}
|
|
placeholder="SP"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div className="space-y-4 p-4 border rounded-xl shadow-sm bg-white">
|
|
<h2 className="text-lg font-semibold text-gray-800 border-b pb-2">
|
|
Observações (Apenas internas)
|
|
</h2>
|
|
<Textarea
|
|
id="observacoes"
|
|
value={formData.observacoes}
|
|
onChange={(e) => handleInputChange("observacoes", e.target.value)}
|
|
placeholder="Notas internas sobre o médico..."
|
|
className="min-h-[100px]"
|
|
/>
|
|
</div>
|
|
|
|
|
|
<div className="flex justify-end gap-4 pb-8 pt-4">
|
|
<Link href="/manager/home">
|
|
<Button type="button" variant="outline" disabled={isSaving}>
|
|
Cancelar
|
|
</Button>
|
|
</Link>
|
|
<Button
|
|
type="submit"
|
|
className="bg-green-600 hover:bg-green-700"
|
|
disabled={isSaving}
|
|
>
|
|
{isSaving ? (
|
|
<Loader2 className="w-4 h-4 mr-2 animate-spin" />
|
|
) : (
|
|
<Save className="w-4 h-4 mr-2" />
|
|
)}
|
|
{isSaving ? "Salvando..." : "Salvar Alterações"}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</Sidebar>
|
|
);
|
|
} |