1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
|
import { useState, useEffect } from "react";
import {
PanelSectionRow,
Dropdown,
DropdownOption,
showModal,
ConfirmModal,
Field,
DialogButton,
ButtonItem,
ModalRoot,
TextField,
Focusable,
AppOverview,
Router
} from "@decky/ui";
import { RiArrowDownSFill, RiArrowUpSFill } from "react-icons/ri";
import {
getProfiles,
createProfile,
deleteProfile,
renameProfile,
setCurrentProfile,
ProfilesResult,
ProfileResult
} from "../api/lsfgApi";
import { showSuccessToast, showErrorToast } from "../utils/toastUtils";
const PROFILES_COLLAPSED_KEY = 'lsfg-profiles-collapsed';
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 = () => {
if (value.trim()) {
onOK(value);
closeModal?.();
}
};
return (
<ModalRoot>
<div style={{ padding: "16px", minWidth: "400px" }}>
<h2 style={{ marginBottom: "16px" }}>{title}</h2>
<p style={{ marginBottom: "24px" }}>{description}</p>
<div style={{ marginBottom: "24px" }}>
<Field
label="Name"
childrenLayout="below"
childrenContainerWidth="max"
>
<TextField
value={value}
onChange={(e) => setValue(e?.target?.value || "")}
style={{ width: "100%" }}
/>
</Field>
</div>
<Focusable
style={{
display: "flex",
justifyContent: "flex-end",
gap: "8px",
marginTop: "16px"
}}
flow-children="horizontal"
>
<DialogButton onClick={closeModal}>
{cancelText}
</DialogButton>
<DialogButton
onClick={handleOK}
disabled={!value.trim()}
>
{okText}
</DialogButton>
</Focusable>
</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);
const [mainRunningApp, setMainRunningApp] = useState<AppOverview | undefined>(undefined);
// Initialize with localStorage value, fallback to false (expanded) if not found
const [profilesCollapsed, setProfilesCollapsed] = useState(() => {
try {
const saved = localStorage.getItem(PROFILES_COLLAPSED_KEY);
return saved !== null ? JSON.parse(saved) : false;
} catch {
return false;
}
});
// Persist profiles collapse state to localStorage
useEffect(() => {
try {
localStorage.setItem(PROFILES_COLLAPSED_KEY, JSON.stringify(profilesCollapsed));
} catch (error) {
console.warn('Failed to save profiles collapse state:', error);
}
}, [profilesCollapsed]);
// Load profiles on component mount
useEffect(() => {
loadProfiles();
}, []);
// Update selected profile when prop changes
useEffect(() => {
if (currentProfile) {
setSelectedProfile(currentProfile);
}
}, [currentProfile]);
// Poll for running app every 2 seconds
useEffect(() => {
const checkRunningApp = () => {
setMainRunningApp(Router.MainRunningApp);
};
// Check immediately
checkRunningApp();
// Set up polling interval
const interval = setInterval(checkRunningApp, 2000);
// Cleanup interval on unmount
return () => clearInterval(interval);
}, []);
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();
// Automatically switch to the newly created profile
await handleProfileChange(profileName);
} 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 handleDropdownChange = (option: DropdownOption) => {
if (option.data === "__NEW_PROFILE__") {
handleCreateProfile();
} else {
handleProfileChange(option.data);
}
};
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: string) => ({
data: profile,
label: profile === "decky-lsfg-vk" ? "Default" : profile
})),
{
data: "__NEW_PROFILE__",
label: "New Profile"
}
];
return (
<>
<style>
{`
.LSFG_ProfilesCollapseButton_Container > div > div > div > button {
height: 10px !important;
}
.LSFG_ProfilesCollapseButton_Container > div > div > div > div > button {
height: 10px !important;
}
`}
</style>
<PanelSectionRow>
<div
style={{
fontSize: "14px",
fontWeight: "bold",
marginTop: "16px",
marginBottom: "8px",
borderBottom: "1px solid rgba(255, 255, 255, 0.2)",
paddingBottom: "4px",
color: "white"
}}
>
Profile: {selectedProfile === "decky-lsfg-vk" ? "Default" : selectedProfile}
</div>
</PanelSectionRow>
<PanelSectionRow>
<div className="LSFG_ProfilesCollapseButton_Container">
<ButtonItem
layout="below"
bottomSeparator={profilesCollapsed ? "standard" : "none"}
onClick={() => setProfilesCollapsed(!profilesCollapsed)}
>
{profilesCollapsed ? (
<RiArrowDownSFill
style={{ transform: "translate(0, -13px)", fontSize: "1.5em" }}
/>
) : (
<RiArrowUpSFill
style={{ transform: "translate(0, -12px)", fontSize: "1.5em" }}
/>
)}
</ButtonItem>
</div>
</PanelSectionRow>
{!profilesCollapsed && (
<>
{/* Display currently running game info */}
{mainRunningApp && (
<PanelSectionRow>
<div style={{
padding: "8px 12px",
backgroundColor: "rgba(0, 255, 0, 0.1)",
borderRadius: "4px",
border: "1px solid rgba(0, 255, 0, 0.3)",
fontSize: "13px"
}}>
<strong>{mainRunningApp.display_name}</strong> running. Close game to change profile.
</div>
</PanelSectionRow>
)}
<PanelSectionRow>
<Field
label=""
childrenLayout="below"
childrenContainerWidth="max"
>
<Dropdown
rgOptions={profileOptions}
selectedOption={selectedProfile}
onChange={handleDropdownChange}
disabled={isLoading || !!mainRunningApp}
/>
</Field>
</PanelSectionRow>
<PanelSectionRow>
<ButtonItem
layout="below"
onClick={handleRenameProfile}
disabled={isLoading || selectedProfile === "decky-lsfg-vk" || !!mainRunningApp}
>
Rename
</ButtonItem>
</PanelSectionRow>
<PanelSectionRow>
<ButtonItem
layout="below"
onClick={handleDeleteProfile}
disabled={isLoading || selectedProfile === "decky-lsfg-vk" || !!mainRunningApp}
>
Delete
</ButtonItem>
</PanelSectionRow>
</>
)}
</>
);
}
|