fix patching
This commit is contained in:
@@ -15,7 +15,8 @@
|
||||
|
||||
const launch = () => {
|
||||
launching.set(true);
|
||||
window.dispatchEvent(new CustomEvent("launch", { detail: { patch: $patch } }));;
|
||||
const patching = $patch;
|
||||
window.dispatchEvent(new CustomEvent("launch", { detail: { patch: patching } }));;
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -34,11 +35,6 @@
|
||||
disabled={$launching}
|
||||
on:click={launch}>Launch</Button
|
||||
>
|
||||
<Checkbox
|
||||
disabled={$launching}
|
||||
bind:checked={$patch}
|
||||
on:click={() => patch.set(!$patch)}>Patch</Checkbox
|
||||
>
|
||||
<div
|
||||
class="w-full flex flex-col justify-center items-center gap-2 mt-2 {$launching
|
||||
? 'animate-fadeIn '
|
||||
|
@@ -5,17 +5,13 @@
|
||||
Input,
|
||||
Label,
|
||||
Toggle,
|
||||
Tooltip,
|
||||
Tooltip
|
||||
} from "flowbite-svelte";
|
||||
import { FileSearchSolid, FolderSolid } from "flowbite-svelte-icons";
|
||||
import { currentPage } from "../storage/localStore";
|
||||
import { Page } from "../consts/pages";
|
||||
import { patch, presence } from "./../storage/localStore";
|
||||
|
||||
let folderPath: string = "";
|
||||
|
||||
let patching: boolean = true;
|
||||
let presence: boolean = true;
|
||||
|
||||
window.addEventListener("settings-result", (e) => {
|
||||
const settings: Record<string, string>[] = (e as CustomEvent).detail;
|
||||
const osuPath = settings.find((setting) => setting.key == "osuPath");
|
||||
@@ -32,11 +28,13 @@
|
||||
};
|
||||
|
||||
const togglePatching = () => {
|
||||
patching = !patching;
|
||||
patch.set(!$patch);
|
||||
//TODO: save in config
|
||||
};
|
||||
|
||||
const togglePresence = () => {
|
||||
presence = !presence;
|
||||
presence.set(!$presence);
|
||||
//TODO: save in config
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -44,10 +42,10 @@
|
||||
class="h-[265px] flex flex-col justify-start p-3 animate-fadeIn opacity-0"
|
||||
>
|
||||
<div class="flex flex-col gap-2 p-3">
|
||||
<Toggle class="w-fit" bind:checked={presence} on:click={togglePresence}
|
||||
<Toggle class="w-fit" bind:checked={$presence} on:click={togglePresence}
|
||||
>Discord Presence</Toggle
|
||||
>
|
||||
<Toggle class="w-fit" bind:checked={patching} on:click={togglePatching}
|
||||
<Toggle class="w-fit" bind:checked={$patch} on:click={togglePatching}
|
||||
>Patching</Toggle
|
||||
>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user