You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
import type React from "react";
|
|
import { useState } from "react";
|
|
|
|
import { useDevice } from "@app/core/providers/useDevice.js";
|
|
import { Dialog } from "@components/generic/Dialog.js";
|
|
import { ClockIcon, PowerIcon } from "@heroicons/react/24/outline";
|
|
|
|
import { Button } from "../form/Button.js";
|
|
import { Input } from "../form/Input.js";
|
|
|
|
export interface ShutdownDialogProps {
|
|
isOpen: boolean;
|
|
close: () => void;
|
|
}
|
|
|
|
export const ShutdownDialog = ({
|
|
isOpen,
|
|
close
|
|
}: ShutdownDialogProps): JSX.Element => {
|
|
const { connection, setShutdownDialogOpen } = useDevice();
|
|
|
|
const [time, setTime] = useState<number>(5);
|
|
|
|
return (
|
|
<Dialog
|
|
title={"Schedule Shutdown"}
|
|
description={"Turn off the connected node after x minutes."}
|
|
isOpen={isOpen}
|
|
close={close}
|
|
>
|
|
<div className="flex gap-2 p-4">
|
|
<Input
|
|
type="number"
|
|
value={time}
|
|
onChange={(e) => setTime(parseInt(e.target.value))}
|
|
action={{
|
|
icon: <ClockIcon className="w-4" />,
|
|
action() {
|
|
connection
|
|
?.shutdown(time * 60)
|
|
.then(() => setShutdownDialogOpen(false));
|
|
}
|
|
}}
|
|
/>
|
|
<Button
|
|
className="w-24"
|
|
iconBefore={<PowerIcon className="w-4" />}
|
|
onClick={() => {
|
|
connection?.shutdown(2).then(() => setShutdownDialogOpen(false));
|
|
}}
|
|
>
|
|
Now
|
|
</Button>
|
|
</div>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|