-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6500286
commit a1f8106
Showing
1 changed file
with
237 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,237 @@ | ||
<script lang="ts"> | ||
import { | ||
Button, | ||
Modal, | ||
TableBodyCell, | ||
Table, | ||
TableBody, | ||
TableBodyRow, | ||
TableHead, | ||
TableHeadCell, | ||
Heading, | ||
Input, | ||
Label, | ||
Alert | ||
} from 'flowbite-svelte'; | ||
let openList = false; | ||
let openAbfrage = false; | ||
let list = [ | ||
{ | ||
name: 'Banane', | ||
num: 1 | ||
}, | ||
{ | ||
name: 'Apfel (rot)', | ||
num: 2 | ||
}, | ||
{ | ||
name: 'Sellerie', | ||
num: 4 | ||
}, | ||
{ | ||
name: 'Bio Ingwer', | ||
num: 11 | ||
}, | ||
{ | ||
name: 'Birnen Abate Fetel', | ||
num: 18 | ||
}, | ||
{ | ||
name: 'Apfel (grün)', | ||
num: 4 | ||
}, | ||
{ | ||
name: 'Fleischtomaten', | ||
num: 26 | ||
}, | ||
{ | ||
name: 'Tomaten Rispen', | ||
num: 27 | ||
}, | ||
{ | ||
name: 'Weißkohl', | ||
num: 28 | ||
}, | ||
{ | ||
name: 'Blaukraut/Rotkohl', | ||
num: 29 | ||
}, | ||
{ | ||
name: 'Bananen Chiquita', | ||
num: 30 | ||
}, | ||
{ | ||
name: 'Apfel Pink Lady', | ||
num: 32 | ||
}, | ||
{ | ||
name: 'Hokkaido Kürbis', | ||
num: 36 | ||
}, | ||
{ | ||
name: 'Paprika (rot)', | ||
num: 44 | ||
}, | ||
{ | ||
name: 'Wassermelonen', | ||
num: 50 | ||
}, | ||
{ | ||
name: 'Birnen (rot)', | ||
num: 80 | ||
}, | ||
{ | ||
name: 'Trauben hell kernlos', | ||
num: 81 | ||
}, | ||
{ | ||
name: 'Wirsing', | ||
num: 83 | ||
}, | ||
{ | ||
name: 'Zucchini', | ||
num: 84 | ||
}, | ||
{ | ||
name: 'Grapefruit rosé', | ||
num: 548 | ||
}, | ||
{ | ||
name: 'Kiwi Gold', | ||
num: 566 | ||
}, | ||
{ | ||
name: 'Lauch/Poree', | ||
num: 620 | ||
}, | ||
{ | ||
name: 'Avocado', | ||
num: 642 | ||
}, | ||
{ | ||
name: 'Kiwi', | ||
num: 644 | ||
}, | ||
{ | ||
name: 'Mango', | ||
num: 646 | ||
}, | ||
{ | ||
name: 'Kopfsalat', | ||
num: 666 | ||
}, | ||
{ | ||
name: 'Gurken', | ||
num: 683 | ||
}, | ||
{ | ||
name: 'Kohlrabi', | ||
num: 725 | ||
}, | ||
{ | ||
name: 'Kartoffeln', | ||
num: 739 | ||
}, | ||
{ | ||
name: 'Lauchzwiebel', | ||
num: 745 | ||
}, | ||
{ | ||
name: 'Radieschen', | ||
num: 751 | ||
}, | ||
{ | ||
name: 'Aubergine', | ||
num: 852 | ||
}, | ||
{ | ||
name: 'Blumenkohl', | ||
num: 883 | ||
} | ||
]; | ||
let abfrage = list[getRandIdx()]; | ||
let abfrageRichtig = -1; | ||
let abfrageInput = 0; | ||
function getRandIdx(): number { | ||
return Math.floor(Math.random() * list.length); | ||
} | ||
</script> | ||
|
||
<main class="grid"> | ||
<Button | ||
class="place-self-center mt-24" | ||
on:click={() => { | ||
openList = true; | ||
}} | ||
>Ganze Liste | ||
</Button> | ||
|
||
<Button | ||
class="place-self-center mt-6" | ||
on:click={() => { | ||
openAbfrage = true; | ||
abfrage = list[getRandIdx()]; | ||
}}>GO!</Button | ||
> | ||
|
||
<Modal title="Artikel Liste" bind:open={openList} autoclose outsideclose> | ||
<Table> | ||
<TableHead> | ||
<TableHeadCell>Artikel</TableHeadCell> | ||
<TableHeadCell>Nummer</TableHeadCell> | ||
</TableHead> | ||
|
||
<TableBody> | ||
{#each list as item} | ||
<TableBodyRow> | ||
<TableBodyCell>{item.name}</TableBodyCell> | ||
<TableBodyCell>{item.num}</TableBodyCell> | ||
</TableBodyRow> | ||
{/each} | ||
</TableBody> | ||
</Table> | ||
<svelte:fragment slot="footer"> | ||
<Button>OK!</Button> | ||
</svelte:fragment> | ||
</Modal> | ||
|
||
<Modal title="Artikel Abfrage" bind:open={openAbfrage} outsideclose> | ||
<Heading class="text-center">{abfrage.name}</Heading> | ||
<Label class="mb-2">Artikel Nummer?</Label> | ||
<Input type="number" required bind:value={abfrageInput} /> | ||
{#if abfrageRichtig == 0} | ||
<Alert color="red">Falsch. Versuch's nochmal D:</Alert> | ||
{:else if abfrageRichtig == 1} | ||
<Alert color="green">Richtig!</Alert> | ||
{/if} | ||
|
||
<svelte:fragment slot="footer"> | ||
<Button | ||
on:click={() => { | ||
abfrageRichtig = abfrageInput == abfrage.num ? 1 : 0; | ||
}}>Prüfen</Button | ||
> | ||
<Button | ||
on:click={() => { | ||
alert(`Die Lösung zu ${abfrage.name} ist ${abfrage.num}!`); | ||
}}>Lösung</Button | ||
> | ||
<Button | ||
on:click={() => { | ||
abfrage = list[getRandIdx()]; | ||
abfrageRichtig = -1; | ||
abfrageInput = 0; | ||
}}>Nächstes</Button | ||
> | ||
<Button | ||
on:click={() => { | ||
openAbfrage = false; | ||
}}>Schließen</Button | ||
> | ||
</svelte:fragment> | ||
</Modal> | ||
</main> | ||
|
||
<style lang="scss"> | ||
</style> |