185 lines
7.0 KiB
TypeScript
185 lines
7.0 KiB
TypeScript
import React, { useState } from "react";
|
|
import { Mail, Lock, User, Phone, Clipboard, ArrowLeft } from "lucide-react";
|
|
import toast from "react-hot-toast";
|
|
import { useNavigate } from "react-router-dom";
|
|
import { userService } from "../services";
|
|
|
|
const CadastroSecretaria: React.FC = () => {
|
|
const [formData, setFormData] = useState({
|
|
nome: "",
|
|
email: "",
|
|
telefone: "",
|
|
});
|
|
const [loading, setLoading] = useState(false);
|
|
const navigate = useNavigate();
|
|
|
|
const handleCadastro = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
|
|
try {
|
|
// Validações básicas
|
|
if (!formData.nome.trim()) {
|
|
toast.error("Nome completo é obrigatório");
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
if (!formData.email.trim() || !formData.email.includes("@")) {
|
|
toast.error("Email válido é obrigatório");
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
// Usar create-user (flexível, validações mínimas)
|
|
await userService.createUser({
|
|
email: formData.email,
|
|
full_name: formData.nome,
|
|
phone: formData.telefone || null,
|
|
role: "secretaria",
|
|
});
|
|
|
|
toast.success(
|
|
"Cadastro realizado com sucesso! Verifique seu email para ativar a conta.",
|
|
{ duration: 5000 }
|
|
);
|
|
|
|
// Limpa formulário e volta para login
|
|
setFormData({ nome: "", email: "", telefone: "" });
|
|
setTimeout(() => navigate("/login-secretaria"), 2000);
|
|
} catch (error: any) {
|
|
console.error("Erro ao cadastrar secretária:", error);
|
|
const errorMsg =
|
|
error?.response?.data?.error || error?.message || "Erro ao criar conta";
|
|
toast.error(errorMsg);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-br from-green-50 to-white dark:from-gray-900 dark:to-gray-950 flex items-center justify-center p-4 transition-colors">
|
|
<div className="max-w-md w-full">
|
|
<div className="text-center mb-8">
|
|
<div className="bg-gradient-to-r from-green-600 to-green-400 dark:from-green-700 dark:to-green-500 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 shadow-md">
|
|
<Clipboard className="w-8 h-8 text-white" />
|
|
</div>
|
|
<h1 className="text-3xl font-bold text-gray-900 dark:text-gray-100 mb-2">
|
|
Cadastro de Secretária
|
|
</h1>
|
|
<p className="text-gray-600 dark:text-gray-400">
|
|
Crie sua conta para acessar o sistema
|
|
</p>
|
|
</div>
|
|
|
|
<div className="bg-white dark:bg-gray-800 rounded-lg shadow-lg p-8 border border-transparent dark:border-gray-700 transition-colors">
|
|
<form onSubmit={handleCadastro} className="space-y-6" noValidate>
|
|
<div>
|
|
<label
|
|
htmlFor="nome"
|
|
className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2"
|
|
>
|
|
Nome Completo *
|
|
</label>
|
|
<div className="relative">
|
|
<User className="absolute left-3 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" />
|
|
<input
|
|
id="nome"
|
|
type="text"
|
|
value={formData.nome}
|
|
onChange={(e) =>
|
|
setFormData((prev) => ({ ...prev, nome: e.target.value }))
|
|
}
|
|
className="form-input pl-10 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-gray-100"
|
|
placeholder="Seu nome completo"
|
|
required
|
|
autoComplete="name"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label
|
|
htmlFor="email"
|
|
className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2"
|
|
>
|
|
Email *
|
|
</label>
|
|
<div className="relative">
|
|
<Mail className="absolute left-3 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" />
|
|
<input
|
|
id="email"
|
|
type="email"
|
|
value={formData.email}
|
|
onChange={(e) =>
|
|
setFormData((prev) => ({ ...prev, email: e.target.value }))
|
|
}
|
|
className="form-input pl-10 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-gray-100"
|
|
placeholder="seu@email.com"
|
|
required
|
|
autoComplete="email"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label
|
|
htmlFor="telefone"
|
|
className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2"
|
|
>
|
|
Telefone (Opcional)
|
|
</label>
|
|
<div className="relative">
|
|
<Phone className="absolute left-3 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" />
|
|
<input
|
|
id="telefone"
|
|
type="tel"
|
|
value={formData.telefone}
|
|
onChange={(e) =>
|
|
setFormData((prev) => ({
|
|
...prev,
|
|
telefone: e.target.value,
|
|
}))
|
|
}
|
|
className="form-input pl-10 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-gray-100"
|
|
placeholder="(00) 00000-0000"
|
|
autoComplete="tel"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-blue-50 dark:bg-blue-900/20 p-4 rounded-lg">
|
|
<p className="text-sm text-blue-800 dark:text-blue-200">
|
|
🔐 <strong>Ativação por Email:</strong> Você receberá um link
|
|
mágico (magic link) no seu email para ativar a conta e definir
|
|
sua senha.
|
|
</p>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full bg-gradient-to-r from-green-600 to-green-400 text-white py-3 px-4 rounded-lg font-medium hover:from-green-700 hover:to-green-500 hover:scale-105 active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed disabled:hover:scale-100 transition-all duration-200 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-green-500 focus-visible:ring-offset-2"
|
|
>
|
|
{loading ? "Criando conta..." : "Criar Conta"}
|
|
</button>
|
|
|
|
<div className="text-center">
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate("/login-secretaria")}
|
|
className="inline-flex items-center gap-2 text-green-600 dark:text-green-400 hover:text-green-700 dark:hover:text-green-300 font-medium text-sm transition-colors"
|
|
>
|
|
<ArrowLeft className="w-4 h-4" />
|
|
Voltar para o login
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CadastroSecretaria;
|