diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-16 12:05:10 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-16 12:05:10 -0400 |
| commit | 4104e28053fc03b3875958c7bf56ec6fbc5aab84 (patch) | |
| tree | 1095b374ab453ce98ab35dfbfa79d810ad99fdab /src/components/Content.tsx | |
| parent | 6489f2273fc246fcca25e95d913e60ea214e0d31 (diff) | |
| download | decky-lsfg-vk-4104e28053fc03b3875958c7bf56ec6fbc5aab84.tar.gz decky-lsfg-vk-4104e28053fc03b3875958c7bf56ec6fbc5aab84.zip | |
initial prof selector and creator ui
Diffstat (limited to 'src/components/Content.tsx')
| -rw-r--r-- | src/components/Content.tsx | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx index a075574..c7c757b 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -1,10 +1,12 @@ import { useEffect } from "react"; import { PanelSection, showModal, ButtonItem, PanelSectionRow } from "@decky/ui"; import { useInstallationStatus, useDllDetection, useLsfgConfig } from "../hooks/useLsfgHooks"; +import { useProfileManagement } from "../hooks/useProfileManagement"; import { useInstallationActions } from "../hooks/useInstallationActions"; import { StatusDisplay } from "./StatusDisplay"; import { InstallationButton } from "./InstallationButton"; import { ConfigurationSection } from "./ConfigurationSection"; +import { ProfileManagement } from "./ProfileManagement"; import { UsageInstructions } from "./UsageInstructions"; import { WikiButton } from "./WikiButton"; import { ClipboardButton } from "./ClipboardButton"; @@ -29,6 +31,11 @@ export function Content() { updateField } = useLsfgConfig(); + const { + currentProfile, + updateProfileConfig + } = useProfileManagement(); + const { isInstalling, isUninstalling, handleInstall, handleUninstall } = useInstallationActions(); // Reload config when installation status changes @@ -40,7 +47,16 @@ export function Content() { // Generic configuration change handler const handleConfigChange = async (fieldName: keyof ConfigurationData, value: boolean | number | string) => { - await updateField(fieldName, value); + // If we have a current profile, update that profile specifically + if (currentProfile) { + const newConfig = { ...config, [fieldName]: value }; + await updateProfileConfig(currentProfile, newConfig); + // Also update local config state + await updateField(fieldName, value); + } else { + // Fallback to the original method + await updateField(fieldName, value); + } }; const onInstall = () => { @@ -74,6 +90,14 @@ export function Content() { <SmartClipboardButton /> + {/* Profile Management - only show if installed */} + {isInstalled && ( + <ProfileManagement + currentProfile={currentProfile} + onProfileChange={() => loadLsfgConfig()} + /> + )} + {/* Configuration Section - only show if installed */} {isInstalled && ( <ConfigurationSection |
