Files
Atlas/app/dashboard/inventory/new/page.tsx
2025-11-12 20:21:32 +01:00

333 lines
15 KiB
TypeScript

'use client';
import { useState, useEffect } from 'react';
import { useRouter } from 'next/navigation';
import DashboardSidebar from '@/components/DashboardSidebar';
import { useSession } from 'next-auth/react';
import { FiPackage, FiArrowLeft, FiSave } from 'react-icons/fi';
import Link from 'next/link';
export default function NewEquipmentPage() {
const router = useRouter();
const { data: session } = useSession();
const [locations, setLocations] = useState<any[]>([]);
const [projects, setProjects] = useState<any[]>([]);
const [loading, setLoading] = useState(false);
const [error, setError] = useState('');
const [formData, setFormData] = useState({
name: '',
type: 'PRINTER',
brand: '',
model: '',
serialNumber: '',
quantity: 1,
status: 'AVAILABLE',
locationId: '',
projectId: '',
notes: '',
purchaseDate: '',
purchasePrice: '',
minStockLevel: '',
currentStock: '',
});
useEffect(() => {
fetchLocationsAndProjects();
}, []);
const fetchLocationsAndProjects = async () => {
try {
const [locRes, projRes] = await Promise.all([
fetch('/api/locations'),
fetch('/api/projects'),
]);
if (locRes.ok) {
const locData = await locRes.json();
setLocations(locData.locations || []);
}
if (projRes.ok) {
const projData = await projRes.json();
setProjects(projData.projects || []);
}
} catch (err) {
console.error('Error fetching data:', err);
}
};
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setLoading(true);
setError('');
try {
const res = await fetch('/api/inventory', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
...formData,
quantity: parseInt(formData.quantity.toString()),
purchasePrice: formData.purchasePrice ? parseFloat(formData.purchasePrice) : null,
minStockLevel: formData.minStockLevel ? parseInt(formData.minStockLevel.toString()) : null,
currentStock: formData.currentStock ? parseInt(formData.currentStock.toString()) : null,
locationId: formData.locationId || null,
projectId: formData.projectId || null,
}),
});
const data = await res.json();
if (!res.ok) {
throw new Error(data.error || 'Fehler beim Erstellen');
}
alert('Equipment erfolgreich erstellt!');
router.push('/dashboard/inventory');
} catch (err: any) {
setError(err.message);
setLoading(false);
}
};
if (!session) {
return null;
}
return (
<div className="min-h-screen bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900">
<div className="flex">
<DashboardSidebar user={session.user} />
<main className="flex-1 p-8">
<div className="max-w-4xl mx-auto">
<div className="mb-8">
<Link href="/dashboard/inventory" className="text-sm text-gray-400 hover:text-gray-300 mb-2 inline-flex items-center gap-2 transition-colors">
<FiArrowLeft /> Zurück zum Inventar
</Link>
<h2 className="text-3xl font-bold text-white mt-2">Neues Equipment anlegen</h2>
<p className="text-gray-400 mt-1">Equipment zum Inventar hinzufügen</p>
</div>
<form onSubmit={handleSubmit} className="bg-gradient-to-br from-gray-800 to-gray-900 border border-gray-700 rounded-xl shadow-sm p-6 space-y-6">
<div>
<h3 className="text-lg font-semibold text-white mb-4">Grunddaten</h3>
<div className="grid grid-cols-2 gap-4">
<div className="col-span-2">
<label className="block text-sm font-medium text-gray-300 mb-2">Name/Bezeichnung</label>
<input
type="text"
value={formData.name}
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
required
placeholder="z.B. Citizen CX-02 #1"
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent placeholder-gray-500"
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Typ</label>
<select
value={formData.type}
onChange={(e) => setFormData({ ...formData, type: e.target.value })}
required
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
>
<option value="PRINTER">Drucker</option>
<option value="CARPET">Roter Teppich</option>
<option value="VIP_BARRIER">VIP Absperrband</option>
<option value="ACCESSORIES_KIT">Accessoires-Koffer</option>
<option value="PRINTER_PAPER">Druckerpapier</option>
<option value="TRIPOD">Stativ</option>
<option value="OTHER">Sonstiges</option>
</select>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Status</label>
<select
value={formData.status}
onChange={(e) => setFormData({ ...formData, status: e.target.value })}
required
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
>
<option value="AVAILABLE">Verfügbar</option>
<option value="IN_USE">Im Einsatz</option>
<option value="MAINTENANCE">Wartung</option>
<option value="DAMAGED">Beschädigt</option>
<option value="RESERVED">Reserviert</option>
</select>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Hersteller</label>
<input
type="text"
value={formData.brand}
onChange={(e) => setFormData({ ...formData, brand: e.target.value })}
placeholder="z.B. Citizen"
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent placeholder-gray-500"
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Modell</label>
<input
type="text"
value={formData.model}
onChange={(e) => setFormData({ ...formData, model: e.target.value })}
placeholder="z.B. CX-02"
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent placeholder-gray-500"
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Seriennummer</label>
<input
type="text"
value={formData.serialNumber}
onChange={(e) => setFormData({ ...formData, serialNumber: e.target.value })}
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Anzahl</label>
<input
type="number"
value={formData.quantity}
onChange={(e) => setFormData({ ...formData, quantity: parseInt(e.target.value) })}
required
min="1"
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
/>
</div>
</div>
</div>
<div>
<h3 className="text-lg font-semibold text-white mb-4">Zuordnung</h3>
<div className="grid grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Standort (optional)</label>
<select
value={formData.locationId}
onChange={(e) => setFormData({ ...formData, locationId: e.target.value })}
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
>
<option value="">Kein Standort</option>
{locations.map((loc) => (
<option key={loc.id} value={loc.id}>{loc.name}</option>
))}
</select>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Projekt (optional)</label>
<select
value={formData.projectId}
onChange={(e) => setFormData({ ...formData, projectId: e.target.value })}
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
>
<option value="">Kein Projekt</option>
{projects.map((proj) => (
<option key={proj.id} value={proj.id}>{proj.name}</option>
))}
</select>
</div>
</div>
</div>
<div>
<h3 className="text-lg font-semibold text-white mb-4">Bestandsverwaltung (für Verbrauchsmaterial)</h3>
<div className="grid grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Aktueller Bestand</label>
<input
type="number"
value={formData.currentStock}
onChange={(e) => setFormData({ ...formData, currentStock: e.target.value })}
placeholder="Nur für Verbrauchsmaterial"
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent placeholder-gray-500"
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Mindestbestand</label>
<input
type="number"
value={formData.minStockLevel}
onChange={(e) => setFormData({ ...formData, minStockLevel: e.target.value })}
placeholder="Warnung bei Unterschreitung"
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent placeholder-gray-500"
/>
</div>
</div>
</div>
<div>
<h3 className="text-lg font-semibold text-white mb-4">Kaufinformationen (optional)</h3>
<div className="grid grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Kaufdatum</label>
<input
type="date"
value={formData.purchaseDate}
onChange={(e) => setFormData({ ...formData, purchaseDate: e.target.value })}
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Kaufpreis ()</label>
<input
type="number"
step="0.01"
value={formData.purchasePrice}
onChange={(e) => setFormData({ ...formData, purchasePrice: e.target.value })}
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
/>
</div>
</div>
</div>
<div>
<label className="block text-sm font-medium text-gray-300 mb-2">Notizen</label>
<textarea
value={formData.notes}
onChange={(e) => setFormData({ ...formData, notes: e.target.value })}
rows={4}
className="w-full px-4 py-2 bg-gray-700 border border-gray-600 text-white rounded-lg focus:ring-2 focus:ring-red-500 focus:border-transparent"
/>
</div>
{error && (
<div className="bg-red-500/20 border border-red-500/50 text-red-400 px-4 py-3 rounded-lg">
{error}
</div>
)}
<div className="flex gap-4 pt-4 border-t border-gray-700">
<Link
href="/dashboard/inventory"
className="flex-1 px-4 py-3 bg-gray-700 text-gray-300 rounded-lg font-semibold text-center hover:bg-gray-600 transition-colors"
>
Abbrechen
</Link>
<button
type="submit"
disabled={loading}
className="flex-1 flex items-center justify-center gap-2 px-4 py-3 bg-gradient-to-r from-red-600 to-pink-600 text-white rounded-lg font-semibold hover:from-red-700 hover:to-pink-700 transition-all shadow-lg disabled:opacity-50"
>
<FiSave /> {loading ? 'Wird erstellt...' : 'Equipment anlegen'}
</button>
</div>
</form>
</div>
</main>
</div>
</div>
);
}