2025-06-09 11:13:05 +00:00
|
|
|
"use client"
|
|
|
|
|
|
|
|
import type React from "react"
|
|
|
|
|
|
|
|
import { useState } from "react"
|
|
|
|
import { useRouter } from "next/navigation"
|
|
|
|
import { Button } from "@/components/ui/button"
|
|
|
|
import { Input } from "@/components/ui/input"
|
|
|
|
import { Label } from "@/components/ui/label"
|
|
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
|
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
|
|
|
import { Alert, AlertDescription } from "@/components/ui/alert"
|
|
|
|
import { Loader2 } from "lucide-react"
|
|
|
|
|
|
|
|
const API_BASE_URL = process.env.NEXT_PUBLIC_API_URL || "http://localhost:5000/api/v1"
|
|
|
|
|
|
|
|
export default function LoginForm() {
|
|
|
|
const [isLoading, setIsLoading] = useState(false)
|
|
|
|
const [error, setError] = useState("")
|
|
|
|
const [success, setSuccess] = useState("")
|
|
|
|
const router = useRouter()
|
|
|
|
|
|
|
|
const handleLogin = async (e: React.FormEvent<HTMLFormElement>) => {
|
|
|
|
e.preventDefault()
|
|
|
|
setIsLoading(true)
|
|
|
|
setError("")
|
|
|
|
|
|
|
|
const formData = new FormData(e.currentTarget)
|
|
|
|
const email = formData.get("email") as string
|
|
|
|
const password = formData.get("password") as string
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
console.log(`${API_BASE_URL}/auth/login`)
|
|
|
|
const response = await fetch(`${API_BASE_URL}/auth/login`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
body: JSON.stringify({ email, password }),
|
|
|
|
})
|
|
|
|
|
|
|
|
const data = await response.json()
|
|
|
|
|
|
|
|
if (response.ok) {
|
|
|
|
localStorage.setItem("access_token", data.access_token)
|
|
|
|
router.push("/dashboard")
|
|
|
|
} else {
|
|
|
|
setError(data.message || "Erro ao fazer login")
|
|
|
|
}
|
|
|
|
} catch (err) {
|
2025-06-09 13:32:46 +00:00
|
|
|
console.log("====> Erro de conexão com o servidor: ",err)
|
2025-06-09 11:13:05 +00:00
|
|
|
setError("Erro de conexão com o servidor")
|
|
|
|
} finally {
|
|
|
|
setIsLoading(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const handleSignup = async (e: React.FormEvent<HTMLFormElement>) => {
|
|
|
|
e.preventDefault()
|
|
|
|
setIsLoading(true)
|
|
|
|
setError("")
|
|
|
|
setSuccess("")
|
|
|
|
|
|
|
|
const formData = new FormData(e.currentTarget)
|
|
|
|
const email = formData.get("email") as string
|
|
|
|
const password = formData.get("password") as string
|
|
|
|
|
|
|
|
try {
|
|
|
|
const response = await fetch(`${API_BASE_URL}/auth/signup`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
body: JSON.stringify({ email, password }),
|
|
|
|
})
|
|
|
|
|
|
|
|
const data = await response.json()
|
|
|
|
|
|
|
|
if (response.ok) {
|
|
|
|
setSuccess("Usuário criado com sucesso! Faça login para continuar.")
|
|
|
|
} else {
|
|
|
|
setError(data.message || "Erro ao criar usuário")
|
|
|
|
}
|
|
|
|
} catch (err) {
|
2025-06-09 13:32:46 +00:00
|
|
|
console.log("====> Erro de conexão com o servidor: ", err)
|
2025-06-09 11:13:05 +00:00
|
|
|
setError("Erro de conexão com o servidor")
|
|
|
|
} finally {
|
|
|
|
setIsLoading(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Tabs defaultValue="login" className="w-full">
|
|
|
|
<TabsList className="grid w-full grid-cols-1">
|
|
|
|
<TabsTrigger value="login">Login</TabsTrigger>
|
|
|
|
{/* <TabsTrigger value="signup">Cadastro</TabsTrigger> */}
|
|
|
|
</TabsList>
|
|
|
|
|
|
|
|
<TabsContent value="login">
|
|
|
|
<Card>
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle>Login</CardTitle>
|
|
|
|
<CardDescription>Entre com suas credenciais para acessar o sistema</CardDescription>
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent>
|
|
|
|
<form onSubmit={handleLogin} className="space-y-4">
|
|
|
|
<div className="space-y-2">
|
|
|
|
<Label htmlFor="login-email">Email</Label>
|
|
|
|
<Input id="login-email" name="email" type="email" required placeholder="seu@email.com" />
|
|
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
|
|
<Label htmlFor="login-password">Senha</Label>
|
|
|
|
<Input id="login-password" name="password" type="password" required placeholder="Sua senha" />
|
|
|
|
</div>
|
|
|
|
{error && (
|
|
|
|
<Alert variant="destructive">
|
|
|
|
<AlertDescription>{error}</AlertDescription>
|
|
|
|
</Alert>
|
|
|
|
)}
|
|
|
|
<Button type="submit" className="w-full" disabled={isLoading}>
|
|
|
|
{isLoading && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
|
|
Entrar
|
|
|
|
</Button>
|
|
|
|
</form>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
</TabsContent>
|
|
|
|
|
|
|
|
<TabsContent value="signup">
|
|
|
|
<Card>
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle>Cadastro</CardTitle>
|
|
|
|
<CardDescription>Crie uma nova conta para acessar o sistema</CardDescription>
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent>
|
|
|
|
<form onSubmit={handleSignup} className="space-y-4">
|
|
|
|
<div className="space-y-2">
|
|
|
|
<Label htmlFor="signup-email">Email</Label>
|
|
|
|
<Input id="signup-email" name="email" type="email" required placeholder="seu@email.com" />
|
|
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
|
|
<Label htmlFor="signup-password">Senha</Label>
|
|
|
|
<Input
|
|
|
|
id="signup-password"
|
|
|
|
name="password"
|
|
|
|
type="password"
|
|
|
|
required
|
|
|
|
placeholder="Sua senha"
|
|
|
|
minLength={8}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{error && (
|
|
|
|
<Alert variant="destructive">
|
|
|
|
<AlertDescription>{error}</AlertDescription>
|
|
|
|
</Alert>
|
|
|
|
)}
|
|
|
|
{success && (
|
|
|
|
<Alert>
|
|
|
|
<AlertDescription>{success}</AlertDescription>
|
|
|
|
</Alert>
|
|
|
|
)}
|
|
|
|
<Button type="submit" className="w-full" disabled={isLoading}>
|
|
|
|
{isLoading && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
|
|
Criar Conta
|
|
|
|
</Button>
|
|
|
|
</form>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
</TabsContent>
|
|
|
|
</Tabs>
|
|
|
|
)
|
|
|
|
}
|