added idle scrren intigration
This commit is contained in:
parent
b98141bda0
commit
b704118995
2 changed files with 25 additions and 18 deletions
|
@ -15,23 +15,7 @@
|
||||||
|
|
||||||
<div class="flex h-full flex-col">
|
<div class="flex h-full flex-col">
|
||||||
<div>
|
<div>
|
||||||
<button
|
|
||||||
class="btn"
|
|
||||||
onclick={() => {
|
|
||||||
ShowSeconds.v = !ShowSeconds.v;
|
|
||||||
localStorage.setItem("ShowSeconds", String(ShowSeconds.v));
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{#if ShowSeconds.v}Disable Seconds{:else}Enable Seconds{/if}</button
|
|
||||||
>
|
|
||||||
<Modal big={true} close={colseModal.v}>
|
|
||||||
<Content>
|
|
||||||
<EditTimetableDiv />
|
|
||||||
</Content>
|
|
||||||
<Trigger>
|
|
||||||
<button class="btn">Edit timetable </button>
|
|
||||||
</Trigger>
|
|
||||||
</Modal>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex flex-1 flex-col items-center justify-center">
|
<div class="flex flex-1 flex-col items-center justify-center">
|
||||||
|
|
|
@ -52,6 +52,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
import { OpenTab } from "./wordle/InfoAndSetings/main.svelte";
|
import { OpenTab } from "./wordle/InfoAndSetings/main.svelte";
|
||||||
|
import { Modal, Content, Trigger } from "sv-popup";
|
||||||
|
import { colseModal, ShowSeconds } from "./IdleScreen/logic/TimeAndTableData.svelte.js";
|
||||||
|
import EditTimetableDiv from "./IdleScreen/components/timetable/EditTimetable.svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="mb-1 flex items-center justify-between rounded border-2">
|
<div class="mb-1 flex items-center justify-between rounded border-2">
|
||||||
|
@ -79,8 +82,28 @@
|
||||||
</span>
|
</span>
|
||||||
<div class="flex gap-2">
|
<div class="flex gap-2">
|
||||||
{#if CurrentPage == "/wordle"}
|
{#if CurrentPage == "/wordle"}
|
||||||
<button class="btn dull mini" onclick={() => OpenTab("WordLength")}> Change word legnth </button>
|
<button class="btn dull mini" onclick={() => OpenTab("WordLength")}>
|
||||||
|
Change word legnth
|
||||||
|
</button>
|
||||||
<button class="btn dull mini" onclick={() => OpenTab("Stats")}>Stats </button>
|
<button class="btn dull mini" onclick={() => OpenTab("Stats")}>Stats </button>
|
||||||
|
{:else if CurrentPage == "/IdleScreen"}
|
||||||
|
<button
|
||||||
|
class="btn dull mini"
|
||||||
|
onclick={() => {
|
||||||
|
ShowSeconds.v = !ShowSeconds.v;
|
||||||
|
localStorage.setItem("ShowSeconds", String(ShowSeconds.v));
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{#if ShowSeconds.v}Disable Seconds{:else}Enable Seconds{/if}</button
|
||||||
|
>
|
||||||
|
<Modal big={true} close={colseModal.v}>
|
||||||
|
<Content>
|
||||||
|
<EditTimetableDiv />
|
||||||
|
</Content>
|
||||||
|
<Trigger>
|
||||||
|
<button class="btn dull mini">Edit timetable </button>
|
||||||
|
</Trigger>
|
||||||
|
</Modal>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue