mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 15:36:50 +00:00
111 lines
4.9 KiB
TypeScript
111 lines
4.9 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import axios from "axios";
|
|
import ErrorToast from "@/components/Error";
|
|
import SuccessToast from "@/components/Success";
|
|
import { Building2, MapPin, FileText } from "lucide-react";
|
|
|
|
interface AddSiteProps {
|
|
onSiteAdded?: () => void;
|
|
}
|
|
|
|
export default function AddSite({ onSiteAdded }: AddSiteProps) {
|
|
const [name, setName] = useState("");
|
|
const [description, setDescription] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [success, setSuccess] = useState("");
|
|
|
|
const addSite = async () => {
|
|
try {
|
|
const response = await axios.post("/api/sites/add", { name, description });
|
|
if (response.status === 201) {
|
|
const site = response.data.site;
|
|
if (site) {
|
|
setName("");
|
|
setDescription("");
|
|
setSuccess("Site added successfully");
|
|
|
|
document.getElementById('add_site')?.querySelector('form')?.dispatchEvent(
|
|
new Event('submit', { cancelable: true })
|
|
);
|
|
|
|
if (onSiteAdded) {
|
|
onSiteAdded();
|
|
}
|
|
} else {
|
|
setError("No site received");
|
|
}
|
|
}
|
|
} catch (error: any) {
|
|
setError(error.response.data.error);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<dialog id="add_site" className="modal">
|
|
<div className="modal-box w-11/12 max-w-3xl border-l-4 border-success">
|
|
<div className="flex items-center gap-3 mb-3">
|
|
<div className="bg-success text-success-content rounded-full p-2 flex items-center justify-center">
|
|
<Building2 className="h-6 w-6" />
|
|
</div>
|
|
<h3 className="font-bold text-xl">Add New Site</h3>
|
|
</div>
|
|
|
|
<div className="bg-base-200 p-4 rounded-lg mb-4">
|
|
<div className="space-y-4">
|
|
<div className="form-control">
|
|
<label className="label">
|
|
<div className="flex items-center gap-2">
|
|
<MapPin className="h-4 w-4 opacity-70" />
|
|
<span className="label-text font-medium">Site Name</span>
|
|
</div>
|
|
</label>
|
|
<input
|
|
type="text"
|
|
className="input input-bordered w-full"
|
|
placeholder="e.g. Downtown Office"
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div className="form-control">
|
|
<label className="label">
|
|
<div className="flex items-center gap-2">
|
|
<FileText className="h-4 w-4 opacity-70" />
|
|
<span className="label-text font-medium">Description</span>
|
|
<span className="ml-1 text-xs opacity-60">(optional)</span>
|
|
</div>
|
|
</label>
|
|
<textarea
|
|
className="textarea textarea-bordered w-full"
|
|
placeholder="Enter a brief description of this site..."
|
|
rows={4}
|
|
value={description}
|
|
onChange={(e) => setDescription(e.target.value)}
|
|
></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="modal-action">
|
|
<form method="dialog" className="flex gap-3 w-full justify-end">
|
|
<button className="btn btn-outline">Cancel</button>
|
|
<button
|
|
className="btn btn-success text-success-content"
|
|
onClick={addSite}
|
|
>
|
|
Add Site
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</dialog>
|
|
<ErrorToast message={error} show={error !== ''} onClose={() => setError('')} />
|
|
<SuccessToast message={success} show={success !== ''} onClose={() => setSuccess('')} />
|
|
</div>
|
|
);
|
|
} |