- Implemented a bash script to test n8n API and retrieve credential schemas. - Added types for API responses, Google Calendar, and WhatsApp instances. - Configured Vitest for testing with React and added setup for testing-library.
120 lines
3.8 KiB
TypeScript
120 lines
3.8 KiB
TypeScript
"use client";
|
|
|
|
import { useRouter } from "next/navigation";
|
|
import { useState } from "react";
|
|
import { supabase } from "@/lib/supabase";
|
|
|
|
export default function UpdatePasswordPage() {
|
|
const router = useRouter();
|
|
const [password, setPassword] = useState("");
|
|
const [confirmPassword, setConfirmPassword] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleUpdatePassword = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError("");
|
|
setLoading(true);
|
|
|
|
// Validação
|
|
if (!password || !confirmPassword) {
|
|
setError("Por favor, preencha todos os campos");
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
if (password.length < 6) {
|
|
setError("A senha deve ter no mínimo 6 caracteres");
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
if (password !== confirmPassword) {
|
|
setError("As senhas não coincidem");
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const { error: updateError } = await supabase.auth.updateUser({
|
|
password: password,
|
|
});
|
|
|
|
if (updateError) throw updateError;
|
|
|
|
// Redirecionar para login com mensagem de sucesso
|
|
router.push("/login?message=password-updated");
|
|
} catch (err) {
|
|
const error = err as Error;
|
|
setError(error.message || "Erro ao atualizar senha. Tente novamente.");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-900 flex items-center justify-center px-4">
|
|
<div className="max-w-md w-full space-y-8">
|
|
{/* Logo */}
|
|
<div className="text-center">
|
|
<h1 className="text-4xl font-bold text-primary-500">AutomatizaSE</h1>
|
|
<p className="mt-2 text-gray-400">Redefinir Senha</p>
|
|
</div>
|
|
|
|
{/* Form */}
|
|
<form onSubmit={handleUpdatePassword} className="mt-8 space-y-6">
|
|
<div className="space-y-4">
|
|
<div>
|
|
<label
|
|
htmlFor="password"
|
|
className="block text-sm font-medium text-gray-300"
|
|
>
|
|
Nova Senha
|
|
</label>
|
|
<input
|
|
id="password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className="mt-1 block w-full px-3 py-2 bg-gray-800 border border-gray-700 rounded-md text-white focus:outline-none focus:ring-2 focus:ring-primary-500"
|
|
placeholder="••••••••"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label
|
|
htmlFor="confirmPassword"
|
|
className="block text-sm font-medium text-gray-300"
|
|
>
|
|
Confirmar Nova Senha
|
|
</label>
|
|
<input
|
|
id="confirmPassword"
|
|
type="password"
|
|
value={confirmPassword}
|
|
onChange={(e) => setConfirmPassword(e.target.value)}
|
|
className="mt-1 block w-full px-3 py-2 bg-gray-800 border border-gray-700 rounded-md text-white focus:outline-none focus:ring-2 focus:ring-primary-500"
|
|
placeholder="••••••••"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="text-red-400 text-sm text-center bg-red-900/20 p-3 rounded">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 disabled:opacity-50"
|
|
>
|
|
{loading ? "Atualizando..." : "Atualizar Senha"}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|