From ef9afa8cbca29a3dd83454f44264a4682e968c59 Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Sat, 24 Jun 2023 12:59:39 +0200 Subject: Add notification settings, which allows muting decky/plugin toast notifications (#479) * Add notification settings, which allows muting decky/plugin toast notifications * Fix typos --- .../pages/general/NotificationSettings.tsx | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 frontend/src/components/settings/pages/general/NotificationSettings.tsx (limited to 'frontend/src/components/settings/pages/general/NotificationSettings.tsx') diff --git a/frontend/src/components/settings/pages/general/NotificationSettings.tsx b/frontend/src/components/settings/pages/general/NotificationSettings.tsx new file mode 100644 index 00000000..21c2fd82 --- /dev/null +++ b/frontend/src/components/settings/pages/general/NotificationSettings.tsx @@ -0,0 +1,35 @@ +import { Field, Toggle } from 'decky-frontend-lib'; +import { FC } from 'react'; +import { useTranslation } from 'react-i18next'; + +import { useDeckyState } from '../../../DeckyState'; + +const NotificationSettings: FC = () => { + const { notificationSettings } = useDeckyState(); + const notificationService = window.DeckyPluginLoader.notificationService; + + const { t } = useTranslation(); + + return ( + <> + + { + notificationService.update({ ...notificationSettings, deckyUpdates }); + }} + /> + + + { + notificationService.update({ ...notificationSettings, pluginUpdates }); + }} + /> + + + ); +}; + +export default NotificationSettings; -- cgit v1.2.3