diff options
Diffstat (limited to 'src/components/ProfileManagement.tsx')
| -rw-r--r-- | src/components/ProfileManagement.tsx | 307 |
1 files changed, 307 insertions, 0 deletions
diff --git a/src/components/ProfileManagement.tsx b/src/components/ProfileManagement.tsx new file mode 100644 index 0000000..a499836 --- /dev/null +++ b/src/components/ProfileManagement.tsx @@ -0,0 +1,307 @@ +import { useState, useEffect } from "react"; +import { + PanelSection, + PanelSectionRow, + Dropdown, + DropdownOption, + showModal, + ConfirmModal, + Field, + DialogButton, + Focusable, + ModalRoot, + TextField +} from "@decky/ui"; +import { + getProfiles, + createProfile, + deleteProfile, + renameProfile, + setCurrentProfile, + ProfilesResult, + ProfileResult +} from "../api/lsfgApi"; +import { showSuccessToast, showErrorToast } from "../utils/toastUtils"; + +interface ProfileManagementProps { + currentProfile?: string; + onProfileChange?: (profileName: string) => void; +} + +interface TextInputModalProps { + title: string; + description: string; + defaultValue?: string; + okText?: string; + cancelText?: string; + onOK: (value: string) => void; + closeModal?: () => void; +} + +function TextInputModal({ + title, + description, + defaultValue = "", + okText = "OK", + cancelText = "Cancel", + onOK, + closeModal +}: TextInputModalProps) { + const [value, setValue] = useState(defaultValue); + + const handleOK = () => { + onOK(value); + closeModal?.(); + }; + + return ( + <ModalRoot> + <div style={{ padding: "16px", minWidth: "300px" }}> + <h2 style={{ marginBottom: "16px" }}>{title}</h2> + <p style={{ marginBottom: "16px" }}>{description}</p> + + <Field label="Name"> + <TextField + value={value} + onChange={(e) => setValue(e?.target?.value || "")} + /> + </Field> + + <div style={{ display: "flex", gap: "8px", marginTop: "16px" }}> + <DialogButton onClick={handleOK} disabled={!value.trim()}> + {okText} + </DialogButton> + <DialogButton onClick={closeModal}> + {cancelText} + </DialogButton> + </div> + </div> + </ModalRoot> + ); +} + +interface ProfileManagementProps { + currentProfile?: string; + onProfileChange?: (profileName: string) => void; +} + +export function ProfileManagement({ currentProfile, onProfileChange }: ProfileManagementProps) { + const [profiles, setProfiles] = useState<string[]>([]); + const [selectedProfile, setSelectedProfile] = useState<string>(currentProfile || "decky-lsfg-vk"); + const [isLoading, setIsLoading] = useState(false); + + // Load profiles on component mount + useEffect(() => { + loadProfiles(); + }, []); + + // Update selected profile when prop changes + useEffect(() => { + if (currentProfile) { + setSelectedProfile(currentProfile); + } + }, [currentProfile]); + + const loadProfiles = async () => { + try { + const result: ProfilesResult = await getProfiles(); + if (result.success && result.profiles) { + setProfiles(result.profiles); + if (result.current_profile) { + setSelectedProfile(result.current_profile); + } + } else { + console.error("Failed to load profiles:", result.error); + showErrorToast("Failed to load profiles", result.error || "Unknown error"); + } + } catch (error) { + console.error("Error loading profiles:", error); + showErrorToast("Error loading profiles", String(error)); + } + }; + + const handleProfileChange = async (profileName: string) => { + setIsLoading(true); + try { + const result: ProfileResult = await setCurrentProfile(profileName); + if (result.success) { + setSelectedProfile(profileName); + showSuccessToast("Profile switched", `Switched to profile: ${profileName}`); + onProfileChange?.(profileName); + } else { + console.error("Failed to switch profile:", result.error); + showErrorToast("Failed to switch profile", result.error || "Unknown error"); + } + } catch (error) { + console.error("Error switching profile:", error); + showErrorToast("Error switching profile", String(error)); + } finally { + setIsLoading(false); + } + }; + + const handleCreateProfile = () => { + showModal( + <TextInputModal + title="Create New Profile" + description="Enter a name for the new profile. The current profile's settings will be copied." + okText="Create" + cancelText="Cancel" + onOK={(name: string) => { + if (name.trim()) { + createNewProfile(name.trim()); + } + }} + /> + ); + }; + + const createNewProfile = async (profileName: string) => { + setIsLoading(true); + try { + const result: ProfileResult = await createProfile(profileName, selectedProfile); + if (result.success) { + showSuccessToast("Profile created", `Created profile: ${profileName}`); + await loadProfiles(); + } else { + console.error("Failed to create profile:", result.error); + showErrorToast("Failed to create profile", result.error || "Unknown error"); + } + } catch (error) { + console.error("Error creating profile:", error); + showErrorToast("Error creating profile", String(error)); + } finally { + setIsLoading(false); + } + }; + + const handleDeleteProfile = () => { + if (selectedProfile === "decky-lsfg-vk") { + showErrorToast("Cannot delete default profile", "The default profile cannot be deleted"); + return; + } + + showModal( + <ConfirmModal + strTitle="Delete Profile" + strDescription={`Are you sure you want to delete the profile "${selectedProfile}"? This action cannot be undone.`} + strOKButtonText="Delete" + strCancelButtonText="Cancel" + onOK={() => deleteSelectedProfile()} + /> + ); + }; + + const deleteSelectedProfile = async () => { + setIsLoading(true); + try { + const result: ProfileResult = await deleteProfile(selectedProfile); + if (result.success) { + showSuccessToast("Profile deleted", `Deleted profile: ${selectedProfile}`); + await loadProfiles(); + // If we deleted the current profile, it should have switched to default + setSelectedProfile("decky-lsfg-vk"); + onProfileChange?.("decky-lsfg-vk"); + } else { + console.error("Failed to delete profile:", result.error); + showErrorToast("Failed to delete profile", result.error || "Unknown error"); + } + } catch (error) { + console.error("Error deleting profile:", error); + showErrorToast("Error deleting profile", String(error)); + } finally { + setIsLoading(false); + } + }; + + const handleRenameProfile = () => { + if (selectedProfile === "decky-lsfg-vk") { + showErrorToast("Cannot rename default profile", "The default profile cannot be renamed"); + return; + } + + showModal( + <TextInputModal + title="Rename Profile" + description={`Enter a new name for the profile "${selectedProfile}".`} + defaultValue={selectedProfile} + okText="Rename" + cancelText="Cancel" + onOK={(newName: string) => { + if (newName.trim() && newName.trim() !== selectedProfile) { + renameSelectedProfile(newName.trim()); + } + }} + /> + ); + }; + + const renameSelectedProfile = async (newName: string) => { + setIsLoading(true); + try { + const result: ProfileResult = await renameProfile(selectedProfile, newName); + if (result.success) { + showSuccessToast("Profile renamed", `Renamed profile to: ${newName}`); + await loadProfiles(); + setSelectedProfile(newName); + onProfileChange?.(newName); + } else { + console.error("Failed to rename profile:", result.error); + showErrorToast("Failed to rename profile", result.error || "Unknown error"); + } + } catch (error) { + console.error("Error renaming profile:", error); + showErrorToast("Error renaming profile", String(error)); + } finally { + setIsLoading(false); + } + }; + + const profileOptions: DropdownOption[] = profiles.map(profile => ({ + data: profile, + label: profile === "decky-lsfg-vk" ? `${profile} (default)` : profile + })); + + return ( + <PanelSection title="Profile Management"> + <PanelSectionRow> + <Field label="Current Profile"> + <Dropdown + rgOptions={profileOptions} + selectedOption={selectedProfile} + onChange={(option) => handleProfileChange(option.data)} + disabled={isLoading} + /> + </Field> + </PanelSectionRow> + + <PanelSectionRow> + <Focusable style={{ display: "flex", gap: "8px", flexWrap: "wrap" }}> + <DialogButton + onClick={handleCreateProfile} + disabled={isLoading} + style={{ flex: "1", minWidth: "120px" }} + > + New Profile + </DialogButton> + + <DialogButton + onClick={handleRenameProfile} + disabled={isLoading || selectedProfile === "decky-lsfg-vk"} + style={{ flex: "1", minWidth: "120px" }} + > + Rename + </DialogButton> + + <DialogButton + onClick={handleDeleteProfile} + disabled={isLoading || selectedProfile === "decky-lsfg-vk"} + style={{ flex: "1", minWidth: "120px" }} + > + Delete + </DialogButton> + </Focusable> + </PanelSectionRow> + </PanelSection> + ); +} |
