mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 04:32:02 +00:00
43b2269ea7
* 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
65 lines
2.4 KiB
TypeScript
65 lines
2.4 KiB
TypeScript
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<boolean>('developer.valve_internal', false);
|
|
const [reactDevtoolsEnabled, setReactDevtoolsEnabled] = useSetting<boolean>('developer.rdt.enabled', false);
|
|
const [reactDevtoolsIP, setReactDevtoolsIP] = useSetting<string>('developer.rdt.ip', '');
|
|
const textRef = useRef<HTMLDivElement>(null);
|
|
|
|
return (
|
|
<DialogBody>
|
|
<RemoteDebuggingSettings />
|
|
<Field
|
|
label="Enable Valve Internal"
|
|
description={
|
|
<span style={{ whiteSpace: 'pre-line' }}>
|
|
Enables the Valve internal developer menu.{' '}
|
|
<span style={{ color: 'red' }}>Do not touch anything in this menu unless you know what it does.</span>
|
|
</span>
|
|
}
|
|
icon={<FaSteamSymbol style={{ display: 'block' }} />}
|
|
>
|
|
<Toggle
|
|
value={enableValveInternal}
|
|
onChange={(toggleValue) => {
|
|
setEnableValveInternal(toggleValue);
|
|
setShowValveInternal(toggleValue);
|
|
}}
|
|
/>
|
|
</Field>
|
|
<Field
|
|
label="Enable React DevTools"
|
|
description={
|
|
<>
|
|
<span style={{ whiteSpace: 'pre-line' }}>
|
|
Enables connection to a computer running React DevTools. Changing this setting will reload Steam. Set the
|
|
IP address before enabling.
|
|
</span>
|
|
<br />
|
|
<br />
|
|
<div ref={textRef}>
|
|
<TextField label={'IP'} value={reactDevtoolsIP} onChange={(e) => setReactDevtoolsIP(e?.target.value)} />
|
|
</div>
|
|
</>
|
|
}
|
|
icon={<FaReact style={{ display: 'block' }} />}
|
|
>
|
|
<Toggle
|
|
value={reactDevtoolsEnabled}
|
|
disabled={reactDevtoolsIP == ''}
|
|
onChange={(toggleValue) => {
|
|
setReactDevtoolsEnabled(toggleValue);
|
|
setShouldConnectToReactDevTools(toggleValue);
|
|
}}
|
|
/>
|
|
</Field>
|
|
</DialogBody>
|
|
);
|
|
}
|