Browse Source

Increase palette contrast, add factory reset

pull/71/head
Sacha Weatherstone 3 years ago
parent
commit
fed4ebf80b
No known key found for this signature in database GPG Key ID: 7AB2D7E206124B31
  1. 44
      src/components/CommandPalette/Index.tsx
  2. 7
      src/components/generic/Blur.tsx

44
src/components/CommandPalette/Index.tsx

@ -17,6 +17,7 @@ import {
ArchiveBoxXMarkIcon,
ArrowDownOnSquareStackIcon,
ArrowPathIcon,
ArrowPathRoundedSquareIcon,
ArrowsRightLeftIcon,
BeakerIcon,
BugAntIcon,
@ -40,9 +41,9 @@ import {
WindowIcon,
XCircleIcon
} from "@heroicons/react/24/outline";
import { ThemeController } from "../generic/ThemeController.js";
import { Blur } from "../generic/Blur.js";
import { accentColor } from "@core/stores/appStore.js";
import { ThemeController } from "../generic/ThemeController.js";
export interface Group {
name: string;
@ -209,19 +210,6 @@ export const CommandPalette = (): JSX.Element => {
}
]
},
{
name: "Reset Peers",
icon: TrashIcon,
action() {
if (connection) {
void toast.promise(connection.resetPeers(), {
loading: "Resetting...",
success: "Succesfully reset peers",
error: "No response received"
});
}
}
},
{
name: "Disconnect",
icon: XCircleIcon,
@ -244,6 +232,32 @@ export const CommandPalette = (): JSX.Element => {
action() {
setRebootDialogOpen(true);
}
},
{
name: "Reset Peers",
icon: TrashIcon,
action() {
if (connection) {
void toast.promise(connection.resetPeers(), {
loading: "Resetting...",
success: "Succesfully reset peers",
error: "No response received"
});
}
}
},
{
name: "Factory Reset",
icon: ArrowPathRoundedSquareIcon,
action() {
if (connection) {
void toast.promise(connection.factoryReset(), {
loading: "Resetting...",
success: "Succesfully factory peers",
error: "No response received"
});
}
}
}
]
},

7
src/components/generic/Blur.tsx

@ -1,3 +1,8 @@
export const Blur = (): JSX.Element => {
return <div className="fixed inset-0 backdrop-blur-md" aria-hidden="true" />;
return (
<div
className="fixed inset-0 backdrop-blur-md backdrop-brightness-press"
aria-hidden="true"
/>
);
};

Loading…
Cancel
Save