mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
2e91ee843c
Less hasn't received an update in over a year and the parser is missing some modern syntax like relative colors so this switches us to scss
71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
import { Button } from "@/element/button";
|
|
import { atoms, getApi } from "@/store/global";
|
|
import { useAtomValue } from "jotai";
|
|
import { memo, useEffect, useState } from "react";
|
|
import "./updatebanner.scss";
|
|
|
|
const UpdateStatusBannerComponent = ({ buttonRef }: { buttonRef: React.RefObject<HTMLButtonElement> }) => {
|
|
const appUpdateStatus = useAtomValue(atoms.updaterStatusAtom);
|
|
let [updateStatusMessage, setUpdateStatusMessage] = useState<string>();
|
|
const [dismissBannerTimeout, setDismissBannerTimeout] = useState<NodeJS.Timeout>();
|
|
|
|
useEffect(() => {
|
|
let message: string;
|
|
let dismissBanner = false;
|
|
switch (appUpdateStatus) {
|
|
case "ready":
|
|
message = "Update Available";
|
|
break;
|
|
case "downloading":
|
|
message = "Downloading Update";
|
|
break;
|
|
case "installing":
|
|
message = "Installing Update";
|
|
break;
|
|
case "error":
|
|
message = "Updater Error: Try Checking Again";
|
|
dismissBanner = true;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
setUpdateStatusMessage(message);
|
|
|
|
// Clear any existing timeout
|
|
if (dismissBannerTimeout) {
|
|
clearTimeout(dismissBannerTimeout);
|
|
}
|
|
|
|
// If we want to dismiss the banner, set the new timeout, otherwise clear the state
|
|
if (dismissBanner) {
|
|
setDismissBannerTimeout(
|
|
setTimeout(() => {
|
|
setUpdateStatusMessage(null);
|
|
setDismissBannerTimeout(null);
|
|
}, 10000)
|
|
);
|
|
} else {
|
|
setDismissBannerTimeout(null);
|
|
}
|
|
}, [appUpdateStatus]);
|
|
|
|
function onClick() {
|
|
getApi().installAppUpdate();
|
|
}
|
|
if (updateStatusMessage) {
|
|
return (
|
|
<Button
|
|
ref={buttonRef}
|
|
className="update-available-button"
|
|
title={appUpdateStatus === "ready" ? "Click to Install Update" : updateStatusMessage}
|
|
onClick={onClick}
|
|
disabled={appUpdateStatus !== "ready"}
|
|
>
|
|
{updateStatusMessage}
|
|
</Button>
|
|
);
|
|
}
|
|
};
|
|
|
|
export const UpdateStatusBanner = memo(UpdateStatusBannerComponent) as typeof UpdateStatusBannerComponent;
|