mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 13:27:21 +08:00 
			
		
		
		
	* up max char count for variant name to fix https://github.com/owncast/owncast/issues/1037 * max widthing the line chart canvas size so it scales with the page. fixes - https://github.com/owncast/owncast/issues/842 - https://github.com/owncast/owncast/issues/1024 * A fix to make Storage Endpoint URL validation have better feedback. - give the field a type of "url" - give the field a pattern to check - have native browser handle the validation - if the field is invalid, use :invalid selector to turn the text red on blur. fixes: https://github.com/owncast/owncast/issues/1000 * a fix for https://github.com/owncast/owncast/issues/874 * - fixes for https://github.com/owncast/owncast/issues/972 Add optional prop to text field to trim() whitespaces from field. Apply logic to mostly url fields. - move textfield blur if invalid turn red to globaal * - a fix for bug: https://github.com/owncast/owncast/issues/998 don't return null if platform name not found because its custom. - clean up react key problem on socialhandles table * fix react key issue on Actions table * fix for https://github.com/owncast/owncast/issues/1008 to display 'other' field when editing an item not in predefined social list * clean up other potential react key warnings * Prettified Code! Co-authored-by: gingervitis <gingervitis@users.noreply.github.com>
		
			
				
	
	
		
			112 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BulbOutlined, LaptopOutlined, SaveOutlined } from '@ant-design/icons';
 | 
						|
import { Row, Col, Typography } from 'antd';
 | 
						|
import React, { useEffect, useState } from 'react';
 | 
						|
import { fetchData, FETCH_INTERVAL, HARDWARE_STATS } from '../utils/apis';
 | 
						|
import Chart from '../components/chart';
 | 
						|
import StatisticItem from '../components/statistic';
 | 
						|
 | 
						|
// TODO: FIX TS WARNING FROM THIS.
 | 
						|
// interface TimedValue {
 | 
						|
//   time: Date;
 | 
						|
//   value: Number;
 | 
						|
// }
 | 
						|
 | 
						|
export default function HardwareInfo() {
 | 
						|
  const [hardwareStatus, setHardwareStatus] = useState({
 | 
						|
    cpu: [], // Array<TimedValue>(),
 | 
						|
    memory: [], // Array<TimedValue>(),
 | 
						|
    disk: [], // Array<TimedValue>(),
 | 
						|
    message: '',
 | 
						|
  });
 | 
						|
 | 
						|
  const getHardwareStatus = async () => {
 | 
						|
    try {
 | 
						|
      const result = await fetchData(HARDWARE_STATS);
 | 
						|
      setHardwareStatus({ ...result });
 | 
						|
    } catch (error) {
 | 
						|
      setHardwareStatus({ ...hardwareStatus, message: error.message });
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  useEffect(() => {
 | 
						|
    let getStatusIntervalId = null;
 | 
						|
 | 
						|
    getHardwareStatus();
 | 
						|
    getStatusIntervalId = setInterval(getHardwareStatus, FETCH_INTERVAL); // runs every 1 min.
 | 
						|
 | 
						|
    // returned function will be called on component unmount
 | 
						|
    return () => {
 | 
						|
      clearInterval(getStatusIntervalId);
 | 
						|
    };
 | 
						|
  }, []);
 | 
						|
 | 
						|
  if (!hardwareStatus.cpu) {
 | 
						|
    return null;
 | 
						|
  }
 | 
						|
 | 
						|
  const currentCPUUsage = hardwareStatus.cpu[hardwareStatus.cpu.length - 1]?.value;
 | 
						|
  const currentRamUsage = hardwareStatus.memory[hardwareStatus.memory.length - 1]?.value;
 | 
						|
  const currentDiskUsage = hardwareStatus.disk[hardwareStatus.disk.length - 1]?.value;
 | 
						|
 | 
						|
  const series = [
 | 
						|
    {
 | 
						|
      name: 'CPU',
 | 
						|
      color: '#B63FFF',
 | 
						|
      data: hardwareStatus.cpu,
 | 
						|
    },
 | 
						|
    {
 | 
						|
      name: 'Memory',
 | 
						|
      color: '#2087E2',
 | 
						|
      data: hardwareStatus.memory,
 | 
						|
    },
 | 
						|
    {
 | 
						|
      name: 'Disk',
 | 
						|
      color: '#FF7700',
 | 
						|
      data: hardwareStatus.disk,
 | 
						|
    },
 | 
						|
  ];
 | 
						|
 | 
						|
  return (
 | 
						|
    <>
 | 
						|
      <Typography.Title>Hardware Info</Typography.Title>
 | 
						|
      <br />
 | 
						|
      <div>
 | 
						|
        <Row gutter={[16, 16]} justify="space-around">
 | 
						|
          <Col>
 | 
						|
            <StatisticItem
 | 
						|
              title={series[0].name}
 | 
						|
              value={`${currentCPUUsage || 0}`}
 | 
						|
              prefix={<LaptopOutlined style={{ color: series[0].color }} />}
 | 
						|
              color={series[0].color}
 | 
						|
              progress
 | 
						|
              centered
 | 
						|
            />
 | 
						|
          </Col>
 | 
						|
          <Col>
 | 
						|
            <StatisticItem
 | 
						|
              title={series[1].name}
 | 
						|
              value={`${currentRamUsage || 0}`}
 | 
						|
              prefix={<BulbOutlined style={{ color: series[1].color }} />}
 | 
						|
              color={series[1].color}
 | 
						|
              progress
 | 
						|
              centered
 | 
						|
            />
 | 
						|
          </Col>
 | 
						|
          <Col>
 | 
						|
            <StatisticItem
 | 
						|
              title={series[2].name}
 | 
						|
              value={`${currentDiskUsage || 0}`}
 | 
						|
              prefix={<SaveOutlined style={{ color: series[2].color }} />}
 | 
						|
              color={series[2].color}
 | 
						|
              progress
 | 
						|
              centered
 | 
						|
            />
 | 
						|
          </Col>
 | 
						|
        </Row>
 | 
						|
 | 
						|
        <Chart title="% used" dataCollections={series} color="#FF7700" unit="%" />
 | 
						|
      </div>
 | 
						|
    </>
 | 
						|
  );
 | 
						|
}
 |