Skip to content

Commit 4032fdb

Browse files
Settings page
1 parent 45a0fc3 commit 4032fdb

File tree

9 files changed

+307
-232
lines changed

9 files changed

+307
-232
lines changed

app/LauncherPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function LauncherPage({
1212
}>) {
1313
return (
1414
<div className="launcher-page">
15-
<div className="launcher-page-header border-bottom border-primary">
15+
<div className="launcher-page-header">
1616
<NavBar title={title} buttons={buttons} />
1717
</div>
1818
<div className="launcher-page-content">

app/builds/page.tsx

-218
This file was deleted.

app/contexts.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { createContext } from "react";
2+
import { SettingsContext } from "./types";
3+
4+
export const SettingsCtx = createContext<SettingsContext>({});

app/css/openfusion-layout.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ html, body {
3030

3131
.launcher-page-content {
3232
width: 100%;
33-
overflow-y: scroll;
33+
overflow-y: auto;
3434
}
3535

3636
.loading-screen-component {

app/page.tsx

+2-12
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ export default function Home() {
5858

5959
const [showAboutModal, setShowAboutModal] = useState(false);
6060

61-
const [showConfigPage, setShowConfigPage] = useState(false);
62-
6361
const getSelectedServer = () => {
6462
if (selectedIdx >= 0 && selectedIdx < servers.length) {
6563
return servers[selectedIdx];
@@ -155,7 +153,6 @@ export default function Home() {
155153
const handleKeydown = (e: KeyboardEvent) => {
156154
if (e.key === "Escape") {
157155
setSelectedServer(undefined);
158-
setShowConfigPage(false);
159156
}
160157

161158
// Server selector controls
@@ -453,13 +450,6 @@ export default function Home() {
453450
icon="angle-double-right"
454451
text="Connect "
455452
/>
456-
<Button
457-
onClick={() => window.location.href = "/builds"}
458-
enabled={true}
459-
variant="primary"
460-
icon="database"
461-
tooltip="Edit Game Builds"
462-
/>
463453
</Stack>
464454
</Col>
465455
</Row>
@@ -475,11 +465,11 @@ export default function Home() {
475465
</div>
476466
<div id="config-button-div">
477467
<Button
478-
onClick={() => setShowConfigPage(true)}
468+
onClick={() => window.location.href = "/settings"}
479469
enabled={true}
480470
variant="primary"
481471
icon="cog"
482-
tooltip="Edit Configuration"
472+
tooltip="Settings"
483473
/>
484474
</div>
485475
<EditServerModal

0 commit comments

Comments
 (0)