add AnnealFanFrequence
This commit is contained in:
		
							
								
								
									
										208
									
								
								src/components/Common/AnnealFanRunFrequence/index.jsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										208
									
								
								src/components/Common/AnnealFanRunFrequence/index.jsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,208 @@
 | 
			
		||||
// AnnealFanRunFrequence
 | 
			
		||||
import cls from "./index.module.css";
 | 
			
		||||
import * as echarts from "echarts";
 | 
			
		||||
import GraphBase from "../GraphBase";
 | 
			
		||||
import { useEffect, useState } from "react";
 | 
			
		||||
import { useSelector } from "react-redux";
 | 
			
		||||
 | 
			
		||||
function WindFrequence(props) {
 | 
			
		||||
  const [showChart, setShowChart] = useState(false);
 | 
			
		||||
  const [currentLine, setCurrentLine] = useState([]);
 | 
			
		||||
  const runState = useSelector((state) => state.annealFanFrequence.runtime);
 | 
			
		||||
  const hisState = useSelector((state) => state.annealFanFrequence.history);
 | 
			
		||||
 | 
			
		||||
  let dataList = [];
 | 
			
		||||
  let seriesData = [];
 | 
			
		||||
  const colors = [
 | 
			
		||||
    "#12FFF5",
 | 
			
		||||
    "#2760FF",
 | 
			
		||||
    "#FFD160",
 | 
			
		||||
    "#E80091",
 | 
			
		||||
    "#8064ff",
 | 
			
		||||
    "#ff8a3b",
 | 
			
		||||
    "#8cd26d",
 | 
			
		||||
    "#2aa1ff",
 | 
			
		||||
  ];
 | 
			
		||||
  let options = null;
 | 
			
		||||
  if (showChart) {
 | 
			
		||||
    // keys() 结果不是按照顺序,需要 sort()
 | 
			
		||||
    seriesData =
 | 
			
		||||
      hisState != null
 | 
			
		||||
        ? Object.keys(hisState)
 | 
			
		||||
            .sort()
 | 
			
		||||
            .map((key) => hisState[key])
 | 
			
		||||
        : Array(8)
 | 
			
		||||
            .fill(1)
 | 
			
		||||
            .map((_) => Array(7).fill(0));
 | 
			
		||||
 | 
			
		||||
    options = {
 | 
			
		||||
      color: colors,
 | 
			
		||||
      grid: { top: 32, right: 12, bottom: 20, left: 48 },
 | 
			
		||||
      xAxis: {
 | 
			
		||||
        type: "category",
 | 
			
		||||
        data: Array(7)
 | 
			
		||||
          .fill(1)
 | 
			
		||||
          .map((_, index) => {
 | 
			
		||||
            const today = new Date();
 | 
			
		||||
            const dtimestamp = today - index * 24 * 60 * 60 * 1000;
 | 
			
		||||
            return `${new Date(dtimestamp).getMonth() + 1}.${new Date(
 | 
			
		||||
              dtimestamp
 | 
			
		||||
            ).getDate()}`;
 | 
			
		||||
          })
 | 
			
		||||
          .reverse(),
 | 
			
		||||
        axisLabel: {
 | 
			
		||||
          color: "#fff",
 | 
			
		||||
          fontSize: 12,
 | 
			
		||||
        },
 | 
			
		||||
        axisTick: { show: false },
 | 
			
		||||
        axisLine: {
 | 
			
		||||
          lineStyle: {
 | 
			
		||||
            width: 1,
 | 
			
		||||
            color: "#213259",
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
      },
 | 
			
		||||
      yAxis: {
 | 
			
		||||
        name: "单位/m³",
 | 
			
		||||
        nameTextStyle: {
 | 
			
		||||
          color: "#fff",
 | 
			
		||||
          fontSize: 10,
 | 
			
		||||
          align: "right",
 | 
			
		||||
        },
 | 
			
		||||
        type: "value",
 | 
			
		||||
        axisLabel: {
 | 
			
		||||
          color: "#fff",
 | 
			
		||||
          fontSize: 12,
 | 
			
		||||
        },
 | 
			
		||||
        axisLine: {
 | 
			
		||||
          show: true,
 | 
			
		||||
          lineStyle: {
 | 
			
		||||
            color: "#213259",
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        splitLine: {
 | 
			
		||||
          lineStyle: {
 | 
			
		||||
            color: "#213259a0",
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        // interval: 10,
 | 
			
		||||
        // min: 0,
 | 
			
		||||
        // max: 100,
 | 
			
		||||
      },
 | 
			
		||||
      series: seriesData.map((v, i) => ({
 | 
			
		||||
        name: i + 1 + "#风机",
 | 
			
		||||
        data: v,
 | 
			
		||||
        type: "line",
 | 
			
		||||
        symbol: "circle",
 | 
			
		||||
        areaStyle: {
 | 
			
		||||
          color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
 | 
			
		||||
            // i % 8 避免超过8个数据时无颜色的问题
 | 
			
		||||
            { offset: 0, color: colors[i % 8] + "40" },
 | 
			
		||||
            { offset: 0.5, color: colors[i % 8] + "20" },
 | 
			
		||||
            { offset: 1, color: colors[i % 8] + "00" },
 | 
			
		||||
          ]),
 | 
			
		||||
        },
 | 
			
		||||
      })),
 | 
			
		||||
      tooltip: {
 | 
			
		||||
        trigger: "axis",
 | 
			
		||||
      },
 | 
			
		||||
    };
 | 
			
		||||
  } else {
 | 
			
		||||
    dataList =
 | 
			
		||||
      runState != null
 | 
			
		||||
        ? Object.keys(runState).map((fan) => ({
 | 
			
		||||
            id: Math.random(),
 | 
			
		||||
            name: fan,
 | 
			
		||||
            value: runState[fan],
 | 
			
		||||
          }))
 | 
			
		||||
        : [
 | 
			
		||||
            { id: 1, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            // { id: 133, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            // { id: 134, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            // { id: 1344, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            // { id: 51, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            // { id: 1534, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            // { id: 154, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            // { id: 153, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            // { id: 111, name: "1#风机#1", value: "0m³/h" },
 | 
			
		||||
            { id: 2, name: "2#风机#1", value: "0m³/h" },
 | 
			
		||||
            { id: 3, name: "3#风机#1", value: "0m³/h" },
 | 
			
		||||
            { id: 4, name: "4#风机#1", value: "0m³/h" },
 | 
			
		||||
            { id: 5, name: "5#风机#1", value: "0m³/h" },
 | 
			
		||||
            { id: 11, name: "1#风机#2", value: "0m³/h" },
 | 
			
		||||
            { id: 12, name: "2#风机#2", value: "0m³/h" },
 | 
			
		||||
            { id: 13, name: "3#风机#2", value: "0m³/h" },
 | 
			
		||||
            { id: 14, name: "4#风机#2", value: "0m³/h" },
 | 
			
		||||
            { id: 15, name: "5#风机#2", value: "0m³/h" },
 | 
			
		||||
          ];
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  function handleSwitchChange(val) {
 | 
			
		||||
    if (val) {
 | 
			
		||||
      setShowChart(true);
 | 
			
		||||
    } else {
 | 
			
		||||
      setShowChart(false);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    if (!showChart) {
 | 
			
		||||
      setCurrentLine((old) =>
 | 
			
		||||
        dataList.filter((item) => item?.name.startsWith("1#"))
 | 
			
		||||
      );
 | 
			
		||||
    }
 | 
			
		||||
  }, [showChart]);
 | 
			
		||||
 | 
			
		||||
  function handleLineChange(line) {
 | 
			
		||||
    const lineNum = line[0];
 | 
			
		||||
    setCurrentLine((old) =>
 | 
			
		||||
      dataList.filter((item) => item?.name.startsWith(`${lineNum}#`))
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <GraphBase
 | 
			
		||||
      icon="kiln"
 | 
			
		||||
      title="风机运行频率"
 | 
			
		||||
      size={["middle", "long"]}
 | 
			
		||||
      switchOptions={false}
 | 
			
		||||
      switchPosition={[null, 200]} // [top, left]
 | 
			
		||||
      onSwitch={handleSwitchChange}
 | 
			
		||||
      dateOptions={["1线", "2线", "3线", "4线", "5线"]}
 | 
			
		||||
      onDateChange={handleLineChange}
 | 
			
		||||
    >
 | 
			
		||||
      <div className={cls.chart} style={{ marginTop: "24px" }}>
 | 
			
		||||
        {/* {showChart && (
 | 
			
		||||
          <ReactECharts option={options} style={{ height: "100%" }} />
 | 
			
		||||
        )} */}
 | 
			
		||||
        {!showChart && (
 | 
			
		||||
          <div className={cls.gridList}>
 | 
			
		||||
            {currentLine.map((item) => (
 | 
			
		||||
              <div
 | 
			
		||||
                key={item.id}
 | 
			
		||||
                className={cls.listItem}
 | 
			
		||||
                style={{ padding: props.stretch ? "20px 0" : "" }}
 | 
			
		||||
              >
 | 
			
		||||
                <span className={cls.fanName}>{item.name}</span>
 | 
			
		||||
                <span
 | 
			
		||||
                  className={cls.fanValue}
 | 
			
		||||
                  style={{
 | 
			
		||||
                    fontWeight: 700,
 | 
			
		||||
                    letterSpacing: 1,
 | 
			
		||||
                    fontSize: 16,
 | 
			
		||||
                    // color: "#e03537",
 | 
			
		||||
                    color: "#24aebb",
 | 
			
		||||
                  }}
 | 
			
		||||
                >
 | 
			
		||||
                  {item.value}
 | 
			
		||||
                </span>
 | 
			
		||||
              </div>
 | 
			
		||||
            ))}
 | 
			
		||||
          </div>
 | 
			
		||||
        )}
 | 
			
		||||
      </div>
 | 
			
		||||
    </GraphBase>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default WindFrequence;
 | 
			
		||||
							
								
								
									
										52
									
								
								src/components/Common/AnnealFanRunFrequence/index.module.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										52
									
								
								src/components/Common/AnnealFanRunFrequence/index.module.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,52 @@
 | 
			
		||||
.chart {
 | 
			
		||||
  height: 100%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.gridList {
 | 
			
		||||
  margin-top: 12px;
 | 
			
		||||
  display: grid;
 | 
			
		||||
  grid-template-columns: 1fr 1fr;
 | 
			
		||||
  /* grid-auto-row: ; */
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.listItem {
 | 
			
		||||
  border-radius: 2px;
 | 
			
		||||
  padding: 10px 0;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
  color: #fff;
 | 
			
		||||
  box-shadow: inset 0 0 16px 4px rgba(255, 255, 255, 0.197);
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  gap: 12px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.headWidget {
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  top: 22px;
 | 
			
		||||
  right: 24px;
 | 
			
		||||
  height: 32px;
 | 
			
		||||
  width: 410px;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  justify-content: flex-start;
 | 
			
		||||
  color: #fff;
 | 
			
		||||
}
 | 
			
		||||
.relative {
 | 
			
		||||
  position: relative;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.flex {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.fanName {
 | 
			
		||||
  text-align: right;
 | 
			
		||||
  flex: 7;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.fanValue {
 | 
			
		||||
  flex: 3;
 | 
			
		||||
  text-align: left;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										187
									
								
								src/components/Common/FanRunFrequence copy/index.jsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										187
									
								
								src/components/Common/FanRunFrequence copy/index.jsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,187 @@
 | 
			
		||||
// FanRunFrequence
 | 
			
		||||
import cls from "./index.module.css";
 | 
			
		||||
import * as echarts from "echarts";
 | 
			
		||||
import GraphBase from "../GraphBase";
 | 
			
		||||
import { useState } from "react";
 | 
			
		||||
import { useSelector } from "react-redux";
 | 
			
		||||
 | 
			
		||||
function WindFrequence(props) {
 | 
			
		||||
  const [showChart, setShowChart] = useState(false);
 | 
			
		||||
  const runState = useSelector((state) => state.fanFrequence.runtime);
 | 
			
		||||
  const hisState = useSelector((state) => state.fanFrequence.history);
 | 
			
		||||
 | 
			
		||||
  let dataList = [];
 | 
			
		||||
  let seriesData = [];
 | 
			
		||||
  const colors = [
 | 
			
		||||
    "#12FFF5",
 | 
			
		||||
    "#2760FF",
 | 
			
		||||
    "#FFD160",
 | 
			
		||||
    "#E80091",
 | 
			
		||||
    "#8064ff",
 | 
			
		||||
    "#ff8a3b",
 | 
			
		||||
    "#8cd26d",
 | 
			
		||||
    "#2aa1ff",
 | 
			
		||||
  ];
 | 
			
		||||
  let options = null;
 | 
			
		||||
  if (showChart) {
 | 
			
		||||
    // keys() 结果不是按照顺序,需要 sort()
 | 
			
		||||
    seriesData =
 | 
			
		||||
      hisState != null
 | 
			
		||||
        ? Object.keys(hisState)
 | 
			
		||||
            .sort()
 | 
			
		||||
            .map((key) => hisState[key])
 | 
			
		||||
        : Array(8)
 | 
			
		||||
            .fill(1)
 | 
			
		||||
            .map((_) => Array(7).fill(0));
 | 
			
		||||
 | 
			
		||||
    options = {
 | 
			
		||||
      color: colors,
 | 
			
		||||
      grid: { top: 32, right: 12, bottom: 20, left: 48 },
 | 
			
		||||
      xAxis: {
 | 
			
		||||
        type: "category",
 | 
			
		||||
        data: Array(7)
 | 
			
		||||
          .fill(1)
 | 
			
		||||
          .map((_, index) => {
 | 
			
		||||
            const today = new Date();
 | 
			
		||||
            const dtimestamp = today - index * 24 * 60 * 60 * 1000;
 | 
			
		||||
            return `${new Date(dtimestamp).getMonth() + 1}.${new Date(
 | 
			
		||||
              dtimestamp
 | 
			
		||||
            ).getDate()}`;
 | 
			
		||||
          })
 | 
			
		||||
          .reverse(),
 | 
			
		||||
        axisLabel: {
 | 
			
		||||
          color: "#fff",
 | 
			
		||||
          fontSize: 12,
 | 
			
		||||
        },
 | 
			
		||||
        axisTick: { show: false },
 | 
			
		||||
        axisLine: {
 | 
			
		||||
          lineStyle: {
 | 
			
		||||
            width: 1,
 | 
			
		||||
            color: "#213259",
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
      },
 | 
			
		||||
      yAxis: {
 | 
			
		||||
        name: "单位/m³",
 | 
			
		||||
        nameTextStyle: {
 | 
			
		||||
          color: "#fff",
 | 
			
		||||
          fontSize: 10,
 | 
			
		||||
          align: "right",
 | 
			
		||||
        },
 | 
			
		||||
        type: "value",
 | 
			
		||||
        axisLabel: {
 | 
			
		||||
          color: "#fff",
 | 
			
		||||
          fontSize: 12,
 | 
			
		||||
        },
 | 
			
		||||
        axisLine: {
 | 
			
		||||
          show: true,
 | 
			
		||||
          lineStyle: {
 | 
			
		||||
            color: "#213259",
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        splitLine: {
 | 
			
		||||
          lineStyle: {
 | 
			
		||||
            color: "#213259a0",
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        // interval: 10,
 | 
			
		||||
        // min: 0,
 | 
			
		||||
        // max: 100,
 | 
			
		||||
      },
 | 
			
		||||
      series: seriesData.map((v, i) => ({
 | 
			
		||||
        name: i + 1 + "#风机",
 | 
			
		||||
        data: v,
 | 
			
		||||
        type: "line",
 | 
			
		||||
        symbol: "circle",
 | 
			
		||||
        areaStyle: {
 | 
			
		||||
          color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
 | 
			
		||||
            // i % 8 避免超过8个数据时无颜色的问题
 | 
			
		||||
            { offset: 0, color: colors[i % 8] + "40" },
 | 
			
		||||
            { offset: 0.5, color: colors[i % 8] + "20" },
 | 
			
		||||
            { offset: 1, color: colors[i % 8] + "00" },
 | 
			
		||||
          ]),
 | 
			
		||||
        },
 | 
			
		||||
      })),
 | 
			
		||||
      tooltip: {
 | 
			
		||||
        trigger: "axis",
 | 
			
		||||
      },
 | 
			
		||||
    };
 | 
			
		||||
  } else {
 | 
			
		||||
    dataList =
 | 
			
		||||
      runState != null
 | 
			
		||||
        ? Object.keys(runState).map((fan) => ({
 | 
			
		||||
            id: Math.random(),
 | 
			
		||||
            name: fan,
 | 
			
		||||
            value: runState[fan],
 | 
			
		||||
          }))
 | 
			
		||||
        : [
 | 
			
		||||
            { id: 1, name: "1#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 2, name: "2#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 3, name: "3#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 4, name: "4#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 5, name: "5#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 6, name: "6#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 7, name: "7#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 8, name: "8#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 9, name: "9#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 10, name: "10#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 11, name: "11#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 12, name: "12#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 13, name: "13#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 14, name: "14#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 15, name: "15#风机", value: "0m³/h" },
 | 
			
		||||
            { id: 16, name: "16#风机", value: "0m³/h" },
 | 
			
		||||
          ];
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  function handleSwitchChange(val) {
 | 
			
		||||
    if (val) {
 | 
			
		||||
      setShowChart(true);
 | 
			
		||||
    } else {
 | 
			
		||||
      setShowChart(false);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  return (
 | 
			
		||||
    <GraphBase
 | 
			
		||||
      icon="kiln"
 | 
			
		||||
      title="风机运行频率"
 | 
			
		||||
      size={["middle", "long"]}
 | 
			
		||||
      switchOptions={false}
 | 
			
		||||
      switchPosition={[null, 200]} // [top, left]
 | 
			
		||||
      onSwitch={handleSwitchChange}
 | 
			
		||||
    >
 | 
			
		||||
      <div className={cls.chart}>
 | 
			
		||||
        {/* {showChart && (
 | 
			
		||||
          <ReactECharts option={options} style={{ height: "100%" }} />
 | 
			
		||||
        )} */}
 | 
			
		||||
        {!showChart && (
 | 
			
		||||
          <div className={cls.gridList}>
 | 
			
		||||
            {dataList.map((item) => (
 | 
			
		||||
              <div
 | 
			
		||||
                key={item.id}
 | 
			
		||||
                className={cls.listItem}
 | 
			
		||||
                style={{ padding: props.stretch ? "16px 0" : "" }}
 | 
			
		||||
              >
 | 
			
		||||
                <span className={cls.fanName}>{item.name}</span>
 | 
			
		||||
                <span
 | 
			
		||||
                  className={cls.fanValue}
 | 
			
		||||
                  style={{
 | 
			
		||||
                    fontWeight: 700,
 | 
			
		||||
                    letterSpacing: 1,
 | 
			
		||||
                    fontSize: 16,
 | 
			
		||||
                    // color: "#e03537",
 | 
			
		||||
                    color: "#24aebb",
 | 
			
		||||
                  }}
 | 
			
		||||
                >
 | 
			
		||||
                  {item.value}
 | 
			
		||||
                </span>
 | 
			
		||||
              </div>
 | 
			
		||||
            ))}
 | 
			
		||||
          </div>
 | 
			
		||||
        )}
 | 
			
		||||
      </div>
 | 
			
		||||
    </GraphBase>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default WindFrequence;
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
import React from 'react';
 | 
			
		||||
import CurrentTemp from '../../../Common/CurrentTemp';
 | 
			
		||||
import WindFrequence from '../../../Common/FanRunFrequence';
 | 
			
		||||
import WindFrequence from '../../../Common/AnnealFanRunFrequence';
 | 
			
		||||
 | 
			
		||||
import { motion } from 'framer-motion';
 | 
			
		||||
 | 
			
		||||
@@ -19,7 +19,7 @@ export default function index() {
 | 
			
		||||
				<CurrentTemp style={{ width: '100%' }} />
 | 
			
		||||
			</div>
 | 
			
		||||
			<div style={{ flex: 1, marginTop: '24px', width: '100%' }}>
 | 
			
		||||
				<WindFrequence />
 | 
			
		||||
				<WindFrequence stretch={true} />
 | 
			
		||||
			</div>
 | 
			
		||||
		</motion.div>
 | 
			
		||||
	);
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										87
									
								
								src/store/features/annealFanFrequenceSlice.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								src/store/features/annealFanFrequenceSlice.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,87 @@
 | 
			
		||||
// 风机运行频率
 | 
			
		||||
import { createSlice } from "@reduxjs/toolkit";
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 由于接口并没有经过合理的评审,所以这里的数据结构是不确定的,需要根据实际情况进行调整
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
export const initialState = {
 | 
			
		||||
  history: {
 | 
			
		||||
    // 历史数据
 | 
			
		||||
    FLIIA1: [
 | 
			
		||||
      // 帮我生成7个随机整数
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    // 帮我重复上面的模式十次
 | 
			
		||||
    FLIIA2: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    FLIIA3: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    FLIIA4: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    FLIIA5: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    FLIIA6: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    FLIIA7: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    FLIIA8: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    FLIIB1: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
    FLIIB2: [
 | 
			
		||||
      ...Array.from({ length: 7 }, () => Math.floor(Math.random() * 100)),
 | 
			
		||||
    ],
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  // runtime: [
 | 
			
		||||
  //   // 实时数据
 | 
			
		||||
  //   ...Array.from(
 | 
			
		||||
  //     { length: 16 },
 | 
			
		||||
  //     () => Math.floor(Math.random() * 100) + "m³/h"
 | 
			
		||||
  //   ),
 | 
			
		||||
  // ],
 | 
			
		||||
  runtime: null,
 | 
			
		||||
  // runtime: {
 | 
			
		||||
  //   "1#10处拐角冷却风机": "0",
 | 
			
		||||
  //   "1#L型吊墙冷却风机": "0",
 | 
			
		||||
  //   "1#助燃风机": "0",
 | 
			
		||||
  //   "1#澄清带池壁风机": "0",
 | 
			
		||||
  //   "1#融化带池壁风机": "0",
 | 
			
		||||
  //   "1#钢碹碴小炉垛风机": "0",
 | 
			
		||||
  //   "2#10处拐角冷却风机": "0",
 | 
			
		||||
  //   "2#L型吊墙冷却风机": "0",
 | 
			
		||||
  //   "2#助燃风机": "0",
 | 
			
		||||
  //   "2#澄清带池壁风机": "0",
 | 
			
		||||
  //   "2#融化带池壁风机": "0",
 | 
			
		||||
  //   "2#钢碹碴小炉垛风机": "0",
 | 
			
		||||
  //   "3#澄清带池壁风机": "0",
 | 
			
		||||
  //   "3#融化带池壁风机": "0",
 | 
			
		||||
  //   "4#澄清带池壁风机": "0",
 | 
			
		||||
  //   "4#融化带池壁风机": "0",
 | 
			
		||||
  // },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const annealFanFrequenceSlice = createSlice({
 | 
			
		||||
  name: "annealFanFrequence",
 | 
			
		||||
  initialState,
 | 
			
		||||
  reducers: {
 | 
			
		||||
    setHistory: (state, action) => {
 | 
			
		||||
      state.history = action.payload;
 | 
			
		||||
    },
 | 
			
		||||
    setRuntime: (state, action) => {
 | 
			
		||||
      state.runtime = action.payload;
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
export default annealFanFrequenceSlice.reducer;
 | 
			
		||||
export const { setHistory, setRuntime } = annealFanFrequenceSlice.actions;
 | 
			
		||||
@@ -8,6 +8,7 @@ import gasReducer from "./features/gasSlice";
 | 
			
		||||
import temperatureReducer from "./features/temperatureSlice";
 | 
			
		||||
import fanInfoReducer from "./features/fanInfo";
 | 
			
		||||
import energySlice from "./features/EnergySlice";
 | 
			
		||||
import annealFanFrequenceReducer from "./features/annealFanFrequenceSlice";
 | 
			
		||||
 | 
			
		||||
export const store = configureStore({
 | 
			
		||||
  reducer: {
 | 
			
		||||
@@ -21,6 +22,8 @@ export const store = configureStore({
 | 
			
		||||
    fanInfo: fanInfoReducer,
 | 
			
		||||
    // 风机运行频率
 | 
			
		||||
    fanFrequence: fanFrequenceReducer,
 | 
			
		||||
    // 风机运行频率
 | 
			
		||||
    annealFanFrequence: annealFanFrequenceReducer,
 | 
			
		||||
    // 天然气流量
 | 
			
		||||
    natGas: gasReducer,
 | 
			
		||||
    // 助燃风流量
 | 
			
		||||
 
 | 
			
		||||
@@ -93,6 +93,14 @@ new XClient(
 | 
			
		||||
        // 风机运行频率 历史 暂无
 | 
			
		||||
        break;
 | 
			
		||||
      }
 | 
			
		||||
      case "AnnealFanFrequencyInfo": {
 | 
			
		||||
        // 退火页面,风机运行频率 暂时只有实时数据
 | 
			
		||||
        store.dispatch({
 | 
			
		||||
          type: "annealFanFrequence/setRuntime",
 | 
			
		||||
          payload: serializedData.data.AnnealFanFrequencyInfo,
 | 
			
		||||
        });
 | 
			
		||||
        break;
 | 
			
		||||
      }
 | 
			
		||||
      case "TopTempInfo": {
 | 
			
		||||
        // 碹顶温度列表
 | 
			
		||||
        store.dispatch({
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user