mirror of https://github.com/jetkvm/kvm.git
287 lines
10 KiB
TypeScript
287 lines
10 KiB
TypeScript
import { Fragment, useCallback, useRef } from "react";
|
|
import { MdOutlineContentPasteGo } from "react-icons/md";
|
|
import { LuCable, LuHardDrive, LuMaximize, LuSettings, LuSignal } from "react-icons/lu";
|
|
import { FaKeyboard } from "react-icons/fa6";
|
|
import { Popover, PopoverButton, PopoverPanel } from "@headlessui/react";
|
|
import { CommandLineIcon } from "@heroicons/react/20/solid";
|
|
|
|
import { cx } from "@/cva.config";
|
|
import {
|
|
useHidStore,
|
|
useMountMediaStore,
|
|
useSettingsStore,
|
|
useUiStore,
|
|
} from "@hooks/stores";
|
|
import { useDeviceUiNavigation } from "@hooks/useAppNavigation";
|
|
import { Button } from "@components/Button";
|
|
import Container from "@components/Container";
|
|
import PasteModal from "@components/popovers/PasteModal";
|
|
import WakeOnLanModal from "@components/popovers/WakeOnLan/Index";
|
|
import MountPopopover from "@components/popovers/MountPopover";
|
|
import ExtensionPopover from "@components/popovers/ExtensionPopover";
|
|
import { m } from "@localizations/messages.js";
|
|
|
|
export default function Actionbar({
|
|
requestFullscreen,
|
|
}: {
|
|
requestFullscreen: () => Promise<void>;
|
|
}) {
|
|
const { navigateTo } = useDeviceUiNavigation();
|
|
const { isVirtualKeyboardEnabled, setVirtualKeyboardEnabled } = useHidStore();
|
|
const { setDisableVideoFocusTrap, terminalType, setTerminalType, toggleSidebarView } = useUiStore();
|
|
const { remoteVirtualMediaState } = useMountMediaStore();
|
|
const { developerMode } = useSettingsStore();
|
|
|
|
// This is the only way to get a reliable state change for the popover
|
|
// at time of writing this there is no mount, or unmount event for the popover
|
|
const isOpen = useRef<boolean>(false);
|
|
const checkIfStateChanged = useCallback(
|
|
(open: boolean) => {
|
|
if (open !== isOpen.current) {
|
|
isOpen.current = open;
|
|
if (!open) {
|
|
setTimeout(() => {
|
|
setDisableVideoFocusTrap(false);
|
|
console.debug("Popover is closing. Returning focus trap to video");
|
|
}, 0);
|
|
}
|
|
}
|
|
},
|
|
[setDisableVideoFocusTrap],
|
|
);
|
|
|
|
return (
|
|
<Container className="border-b border-b-slate-800/20 bg-white dark:border-b-slate-300/20 dark:bg-slate-900">
|
|
<div
|
|
onKeyUp={e => e.stopPropagation()}
|
|
onKeyDown={e => e.stopPropagation()}
|
|
className="flex flex-wrap items-center justify-between gap-x-4 gap-y-2 py-1.5"
|
|
>
|
|
<div className="relative flex flex-wrap items-center gap-x-2 gap-y-2">
|
|
{developerMode && (
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_web_terminal()}
|
|
LeadingIcon={({ className }) => <CommandLineIcon className={className} />}
|
|
onClick={() => setTerminalType(terminalType === "kvm" ? "none" : "kvm")}
|
|
/>
|
|
)}
|
|
<Popover>
|
|
<PopoverButton as={Fragment}>
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_paste_text()}
|
|
LeadingIcon={MdOutlineContentPasteGo}
|
|
onClick={() => {
|
|
setDisableVideoFocusTrap(true);
|
|
}}
|
|
/>
|
|
</PopoverButton>
|
|
<PopoverPanel
|
|
anchor="bottom start"
|
|
transition
|
|
className={cx(
|
|
"z-10 flex w-[420px] origin-top flex-col overflow-visible!",
|
|
"flex origin-top flex-col transition duration-300 ease-out data-closed:translate-y-8 data-closed:opacity-0",
|
|
)}
|
|
>
|
|
{({ open }) => {
|
|
checkIfStateChanged(open);
|
|
return (
|
|
<div className="mx-auto w-full max-w-xl">
|
|
<PasteModal />
|
|
</div>
|
|
);
|
|
}}
|
|
</PopoverPanel>
|
|
</Popover>
|
|
<div className="relative">
|
|
<Popover>
|
|
<PopoverButton as={Fragment}>
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_virtual_media()}
|
|
LeadingIcon={({ className }) => {
|
|
return (
|
|
<>
|
|
<LuHardDrive className={className} />
|
|
<div
|
|
className={cx(className, "h-2 w-2 rounded-full bg-blue-700", {
|
|
hidden: !remoteVirtualMediaState,
|
|
})}
|
|
/>
|
|
</>
|
|
);
|
|
}}
|
|
onClick={() => {
|
|
setDisableVideoFocusTrap(true);
|
|
}}
|
|
/>
|
|
</PopoverButton>
|
|
<PopoverPanel
|
|
anchor="bottom start"
|
|
transition
|
|
className={cx(
|
|
"z-10 flex w-[420px] origin-top flex-col overflow-visible!",
|
|
"flex origin-top flex-col transition duration-300 ease-out data-closed:translate-y-8 data-closed:opacity-0",
|
|
)}
|
|
>
|
|
{({ open }) => {
|
|
checkIfStateChanged(open);
|
|
return (
|
|
<div className="mx-auto w-full max-w-xl">
|
|
<MountPopopover />
|
|
</div>
|
|
);
|
|
}}
|
|
</PopoverPanel>
|
|
</Popover>
|
|
</div>
|
|
<div>
|
|
<Popover>
|
|
<PopoverButton as={Fragment}>
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_wake_on_lan()}
|
|
onClick={() => {
|
|
setDisableVideoFocusTrap(true);
|
|
}}
|
|
LeadingIcon={({ className }) => (
|
|
<svg
|
|
className={className}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
>
|
|
<path d="m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z" />
|
|
<path d="M6 8v1" />
|
|
<path d="M10 8v1" />
|
|
<path d="M14 8v1" />
|
|
<path d="M18 8v1" />
|
|
</svg>
|
|
)}
|
|
/>
|
|
</PopoverButton>
|
|
<PopoverPanel
|
|
anchor="bottom start"
|
|
transition
|
|
style={{
|
|
transitionProperty: "opacity",
|
|
}}
|
|
className={cx(
|
|
"z-10 flex w-[420px] origin-top flex-col overflow-visible!",
|
|
"flex origin-top flex-col transition duration-300 ease-out data-closed:translate-y-8 data-closed:opacity-0",
|
|
)}
|
|
>
|
|
{({ open }) => {
|
|
checkIfStateChanged(open);
|
|
return (
|
|
<div className="mx-auto w-full max-w-xl">
|
|
<WakeOnLanModal />
|
|
</div>
|
|
);
|
|
}}
|
|
</PopoverPanel>
|
|
</Popover>
|
|
</div>
|
|
<div className="hidden lg:block">
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_virtual_keyboard()}
|
|
LeadingIcon={FaKeyboard}
|
|
onClick={() => setVirtualKeyboardEnabled(!isVirtualKeyboardEnabled)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex flex-wrap items-center gap-x-2 gap-y-2">
|
|
<Popover>
|
|
<PopoverButton as={Fragment}>
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_extension()}
|
|
LeadingIcon={LuCable}
|
|
onClick={() => {
|
|
setDisableVideoFocusTrap(true);
|
|
}}
|
|
/>
|
|
</PopoverButton>
|
|
<PopoverPanel
|
|
anchor="bottom start"
|
|
transition
|
|
className={cx(
|
|
"z-10 flex w-[420px] flex-col overflow-visible!",
|
|
"flex origin-top flex-col transition duration-300 ease-out data-closed:translate-y-8 data-closed:opacity-0",
|
|
)}
|
|
>
|
|
{({ open }) => {
|
|
checkIfStateChanged(open);
|
|
return <ExtensionPopover />;
|
|
}}
|
|
</PopoverPanel>
|
|
</Popover>
|
|
|
|
<div className="block lg:hidden">
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_virtual_keyboard()}
|
|
LeadingIcon={FaKeyboard}
|
|
onClick={() => setVirtualKeyboardEnabled(!isVirtualKeyboardEnabled)}
|
|
/>
|
|
</div>
|
|
<div className="hidden md:block">
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_connection_stats()}
|
|
LeadingIcon={({ className }) => (
|
|
<LuSignal
|
|
className={cx(className, "mb-0.5 text-green-500")}
|
|
strokeWidth={4}
|
|
/>
|
|
)}
|
|
onClick={() => {
|
|
toggleSidebarView("connection-stats");
|
|
}}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_settings()}
|
|
LeadingIcon={LuSettings}
|
|
onClick={() => {
|
|
setDisableVideoFocusTrap(true);
|
|
navigateTo("/settings")
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div className="hidden items-center gap-x-2 lg:flex">
|
|
<div className="h-4 w-px bg-slate-300 dark:bg-slate-600" />
|
|
<Button
|
|
size="XS"
|
|
theme="light"
|
|
text={m.action_bar_fullscreen()}
|
|
LeadingIcon={LuMaximize}
|
|
onClick={() => requestFullscreen()}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|