From 43b2269ea710c02278f784f28521a99dc9d3915b Mon Sep 17 00:00:00 2001 From: EMERALD Date: Wed, 1 Feb 2023 19:16:42 -0600 Subject: Fix UI inconsistencies, various improvements (#357) * Make version gray in plugin list * Settings/store icons together & plugin list fix * Navigation name/icon improvements * Decky settings overhaul and other fixes - Revert the tab icon to a plug - Rename DeckyFlat function to DeckyIcon - Add DialogBody to settings pages to improve scrolling - Add remote debugging settings to the developer settings - Fix React devtools interactions to work more easily - Add spacing to React devtools description - Specify Decky vs. plugin store - Compact version information by update button - Add current version to bottom of settings - Remove unnecessary settings icons - Change CEF debugger icon to Chrome (bug icon too generic, is Chromium) - Make buttons/dropdowns in settings have fixed width - Make download icon act/appear similar to Valve's for Deck * Final UI adjustments * Switch plugin settings icon to plug --- .../components/settings/pages/developer/index.tsx | 80 ++++++++-------------- 1 file changed, 30 insertions(+), 50 deletions(-) (limited to 'frontend/src/components/settings/pages/developer/index.tsx') diff --git a/frontend/src/components/settings/pages/developer/index.tsx b/frontend/src/components/settings/pages/developer/index.tsx index 447c9606..d9859c46 100644 --- a/frontend/src/components/settings/pages/developer/index.tsx +++ b/frontend/src/components/settings/pages/developer/index.tsx @@ -1,9 +1,10 @@ -import { Field, Focusable, TextField, Toggle } from 'decky-frontend-lib'; +import { DialogBody, Field, TextField, Toggle } from 'decky-frontend-lib'; import { useRef } from 'react'; import { FaReact, FaSteamSymbol } from 'react-icons/fa'; import { setShouldConnectToReactDevTools, setShowValveInternal } from '../../../../developer'; import { useSetting } from '../../../../utils/hooks/useSetting'; +import RemoteDebuggingSettings from '../general/RemoteDebugging'; export default function DeveloperSettings() { const [enableValveInternal, setEnableValveInternal] = useSetting('developer.valve_internal', false); @@ -12,7 +13,8 @@ export default function DeveloperSettings() { const textRef = useRef(null); return ( - <> + + - {' '} - { - (textRef.current?.childNodes[0] as HTMLInputElement)?.focus(); - } - : undefined - } - onClick={ - reactDevtoolsIP == '' - ? () => { - (textRef.current?.childNodes[0] as HTMLInputElement)?.focus(); - } - : undefined - } - onOKButton={ - reactDevtoolsIP == '' - ? () => { - (textRef.current?.childNodes[0] as HTMLInputElement)?.focus(); - } - : undefined + + + + Enables connection to a computer running React DevTools. Changing this setting will reload Steam. Set the + IP address before enabling. + +
+
+
+ setReactDevtoolsIP(e?.target.value)} /> +
+ } + icon={} > - - - Enables connection to a computer running React DevTools. Changing this setting will reload Steam. Set - the IP address before enabling. - -
- setReactDevtoolsIP(e?.target.value)} /> -
- - } - icon={} - > - { - setReactDevtoolsEnabled(toggleValue); - setShouldConnectToReactDevTools(toggleValue); - }} - /> -
-
- + { + setReactDevtoolsEnabled(toggleValue); + setShouldConnectToReactDevTools(toggleValue); + }} + /> + +
); } -- cgit v1.2.3