NetworkInfo Kompoente von dashboard.tsx incomponents ausgelagert
This commit is contained in:
@@ -16,7 +16,8 @@ import {
|
||||
setOpcUaNodesetName,
|
||||
} from "../redux/slices/variablesSlice";
|
||||
import webVersion from "../config/webVersion";
|
||||
import Last20MessagesTable from "../components/main/uebersicht/last20MessagesTable/Last20MessagesTable";
|
||||
import Last20MessagesTable from "../components/main/uebersicht/Last20MessagesTable";
|
||||
import NetworkInfo from "../components/main/uebersicht/NetworkInfo";
|
||||
|
||||
function Dashboard() {
|
||||
const router = useRouter();
|
||||
@@ -197,52 +198,7 @@ function Dashboard() {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex-shrink-0 flex justify-between items-center mt-1 bg-white p-2 rounded-lg shadow-md border border-gray-200 laptop:m-0 laptop:scale-y-75">
|
||||
<div className="flex items-center space-x-4">
|
||||
<img src="/images/IP-icon.svg" alt="IP Address" className="w-6 " />
|
||||
<div>
|
||||
<p className="text-xs text-gray-500">IP-Adresse</p>
|
||||
<p className="text-sm font-medium text-gray-700">{ip}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center space-x-4">
|
||||
<img
|
||||
src="/images/subnet-mask.svg"
|
||||
alt="subnet mask"
|
||||
className="w-6 "
|
||||
/>
|
||||
<div>
|
||||
<p className="text-xs text-gray-500">Subnet-Maske</p>
|
||||
<p className="text-sm font-medium text-gray-700">{subnet}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex items-center space-x-4">
|
||||
<img src="/images/gateway.svg" alt="gateway" className="w-6 " />
|
||||
<div>
|
||||
<p className="text-xs text-gray-500">Gateway</p>
|
||||
<p className="text-sm font-medium text-gray-700">{gateway}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center space-x-4">
|
||||
<div className="text-xs font-bold text-blue-600">OPC-UA</div>
|
||||
|
||||
<div>
|
||||
<p className="text-xs text-gray-500">Status</p>
|
||||
<p className="text-sm font-medium text-gray-700">{opcUaZustand}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center space-x-4">
|
||||
<div>
|
||||
<p className="text-xs text-gray-500">Nodeset Name</p>
|
||||
<p className="text-sm font-medium text-gray-700">
|
||||
{opcUaNodesetName}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<NetworkInfo />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user