forked from coracle/flotilla
53 lines
1.7 KiB
Svelte
53 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import Login from "@assets/icons/login-3.svg?dataurl"
|
|
import AddCircle from "@assets/icons/add-circle.svg?dataurl"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import CardButton from "@lib/components/CardButton.svelte"
|
|
import ModalHeader from "@lib/components/ModalHeader.svelte"
|
|
import SpaceCreateExternal from "@app/components/SpaceCreateExternal.svelte"
|
|
import SpaceInviteAccept from "@app/components/SpaceInviteAccept.svelte"
|
|
import {pushModal} from "@app/util/modal"
|
|
|
|
const startCreate = () => pushModal(SpaceCreateExternal)
|
|
|
|
const startJoin = () => pushModal(SpaceInviteAccept)
|
|
</script>
|
|
|
|
<div class="column gap-4">
|
|
<ModalHeader>
|
|
{#snippet title()}
|
|
<div>Add a Space</div>
|
|
{/snippet}
|
|
{#snippet info()}
|
|
<div>Spaces are places where communities come together to work, play, and hang out.</div>
|
|
{/snippet}
|
|
</ModalHeader>
|
|
<Button onclick={startJoin}>
|
|
<CardButton class="btn-primary">
|
|
{#snippet icon()}
|
|
<div><Icon icon={Login} size={7} /></div>
|
|
{/snippet}
|
|
{#snippet title()}
|
|
<div>Join a space</div>
|
|
{/snippet}
|
|
{#snippet info()}
|
|
<div>Enter an invite link to join an existing space.</div>
|
|
{/snippet}
|
|
</CardButton>
|
|
</Button>
|
|
<Button onclick={startCreate}>
|
|
<CardButton class="btn-neutral">
|
|
{#snippet icon()}
|
|
<div><Icon icon={AddCircle} size={7} /></div>
|
|
{/snippet}
|
|
{#snippet title()}
|
|
<div>Create a space</div>
|
|
{/snippet}
|
|
{#snippet info()}
|
|
<div>Just a few questions and you'll be on your way.</div>
|
|
{/snippet}
|
|
</CardButton>
|
|
</Button>
|
|
</div>
|