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
|
import { ButtonItem, DialogButton, Field, Focusable, PanelSection, PanelSectionRow, gamepadDialogClasses } from "@decky/ui";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import { FaArrowLeft } from "react-icons/fa";
import type { FlatpakApp, LsfgConfig, WorkaroundState } from "../api/lsfgApi";
import { CollapsibleItemGroup, collapsibleItemGroupStyles } from "./CollapsibleItemGroup";
import { ConfigurationSection } from "./ConfigurationSection";
import { FlatpakWorkaroundsSection } from "./FlatpakWorkaroundsSection";
import { FpsMultiplierControl } from "./FpsMultiplierControl";
import { ProfileDetails } from "./ProfileDetails";
interface Props {
apps: FlatpakApp[];
runningApp: FlatpakApp | null;
loading: boolean;
busyAppId: string;
onRefresh: () => Promise<void>;
onEnable: (appId: string) => Promise<boolean>;
onRemove: (appId: string) => Promise<boolean>;
onConfigChange: (appId: string, config: LsfgConfig) => Promise<boolean>;
onWorkaroundChange: (appId: string, state: WorkaroundState) => Promise<boolean>;
}
function usePersistentCollapsed(key: string) {
const [collapsed, setCollapsed] = useState(() => {
try {
return localStorage.getItem(key) !== "false";
} catch {
return true;
}
});
useEffect(() => {
try {
localStorage.setItem(key, String(collapsed));
} catch {}
}, [collapsed, key]);
return [collapsed, () => setCollapsed((value) => !value)] as const;
}
export function FlatpakTab({
apps,
runningApp,
loading,
busyAppId,
onRefresh,
onEnable,
onRemove,
onConfigChange,
onWorkaroundChange,
}: Props) {
const [selectedAppId, setSelectedAppId] = useState<string | null>(null);
const selected = useMemo(
() => selectedAppId ? apps.find((app) => app.app_id === selectedAppId) || null : null,
[apps, selectedAppId],
);
const close = useCallback(() => setSelectedAppId(null), []);
const [enabledCollapsed, toggleEnabled] = usePersistentCollapsed("lsfg-flatpak-enabled-collapsed-v1");
const [availableCollapsed, toggleAvailable] = usePersistentCollapsed("lsfg-flatpak-available-collapsed-v1");
const enabledToggleRef = useRef<HTMLDivElement>(null);
const enabledApps = useMemo(
() => apps.filter((app) => app.enabled).sort((a, b) => a.app_name.localeCompare(b.app_name)),
[apps],
);
const availableApps = useMemo(
() => apps.filter((app) => !app.enabled).sort((a, b) => a.app_name.localeCompare(b.app_name)),
[apps],
);
const itemFor = (app: FlatpakApp) => ({
id: app.app_id,
label: app.app_name,
description: `${app.app_id} · ${app.prepared && !app.owned ? "Prepared externally" : "Available"}`,
});
if (!selectedAppId) {
return (
<PanelSection title="Flatpak">
<style>{collapsibleItemGroupStyles}</style>
<CollapsibleItemGroup
title="Enabled"
items={enabledApps.map((app) => ({
id: app.app_id,
label: app.app_name,
description: `${app.app_id}${app.app_id === runningApp?.app_id ? " · Running" : ""}`,
}))}
collapsed={enabledCollapsed}
onToggle={toggleEnabled}
onSelect={setSelectedAppId}
toggleRef={enabledToggleRef}
/>
<CollapsibleItemGroup
title="Available"
items={availableApps.map(itemFor)}
collapsed={availableCollapsed}
onToggle={toggleAvailable}
onSelect={setSelectedAppId}
/>
{apps.length === 0 && !loading && (
<PanelSectionRow>
<Field label="No Flatpak applications found" />
</PanelSectionRow>
)}
<PanelSectionRow>
<ButtonItem layout="below" disabled={loading || Boolean(busyAppId)} onClick={() => void onRefresh()}>
{loading ? "Refreshing..." : "Refresh Flatpaks"}
</ButtonItem>
</PanelSectionRow>
</PanelSection>
);
}
if (!selected) {
return (
<PanelSection title="Flatpak">
<PanelSectionRow>
<ButtonItem layout="below" onClick={close}>Back</ButtonItem>
</PanelSectionRow>
<PanelSectionRow>
<Field label="Flatpak application is no longer installed" />
</PanelSectionRow>
</PanelSection>
);
}
const busy = busyAppId === selected.app_id;
const config = selected.config;
const external = selected.prepared && !selected.owned;
const profileDescription = [
selected.app_id,
selected.runtime_branch ? `runtime ${selected.runtime_branch}` : null,
selected.enabled ? `profile ${selected.profile}` : null,
selected.app_id === runningApp?.app_id ? "Running" : null,
].filter(Boolean).join(" · ");
const changeConfig = async (
field: keyof LsfgConfig,
value: boolean | number | string | string[],
) => {
if (!config) return;
await onConfigChange(selected.app_id, { ...config, [field]: value });
};
return (
<Focusable onCancelButton={close}>
<PanelSection>
<PanelSectionRow>
<div style={{ display: "flex", alignItems: "center", width: "100%" }}>
<Focusable noFocusRing style={{ flex: "none" }}>
<DialogButton
aria-label="Back to Flatpaks"
onClick={close}
style={{
width: "48px",
minWidth: "48px",
height: "24px",
minHeight: "24px",
padding: 0,
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
>
<FaArrowLeft />
</DialogButton>
</Focusable>
<div
className={gamepadDialogClasses.FieldLabel}
style={{ flex: 1, minWidth: 0, marginLeft: "8px", overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap" }}
>
{selected.app_name}
</div>
</div>
</PanelSectionRow>
</PanelSection>
{!selected.enabled && (
<PanelSection>
<PanelSectionRow>
<ButtonItem
layout="below"
disabled={busy || external || Boolean(selected.error)}
onClick={() => void onEnable(selected.app_id)}
>
{busy ? "Enabling..." : external ? "Prepared externally" : "Enable LSFG-VK"}
</ButtonItem>
</PanelSectionRow>
{selected.error && (
<PanelSectionRow>
<Field label="Unavailable" description={selected.error} />
</PanelSectionRow>
)}
</PanelSection>
)}
{selected.enabled && config && (
<>
<FpsMultiplierControl config={config} onConfigChange={changeConfig} />
<ConfigurationSection config={config} onConfigChange={changeConfig} />
<FlatpakWorkaroundsSection
state={selected.workarounds}
disabled={busy}
onChange={(state) => onWorkaroundChange(selected.app_id, state)}
/>
<PanelSectionRow>
<ButtonItem layout="below" disabled={busy} onClick={() => void onRemove(selected.app_id)}>
{busy ? "Removing..." : "Remove Flatpak profile"}
</ButtonItem>
</PanelSectionRow>
</>
)}
<ProfileDetails description={profileDescription} />
</Focusable>
);
}
|