Skip to content
Snippets Groups Projects
Unverified Commit 0be4b122 authored by GyDi's avatar GyDi Committed by GitHub
Browse files

feat: reduce gpu usage when hidden

parent 18a6bfd7
No related branches found
No related tags found
No related merge requests found
import { useEffect, useRef } from "react"; import { useEffect, useRef, useState } from "react";
import { useTheme } from "@mui/material"; import { useTheme } from "@mui/material";
import { listen } from "@tauri-apps/api/event";
import { appWindow } from "@tauri-apps/api/window";
const maxPoint = 30; const maxPoint = 30;
...@@ -70,7 +72,28 @@ const TrafficGraph = (props: Props) => { ...@@ -70,7 +72,28 @@ const TrafficGraph = (props: Props) => {
}; };
}, []); }, []);
// reduce the GPU usage when hidden
const [enablePaint, setEnablePaint] = useState(true);
useEffect(() => { useEffect(() => {
appWindow.isVisible().then(setEnablePaint);
const unlistenBlur = listen("tauri://blur", async () => {
setEnablePaint(await appWindow.isVisible());
});
const unlistenFocus = listen("tauri://focus", async () => {
setEnablePaint(await appWindow.isVisible());
});
return () => {
unlistenBlur.then((fn) => fn());
unlistenFocus.then((fn) => fn());
};
}, []);
useEffect(() => {
if (!enablePaint) return;
let raf = 0; let raf = 0;
const canvas = canvasRef.current!; const canvas = canvasRef.current!;
...@@ -193,7 +216,7 @@ const TrafficGraph = (props: Props) => { ...@@ -193,7 +216,7 @@ const TrafficGraph = (props: Props) => {
return () => { return () => {
cancelAnimationFrame(raf); cancelAnimationFrame(raf);
}; };
}, [palette]); }, [enablePaint, palette]);
return <canvas ref={canvasRef} style={{ width: "100%", height: "100%" }} />; return <canvas ref={canvasRef} style={{ width: "100%", height: "100%" }} />;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment