summaryrefslogtreecommitdiff
path: root/src/components/InstallationStatus.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-29 07:53:45 -0700
committerGitHub <noreply@github.com>2025-07-29 10:53:45 -0400
commit0b5e71fe916e92ef9ecf7de91ca43371c4bd6d25 (patch)
tree30793600da162d9d8fcc63cddeebb1e5a0b058cb /src/components/InstallationStatus.tsx
parent526e4e590bb0125f7f7a08e214986afec73e7439 (diff)
downloadDecky-Framegen-0b5e71fe916e92ef9ecf7de91ca43371c4bd6d25.tar.gz
Decky-Framegen-0b5e71fe916e92ef9ecf7de91ca43371c4bd6d25.zip
wording and layout tweaks (#125)v0.11.8
* wording and layout tweaks * red in remove button * reorganize frontend components * fix ld preload permissions issue for decky 3.1.10 * bump ver
Diffstat (limited to 'src/components/InstallationStatus.tsx')
-rw-r--r--src/components/InstallationStatus.tsx28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/InstallationStatus.tsx b/src/components/InstallationStatus.tsx
new file mode 100644
index 0000000..713b5e1
--- /dev/null
+++ b/src/components/InstallationStatus.tsx
@@ -0,0 +1,28 @@
+import { PanelSectionRow, ButtonItem } from "@decky/ui";
+import { MESSAGES, STYLES } from "../utils/constants";
+
+interface InstallationStatusProps {
+ pathExists: boolean | null;
+ installing: boolean;
+ onInstallClick: () => void;
+}
+
+export function InstallationStatus({ pathExists, installing, onInstallClick }: InstallationStatusProps) {
+ if (pathExists !== false) return null;
+
+ return (
+ <>
+ <PanelSectionRow>
+ <div style={STYLES.statusNotInstalled}>
+ {MESSAGES.modNotInstalled}
+ </div>
+ </PanelSectionRow>
+
+ <PanelSectionRow>
+ <ButtonItem layout="below" onClick={onInstallClick} disabled={installing}>
+ {installing ? MESSAGES.installing : MESSAGES.installButton}
+ </ButtonItem>
+ </PanelSectionRow>
+ </>
+ );
+}