import React, { useEffect, useState } from 'react'; import tw, { TwStyle } from 'twin.macro'; import { faArrowCircleDown, faArrowCircleUp, faCircle, faEthernet, faHdd, faMemory, faMicrochip, faServer, } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { bytesToHuman, formatIp, megabytesToHuman } from '@/helpers'; import TitledGreyBox from '@/components/elements/TitledGreyBox'; import { ServerContext } from '@/state/server'; import CopyOnClick from '@/components/elements/CopyOnClick'; import { SocketEvent, SocketRequest } from '@/components/server/events'; import UptimeDuration from '@/components/server/UptimeDuration'; type Stats = Record<'memory' | 'cpu' | 'disk' | 'uptime' | 'rx' | 'tx', number>; function statusToColor (status: string | null, installing: boolean): TwStyle { if (installing) { status = ''; } switch (status) { case 'offline': return tw`text-red-500`; case 'running': return tw`text-green-500`; default: return tw`text-yellow-500`; } } const ServerDetailsBlock = () => { const [ stats, setStats ] = useState({ memory: 0, cpu: 0, disk: 0, uptime: 0, tx: 0, rx: 0 }); const status = ServerContext.useStoreState(state => state.status.value); const connected = ServerContext.useStoreState(state => state.socket.connected); const instance = ServerContext.useStoreState(state => state.socket.instance); const statsListener = (data: string) => { let stats: any = {}; try { stats = JSON.parse(data); } catch (e) { return; } setStats({ memory: stats.memory_bytes, cpu: stats.cpu_absolute, disk: stats.disk_bytes, tx: stats.network.tx_bytes, rx: stats.network.rx_bytes, uptime: stats.uptime || 0, }); }; useEffect(() => { if (!connected || !instance) { return; } instance.addListener(SocketEvent.STATS, statsListener); instance.send(SocketRequest.SEND_STATS); return () => { instance.removeListener(SocketEvent.STATS, statsListener); }; }, [ instance, connected ]); const name = ServerContext.useStoreState(state => state.server.data!.name); const isInstalling = ServerContext.useStoreState(state => state.server.data!.isInstalling); const isTransferring = ServerContext.useStoreState(state => state.server.data!.isTransferring); const limits = ServerContext.useStoreState(state => state.server.data!.limits); const primaryAllocation = ServerContext.useStoreState(state => state.server.data!.allocations.filter(alloc => alloc.isDefault).map( allocation => (allocation.alias || formatIp(allocation.ip)) + ':' + allocation.port, )).toString(); const diskLimit = limits.disk ? megabytesToHuman(limits.disk) : 'Unlimited'; const memoryLimit = limits.memory ? megabytesToHuman(limits.memory) : 'Unlimited'; const cpuLimit = limits.cpu ? limits.cpu + '%' : 'Unlimited'; return (

 {!status ? 'Connecting...' : (isInstalling ? 'Installing' : (isTransferring) ? 'Transferring' : status)} {stats.uptime > 0 && () }

{primaryAllocation}

{stats.cpu.toFixed(2)}% / {cpuLimit}

{bytesToHuman(stats.memory)} / {memoryLimit}

 {bytesToHuman(stats.disk)} / {diskLimit}

{bytesToHuman(stats.tx)} {bytesToHuman(stats.rx)}

); }; export default ServerDetailsBlock;