From 934a89add0f68e9a0c8a28bf182e773bc6f93b2a Mon Sep 17 00:00:00 2001 From: KraXen72 Date: Sat, 22 Oct 2022 23:38:48 +0200 Subject: feat: switch in plugin settings (#140) --- src/components/PluginSettings/index.tsx | 37 +++++++++++++++++---------------- 1 file changed, 19 insertions(+), 18 deletions(-) (limited to 'src/components/PluginSettings/index.tsx') diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index 552f9fd..dbb5161 100644 --- a/src/components/PluginSettings/index.tsx +++ b/src/components/PluginSettings/index.tsx @@ -25,7 +25,7 @@ import { ChangeList } from "../../utils/ChangeList"; import { classes, lazyWebpack } from "../../utils/misc"; import { Plugin } from "../../utils/types"; import { filters } from "../../webpack"; -import { Alerts, Button, Forms, Margins, Parser, React, Text, TextInput, Toasts, Tooltip } from "../../webpack/common"; +import { Alerts, Button, Forms, Margins, Parser, React, Switch, Text, TextInput, Toasts, Tooltip } from "../../webpack/common"; import ErrorBoundary from "../ErrorBoundary"; import { Flex } from "../Flex"; import PluginModal from "./PluginModal"; @@ -34,6 +34,9 @@ import * as styles from "./styles"; const Select = lazyWebpack(filters.byCode("optionClassName", "popoutPosition", "autoFocus", "maxVisibleItems")); const InputStyles = lazyWebpack(filters.byProps(["inputDefault", "inputWrapper"])); +const CogWheel = lazyWebpack(filters.byCode("18.564C15.797 19.099 14.932 19.498 14 19.738V22H10V19.738C9.069")); +const InfoIcon = lazyWebpack(filters.byCode("4.4408921e-16 C4.4771525,-1.77635684e-15 4.4408921e-16")); + function showErrorToast(message: string) { Toasts.show({ message, @@ -79,23 +82,21 @@ function PluginCard({ plugin, disabled, onRestartNeeded, onMouseEnter, onMouseLe } return ( - openModal()} onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave}> - {plugin.name} - {plugin.description} - - - {plugin.options && Click to configure} - + + {plugin.description}} + hideBorder={true} + > + + {plugin.name} + + + ); } -- cgit