blob: 011ce22dd8cbfca80117261bfc9c3d7f6f1cb35a (
plain)
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
|
import { useState } from "react";
import { PanelSection, PanelSectionRow, ButtonItem } from "@decky/ui";
import { callable, definePlugin } from "@decky/api";
import { FaShip } from "react-icons/fa";
const runInstallFGMod = callable<[], { status: string; message?: string; output?: string }>("run_install_fgmod");
function Content() {
const [installing, setInstalling] = useState(false);
const [installResult, setInstallResult] = useState<{ status: string; output?: string; message?: string } | null>(
null
);
const handleInstallClick = async () => {
setInstalling(true);
const result = await runInstallFGMod();
setInstalling(false);
setInstallResult(result);
};
return (
<PanelSection title="FG Mod Installer">
<PanelSectionRow>
<ButtonItem layout="below" onClick={handleInstallClick} disabled={installing}>
{installing ? "Installing..." : "Install FG Mod"}
</ButtonItem>
</PanelSectionRow>
{installResult && (
<PanelSectionRow>
<div>
<strong>Status:</strong> {installResult.status === "success" ? "Success" : "Error"} <br />
{installResult.output && (
<>
<strong>Output:</strong>
<pre style={{ whiteSpace: "pre-wrap" }}>{installResult.output}</pre>
</>
)}
{installResult.message && (
<>
<strong>Error:</strong> {installResult.message}
</>
)}
</div>
</PanelSectionRow>
)}
</PanelSection>
);
}
export default definePlugin(() => ({
name: "FG Mod Installer",
titleView: <div>FG Mod Installer</div>,
content: <Content />,
icon: <FaShip />,
onDismount() {
console.log("Plugin unmounted");
},
}));
|