summaryrefslogtreecommitdiff
path: root/frontend/src/components/modals
diff options
context:
space:
mode:
authorJesse Bofill <jesse_bofill@yahoo.com>2025-10-06 14:29:39 -0600
committerJesse Bofill <jesse_bofill@yahoo.com>2025-10-06 14:29:39 -0600
commit1ae6519209c9bf079d8dff80d5bceb5a847b08b1 (patch)
tree05daa08379fb895d5ac7f1c41ef87514803c56b6 /frontend/src/components/modals
parent65f1eb052de17f21144571d932281a0484f48dfd (diff)
downloaddecky-loader-1ae6519209c9bf079d8dff80d5bceb5a847b08b1.tar.gz
decky-loader-1ae6519209c9bf079d8dff80d5bceb5a847b08b1.zip
implement frontend diisable functions/ modal
Diffstat (limited to 'frontend/src/components/modals')
-rw-r--r--frontend/src/components/modals/PluginDisablelModal.tsx46
1 files changed, 46 insertions, 0 deletions
diff --git a/frontend/src/components/modals/PluginDisablelModal.tsx b/frontend/src/components/modals/PluginDisablelModal.tsx
new file mode 100644
index 00000000..89cda293
--- /dev/null
+++ b/frontend/src/components/modals/PluginDisablelModal.tsx
@@ -0,0 +1,46 @@
+import { ConfirmModal, Spinner } from '@decky/ui';
+import { FC, useState } from 'react';
+
+import { disablePlugin, uninstallPlugin } from '../../plugin';
+
+interface PluginUninstallModalProps {
+ name: string;
+ title: string;
+ buttonText: string;
+ description: string;
+ closeModal?(): void;
+}
+
+const PluginDisableModal: FC<PluginUninstallModalProps> = ({ name, title, buttonText, description, closeModal }) => {
+ const [disabling, setDisabling] = useState<boolean>(false);
+ return (
+ <ConfirmModal
+ closeModal={closeModal}
+ onOK={async () => {
+ setDisabling(true);
+ await disablePlugin(name);
+
+ //not sure about this yet
+
+ // uninstalling a plugin resets the hidden setting for it server-side
+ // we invalidate here so if you re-install it, you won't have an out-of-date hidden filter
+ await DeckyPluginLoader.frozenPluginsService.invalidate();
+ await DeckyPluginLoader.hiddenPluginsService.invalidate();
+ closeModal?.();
+ }}
+ bOKDisabled={disabling}
+ bCancelDisabled={disabling}
+ strTitle={
+ <div style={{ display: 'flex', flexDirection: 'row', alignItems: 'center', width: '100%' }}>
+ {title}
+ {disabling && <Spinner width="24px" height="24px" style={{ marginLeft: 'auto' }} />}
+ </div>
+ }
+ strOKButtonText={buttonText}
+ >
+ {description}
+ </ConfirmModal>
+ );
+};
+
+export default PluginDisableModal;