VirtWebRemote/remote_frontend/src/widgets/VMLiveScreenshot.tsx

50 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-05-06 19:39:21 +02:00
import React from "react";
import { GroupApi } from "../api/GroupApi";
import { VMGroup } from "../api/ServerApi";
2024-05-06 19:39:21 +02:00
import { VMApi, VMInfo } from "../api/VMApi";
import { useToast } from "../hooks/providers/ToastProvider";
export function VMLiveScreenshot(p: {
vm: VMInfo;
group?: VMGroup;
}): React.ReactElement {
2024-05-06 19:39:21 +02:00
const toast = useToast();
const [screenshotURL, setScreenshotURL] = React.useState<
string | undefined
>();
const int = React.useRef<number | undefined>();
React.useEffect(() => {
const refresh = async () => {
try {
const screenshot = p.group
? await GroupApi.ScreenshotVM(p.group, p.vm)
: await VMApi.Screenshot(p.vm);
2024-05-06 19:39:21 +02:00
const u = URL.createObjectURL(screenshot);
setScreenshotURL(u);
} catch (e) {
console.error(e);
toast(p.vm.name, "Failed to get a screenshot of the VM!", "error");
}
};
if (int.current === undefined) {
refresh();
int.current = setInterval(() => refresh(), 5000);
}
return () => {
if (int.current !== undefined) {
clearInterval(int.current);
int.current = undefined;
}
};
}, [p.vm, toast]);
return (
<img src={screenshotURL} style={{ width: "100%" }} alt="VM screenshot" />
);
}