Updated Dialogues

This commit is contained in:
headlesdev
2025-05-18 20:15:23 +02:00
parent e374ecebe5
commit 4f00b0b532
4 changed files with 186 additions and 89 deletions

View File

@@ -5,6 +5,7 @@ import ErrorToast from "@/components/Error";
import SuccessToast from "@/components/Success";
import useNetworks from "@/hooks/useNetworks";
import { Network } from "@/app/types";
import { PencilLine, Network as NetworkIcon, Globe, Wifi } from "lucide-react";
interface EditNetworkProps {
onNetworkAdded?: () => void;
@@ -21,25 +22,40 @@ export default function EditNetwork({ onNetworkAdded, siteId, network }: EditNet
const [success, setSuccess] = useState("");
const { editNetwork } = useNetworks();
const handleEdit = () => {
editNetwork({
id: network.id,
siteId,
name: editName,
ipv4Subnet: editIpv4Subnet,
ipv6Subnet: editIpv6Subnet,
gateway: editGateway
});
};
return (
<div>
<dialog id="edit_network" className="modal">
<div className="modal-box w-2/3 max-w-2/3">
<div className="flex flex-col gap-4">
<header>
<h3 className="text-2xl font-semibold tracking-tight">Edit Network</h3>
<p className="text-sm text-gray-500 mt-1">Provide details for the network</p>
</header>
<div className="modal-box w-11/12 max-w-3xl border-l-4 border-primary">
<div className="flex items-center gap-3 mb-3">
<div className="bg-primary text-primary-content rounded-full p-2 flex items-center justify-center">
<PencilLine className="h-6 w-6" />
</div>
<h3 className="font-bold text-xl">Edit Network</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">
<span className="label-text font-medium text-base">Network Name</span>
<div className="flex items-center gap-2">
<NetworkIcon className="h-4 w-4 opacity-70" />
<span className="label-text font-medium">Network Name</span>
</div>
</label>
<input
type="text"
className="input input-bordered w-full focus:ring-2"
className="input input-bordered w-full"
placeholder="e.g. VLAN 10"
value={editName}
onChange={(e) => setEditName(e.target.value)}
@@ -48,62 +64,72 @@ export default function EditNetwork({ onNetworkAdded, siteId, network }: EditNet
<div className="form-control">
<label className="label">
<span className="label-text font-medium text-base">
IPv4 Subnet
</span>
<span className="ml-2 text-sm font-normal text-gray-400">(optional)</span>
<div className="flex items-center gap-2">
<Globe className="h-4 w-4 opacity-70" />
<span className="label-text font-medium">IPv4 Subnet</span>
<span className="ml-1 text-xs opacity-60">(optional)</span>
</div>
</label>
<input
type="text"
className="input input-bordered w-full focus:ring-2"
className="input input-bordered w-full"
placeholder="Enter the IPv4 subnet"
value={editIpv4Subnet}
onChange={(e) => setEditIpv4Subnet(e.target.value)}
/>
</div>
<div className="form-control">
<label className="label">
<span className="label-text font-medium text-base">
IPv6 Subnet
</span>
<span className="ml-2 text-sm font-normal text-gray-400">(optional)</span>
<div className="flex items-center gap-2">
<Globe className="h-4 w-4 opacity-70" />
<span className="label-text font-medium">IPv6 Subnet</span>
<span className="ml-1 text-xs opacity-60">(optional)</span>
</div>
</label>
<input
type="text"
className="input input-bordered w-full focus:ring-2"
className="input input-bordered w-full"
placeholder="Enter the IPv6 subnet"
value={editIpv6Subnet}
onChange={(e) => setEditIpv6Subnet(e.target.value)}
/>
</div>
<div className="form-control">
<label className="label">
<span className="label-text font-medium text-base">
Gateway
</span>
<span className="ml-2 text-sm font-normal text-gray-400">(optional)</span>
<div className="flex items-center gap-2">
<Wifi className="h-4 w-4 opacity-70" />
<span className="label-text font-medium">Gateway</span>
<span className="ml-1 text-xs opacity-60">(optional)</span>
</div>
</label>
<input
type="text"
className="input input-bordered w-full focus:ring-2"
className="input input-bordered w-full"
placeholder="Enter the gateway"
value={ editGateway}
value={editGateway}
onChange={(e) => setEditGateway(e.target.value)}
/>
</div>
</div>
</div>
<div className="modal-action flex justify-end">
<form method="dialog" className="flex gap-3">
<button className="btn btn-ghost">Cancel</button>
<button className="btn btn-primary px-6" onClick={() => editNetwork({ id: network.id, siteId, name: editName, ipv4Subnet: editIpv4Subnet, ipv6Subnet: editIpv6Subnet, gateway: editGateway })}>Edit Network</button>
</form>
</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-primary"
onClick={handleEdit}
>
Save Changes
</button>
</form>
</div>
</div>
</dialog>
<ErrorToast message={error} show={error !== ''} onClose={() => setError('')} />
<SuccessToast message={success} show={success !== ''} onClose={() => setSuccess('')} />
</div>
)
);
}