mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 15:36:50 +00:00
151 lines
6.9 KiB
TypeScript
151 lines
6.9 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import ErrorToast from "@/components/Error";
|
|
import SuccessToast from "@/components/Success";
|
|
import useNetworks from "@/hooks/useNetworks";
|
|
import { PlusCircle, Network as NetworkIcon, Globe, Wifi } from "lucide-react";
|
|
|
|
interface AddNetworkProps {
|
|
onNetworkAdded?: () => void;
|
|
siteId: string;
|
|
}
|
|
|
|
export default function AddNetwork({ onNetworkAdded, siteId }: AddNetworkProps) {
|
|
const [name, setName] = useState("");
|
|
const [ipv4Subnet, setIpv4Subnet] = useState("");
|
|
const [ipv6Subnet, setIpv6Subnet] = useState("");
|
|
const [gateway, setGateway] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [success, setSuccess] = useState("");
|
|
const { addNetwork } = useNetworks();
|
|
|
|
const handleAddNetwork = async () => {
|
|
const response = addNetwork({
|
|
id: "0",
|
|
siteId,
|
|
name,
|
|
ipv4Subnet,
|
|
ipv6Subnet,
|
|
gateway
|
|
});
|
|
if (typeof response === "string") {
|
|
setError(response)
|
|
return
|
|
}
|
|
try {
|
|
const successMessage = await response
|
|
if (onNetworkAdded && successMessage) {
|
|
onNetworkAdded()
|
|
setSuccess("Network added successfully")
|
|
}
|
|
} catch (apiError: any) {
|
|
setError(apiError)
|
|
} finally {
|
|
setName("")
|
|
setIpv4Subnet("")
|
|
setIpv6Subnet("")
|
|
setGateway("")
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<dialog id="add_network" 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">
|
|
<PlusCircle className="h-6 w-6" />
|
|
</div>
|
|
<h3 className="font-bold text-xl">Add New 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">
|
|
<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"
|
|
placeholder="e.g. VLAN 10"
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="form-control">
|
|
<label className="label">
|
|
<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"
|
|
placeholder="Enter the IPv4 subnet"
|
|
value={ipv4Subnet}
|
|
onChange={(e) => setIpv4Subnet(e.target.value)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="form-control">
|
|
<label className="label">
|
|
<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"
|
|
placeholder="Enter the IPv6 subnet"
|
|
value={ipv6Subnet}
|
|
onChange={(e) => setIpv6Subnet(e.target.value)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="form-control">
|
|
<label className="label">
|
|
<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"
|
|
placeholder="Enter the gateway"
|
|
value={gateway}
|
|
onChange={(e) => setGateway(e.target.value)}
|
|
/>
|
|
</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={handleAddNetwork}
|
|
>
|
|
Add Network
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</dialog>
|
|
<ErrorToast message={error} show={error !== ''} onClose={() => setError('')} />
|
|
<SuccessToast message={success} show={success !== ''} onClose={() => setSuccess('')} />
|
|
</div>
|
|
);
|
|
} |