mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-11 11:27:03 +00:00
40 lines
1.2 KiB
Svelte
40 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
import Login from "@assets/icons/login-3.svg?dataurl"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import Divider from "@lib/components/Divider.svelte"
|
|
import CardButton from "@lib/components/CardButton.svelte"
|
|
import MenuSpacesItem from "@app/components/MenuSpacesItem.svelte"
|
|
import SpaceAdd from "@app/components/SpaceAdd.svelte"
|
|
import {userRoomsByUrl, PLATFORM_RELAYS} from "@app/core/state"
|
|
import {pushModal} from "@app/util/modal"
|
|
|
|
const addSpace = () => pushModal(SpaceAdd)
|
|
</script>
|
|
|
|
<div class="column menu gap-2">
|
|
{#each PLATFORM_RELAYS as url (url)}
|
|
<MenuSpacesItem {url} />
|
|
{:else}
|
|
{#if $userRoomsByUrl.size > 0}
|
|
{#each $userRoomsByUrl.keys() as url (url)}
|
|
<MenuSpacesItem {url} />
|
|
{/each}
|
|
<Divider />
|
|
{/if}
|
|
<Button onclick={addSpace}>
|
|
<CardButton class="dark:btn-neutral">
|
|
{#snippet icon()}
|
|
<div><Icon icon={Login} size={7} /></div>
|
|
{/snippet}
|
|
{#snippet title()}
|
|
<div>Add a space</div>
|
|
{/snippet}
|
|
{#snippet info()}
|
|
<div>Join or create a new space</div>
|
|
{/snippet}
|
|
</CardButton>
|
|
</Button>
|
|
{/each}
|
|
</div>
|