forked from coracle/flotilla
28 lines
845 B
Svelte
28 lines
845 B
Svelte
<script lang="ts">
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import AlertAdd from "@app/components/AlertAdd.svelte"
|
|
import AlertItem from "@app/components/AlertItem.svelte"
|
|
import {pushModal} from "@app/modal"
|
|
import {alerts} from "@app/state"
|
|
|
|
const startAlert = () => pushModal(AlertAdd)
|
|
</script>
|
|
|
|
<div class="card2 bg-alt flex flex-col gap-6 shadow-xl">
|
|
<div class="flex items-center justify-between">
|
|
<strong>Alerts</strong>
|
|
<Button class="btn btn-primary btn-sm" onclick={startAlert}>
|
|
<Icon icon="add-circle" />
|
|
Add Alert
|
|
</Button>
|
|
</div>
|
|
<div class="col-4">
|
|
{#each $alerts as alert (alert.event.id)}
|
|
<AlertItem {alert} />
|
|
{:else}
|
|
<p class="text-center opacity-75 py-12">No alerts found</p>
|
|
{/each}
|
|
</div>
|
|
</div>
|