194 lines
8.8 KiB
TypeScript
194 lines
8.8 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from 'react';
|
|
import Link from 'next/link';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useToast } from '@/contexts/ToastContext';
|
|
|
|
export default function NewService() {
|
|
const router = useRouter();
|
|
const { success, error } = useToast();
|
|
const [loading, setLoading] = useState(false);
|
|
const [formData, setFormData] = useState({
|
|
title: '',
|
|
icon: 'ri-settings-3-line',
|
|
active: true,
|
|
order: 0,
|
|
shortDescription: '',
|
|
fullDescription: ''
|
|
});
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
|
|
if (!formData.title) {
|
|
error('Informe ao menos o título do serviço.');
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
try {
|
|
const response = await fetch('/api/services', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({
|
|
title: formData.title.trim(),
|
|
icon: formData.icon.trim() || 'ri-settings-3-line',
|
|
shortDescription: formData.shortDescription?.trim() || null,
|
|
fullDescription: formData.fullDescription?.trim() || null,
|
|
active: formData.active,
|
|
order: formData.order,
|
|
}),
|
|
});
|
|
|
|
const data = await response.json().catch(() => ({}));
|
|
|
|
if (!response.ok) {
|
|
throw new Error(data?.error || 'Erro ao salvar serviço');
|
|
}
|
|
|
|
success('Serviço cadastrado com sucesso!');
|
|
router.push('/admin/servicos');
|
|
} catch (err) {
|
|
console.error('Erro ao salvar serviço:', err);
|
|
error(err instanceof Error ? err.message : 'Não foi possível salvar o serviço.');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="max-w-4xl mx-auto">
|
|
<div className="flex items-center gap-4 mb-8">
|
|
<Link
|
|
href="/admin/servicos"
|
|
className="w-10 h-10 rounded-xl bg-white dark:bg-secondary border border-gray-200 dark:border-white/10 flex items-center justify-center text-gray-500 hover:text-primary hover:border-primary transition-colors shadow-sm"
|
|
>
|
|
<i className="ri-arrow-left-line text-xl"></i>
|
|
</Link>
|
|
<div>
|
|
<h1 className="text-3xl font-bold font-headline text-secondary dark:text-white mb-1">Novo Serviço</h1>
|
|
<p className="text-gray-500 dark:text-gray-400">Adicione um novo serviço ao catálogo.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-8">
|
|
<div className="bg-white dark:bg-secondary p-8 rounded-2xl border border-gray-200 dark:border-white/10 shadow-sm">
|
|
<h2 className="text-xl font-bold text-secondary dark:text-white mb-6 flex items-center gap-2">
|
|
<i className="ri-information-line text-primary"></i>
|
|
Informações do Serviço
|
|
</h2>
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
<div className="md:col-span-2">
|
|
<label className="block text-sm font-bold text-gray-700 dark:text-gray-300 mb-2">Título do Serviço</label>
|
|
<input
|
|
type="text"
|
|
value={formData.title}
|
|
onChange={(e) => setFormData({...formData, title: e.target.value})}
|
|
className="w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-xl text-gray-900 dark:text-white focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary transition-all"
|
|
placeholder="Ex: Engenharia Veicular"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-bold text-gray-700 dark:text-gray-300 mb-2">Ícone (Remix Icon Class)</label>
|
|
<div className="flex gap-3">
|
|
<div className="w-12 h-12 rounded-xl bg-primary/10 text-primary flex items-center justify-center text-xl shrink-0">
|
|
<i className={formData.icon}></i>
|
|
</div>
|
|
<input
|
|
type="text"
|
|
value={formData.icon}
|
|
onChange={(e) => setFormData({...formData, icon: e.target.value})}
|
|
className="w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-xl text-gray-900 dark:text-white focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary transition-all"
|
|
placeholder="Ex: ri-truck-line"
|
|
required
|
|
/>
|
|
</div>
|
|
<p className="text-xs text-gray-500 mt-2">
|
|
Consulte a lista de ícones em <a href="https://remixicon.com" target="_blank" rel="noopener noreferrer" className="text-primary hover:underline">remixicon.com</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-bold text-gray-700 dark:text-gray-300 mb-2">Status</label>
|
|
<select
|
|
value={formData.active ? 'active' : 'inactive'}
|
|
onChange={(e) => setFormData({...formData, active: e.target.value === 'active'})}
|
|
className="w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-xl text-gray-900 dark:text-white focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary transition-all appearance-none cursor-pointer"
|
|
>
|
|
<option value="active">Ativo</option>
|
|
<option value="inactive">Inativo</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-bold text-gray-700 dark:text-gray-300 mb-2">Ordem de Exibição</label>
|
|
<input
|
|
type="number"
|
|
value={formData.order}
|
|
onChange={(e) => setFormData({...formData, order: parseInt(e.target.value) || 0})}
|
|
className="w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-xl text-gray-900 dark:text-white focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary transition-all"
|
|
min="0"
|
|
/>
|
|
<p className="text-xs text-gray-500 mt-1">Menor número = aparece primeiro</p>
|
|
</div>
|
|
|
|
<div className="md:col-span-2">
|
|
<label className="block text-sm font-bold text-gray-700 dark:text-gray-300 mb-2">Descrição Curta (Resumo)</label>
|
|
<input
|
|
type="text"
|
|
value={formData.shortDescription}
|
|
onChange={(e) => setFormData({...formData, shortDescription: e.target.value})}
|
|
className="w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-xl text-gray-900 dark:text-white focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary transition-all"
|
|
placeholder="Breve descrição para os cards da home..."
|
|
maxLength={150}
|
|
/>
|
|
<p className="text-xs text-gray-500 mt-1 text-right">{formData.shortDescription.length}/150</p>
|
|
</div>
|
|
|
|
<div className="md:col-span-2">
|
|
<label className="block text-sm font-bold text-gray-700 dark:text-gray-300 mb-2">Descrição Completa</label>
|
|
<textarea
|
|
value={formData.fullDescription}
|
|
onChange={(e) => setFormData({...formData, fullDescription: e.target.value})}
|
|
rows={6}
|
|
className="w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-xl text-gray-900 dark:text-white focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary transition-all resize-none"
|
|
placeholder="Detalhamento completo do serviço..."
|
|
></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end gap-4 pt-4">
|
|
<Link
|
|
href="/admin/servicos"
|
|
className="px-8 py-3 border border-gray-200 dark:border-white/10 text-gray-600 dark:text-gray-300 rounded-xl font-bold hover:bg-gray-50 dark:hover:bg-white/5 transition-colors"
|
|
>
|
|
Cancelar
|
|
</Link>
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="px-8 py-3 bg-primary text-white rounded-xl font-bold hover-primary transition-colors shadow-lg shadow-primary/20 flex items-center gap-2 disabled:opacity-70 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? (
|
|
<>
|
|
<i className="ri-loader-4-line animate-spin"></i>
|
|
Salvando...
|
|
</>
|
|
) : (
|
|
<>
|
|
<i className="ri-save-line"></i>
|
|
Salvar Serviço
|
|
</>
|
|
)}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|