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
|
import { useState, useEffect } from "react";
import { PanelSection, PanelSectionRow, ButtonItem } from "@decky/ui";
import { runInstallFGMod, runUninstallFGMod } from "../api";
import { OperationResult } from "./ResultDisplay";
import { SmartClipboardButton } from "./SmartClipboardButton";
import { createAutoCleanupTimer } from "../utils";
import { TIMEOUTS, MESSAGES, STYLES } from "../utils/constants";
import optiScalerImage from "../../assets/optiscaler.png";
interface FGModInstallerSectionProps {
pathExists: boolean | null;
setPathExists: (exists: boolean | null) => void;
}
export function FGModInstallerSection({ pathExists, setPathExists }: FGModInstallerSectionProps) {
const [installing, setInstalling] = useState(false);
const [uninstalling, setUninstalling] = useState(false);
const [installResult, setInstallResult] = useState<OperationResult | null>(null);
const [uninstallResult, setUninstallResult] = useState<OperationResult | null>(null);
useEffect(() => {
if (installResult) {
return createAutoCleanupTimer(() => setInstallResult(null), TIMEOUTS.resultDisplay);
}
return () => {}; // Ensure a cleanup function is always returned
}, [installResult]);
useEffect(() => {
if (uninstallResult) {
return createAutoCleanupTimer(() => setUninstallResult(null), TIMEOUTS.resultDisplay);
}
return () => {}; // Ensure a cleanup function is always returned
}, [uninstallResult]);
const handleInstallClick = async () => {
try {
setInstalling(true);
const result = await runInstallFGMod();
setInstallResult(result);
if (result.status === "success") {
setPathExists(true);
}
} catch (e) {
console.error(e);
} finally {
setInstalling(false);
}
};
const handleUninstallClick = async () => {
try {
setUninstalling(true);
const result = await runUninstallFGMod();
setUninstallResult(result);
if (result.status === "success") {
setPathExists(false);
}
} catch (e) {
console.error(e);
} finally {
setUninstalling(false);
}
};
return (
<PanelSection>
{pathExists === false ? (
<PanelSectionRow>
<div style={STYLES.statusNotInstalled}>
{MESSAGES.modNotInstalled}
</div>
</PanelSectionRow>
) : null}
{pathExists === false ? (
<PanelSectionRow>
<ButtonItem layout="below" onClick={handleInstallClick} disabled={installing}>
{installing ? MESSAGES.installing : MESSAGES.installButton}
</ButtonItem>
</PanelSectionRow>
) : null}
{pathExists === true ? (
<PanelSectionRow>
<ButtonItem layout="below" onClick={handleUninstallClick} disabled={uninstalling}>
{uninstalling ? MESSAGES.uninstalling : MESSAGES.uninstallButton}
</ButtonItem>
</PanelSectionRow>
) : null}
{pathExists === true ? (
<PanelSectionRow>
<div style={{
display: 'flex',
justifyContent: 'center',
marginBottom: '16px'
}}>
<img
src={optiScalerImage}
alt="OptiScaler"
style={{
maxWidth: '100%',
height: 'auto',
borderRadius: '8px'
}}
/>
</div>
</PanelSectionRow>
) : null}
{pathExists === true ? (
<PanelSectionRow>
<div style={STYLES.instructionCard}>
<div style={{ fontWeight: 'bold', marginBottom: '8px', color: 'var(--decky-accent-text)' }}>
{MESSAGES.instructionTitle}
</div>
<div style={{ whiteSpace: 'pre-line' }}>
{MESSAGES.instructionText}
</div>
</div>
</PanelSectionRow>
) : null}
{pathExists === true ? (
<SmartClipboardButton
command="~/fgmod/fgmod %command%"
buttonText="Copy Patch Command"
/>
) : null}
{pathExists === true ? (
<SmartClipboardButton
command="~/fgmod/fgmod-uninstaller.sh %command%"
buttonText="Copy Unpatch Command"
/>
) : null}
</PanelSection>
);
}
|