Template genérico de checkout com ASAAS, parametrizado via env vars. Inclui fluxo completo: checkout → pedido → polling → webhook → admin. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
87 lines
2.9 KiB
TypeScript
87 lines
2.9 KiB
TypeScript
"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 { createCliente } from "@/lib/actions"
|
|
import { toast } from "@/components/ui/use-toast"
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
DialogDescription,
|
|
} from "@/components/ui/dialog"
|
|
|
|
export function CustomerFormDialog() {
|
|
const [open, setOpen] = useState(false)
|
|
const router = useRouter()
|
|
const [formData, setFormData] = useState({
|
|
nome: "",
|
|
email: "",
|
|
telefone: "",
|
|
cpf_cnpj: "",
|
|
})
|
|
|
|
const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault()
|
|
try {
|
|
await createCliente(formData)
|
|
toast({ title: "Cliente criado", description: "Adicionado com sucesso." })
|
|
setOpen(false)
|
|
router.refresh()
|
|
} catch (error) {
|
|
toast({
|
|
title: "Erro",
|
|
description: error instanceof Error ? error.message : "Tente novamente.",
|
|
variant: "destructive",
|
|
})
|
|
}
|
|
}
|
|
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const { name, value } = e.target
|
|
setFormData((prev) => ({ ...prev, [name]: value }))
|
|
}
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button>Novo Cliente</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="sm:max-w-[425px]">
|
|
<DialogHeader>
|
|
<DialogTitle>Criar Novo Cliente</DialogTitle>
|
|
<DialogDescription>Preencha os dados do novo cliente.</DialogDescription>
|
|
</DialogHeader>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="nome">Nome</Label>
|
|
<Input id="nome" name="nome" value={formData.nome} onChange={handleChange} required />
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">E-mail</Label>
|
|
<Input id="email" name="email" type="email" value={formData.email} onChange={handleChange} required />
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="cpf_cnpj">CPF / CNPJ</Label>
|
|
<Input id="cpf_cnpj" name="cpf_cnpj" value={formData.cpf_cnpj} onChange={handleChange} />
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="telefone">Telefone</Label>
|
|
<Input id="telefone" name="telefone" value={formData.telefone} onChange={handleChange} />
|
|
</div>
|
|
<div className="flex justify-end space-x-2">
|
|
<Button type="button" variant="outline" onClick={() => setOpen(false)}>Cancelar</Button>
|
|
<Button type="submit">Criar Cliente</Button>
|
|
</div>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|