Files
flotilla/src/app/components/SpaceCheck.svelte
T
2024-10-10 17:50:27 -07:00

78 lines
2.4 KiB
Svelte

<script lang="ts">
import {onMount} from "svelte"
import {goto} from "$app/navigation"
import {ctx, sleep} from "@welshman/lib"
import {displayRelayUrl} from "@welshman/util"
import Icon from "@lib/components/Icon.svelte"
import Button from "@lib/components/Button.svelte"
import Spinner from "@lib/components/Spinner.svelte"
import Confirm from "@lib/components/Confirm.svelte"
import ModalHeader from "@lib/components/ModalHeader.svelte"
import ModalFooter from "@lib/components/ModalFooter.svelte"
import {attemptRelayAccess} from "@app/commands"
import {makeSpacePath} from "@app/routes"
import {pushModal} from "@app/modal"
export let url
const back = () => history.back()
const confirm = () => goto(makeSpacePath(url), {replaceState: true})
const next = () => {
if (!error && ctx.net.pool.get(url).meta.lastAuth === 0) {
pushModal(Confirm, {
confirm,
message: `This space does not appear to limit who can post to it. This can result
in a large amount of spam or other objectionable content. Continue?`,
})
} else {
confirm()
}
}
let error: string | undefined
let loading = true
onMount(async () => {
;[error] = await Promise.all([attemptRelayAccess(url), sleep(3000)])
loading = false
})
</script>
<form class="column gap-4" on:submit|preventDefault={next}>
<ModalHeader>
<div slot="title">Checking Space...</div>
<div slot="info">
Connecting you to to <span class="text-primary">{displayRelayUrl(url)}</span>
</div>
</ModalHeader>
<div class="m-auto flex flex-col gap-4">
{#if loading}
<Spinner loading>Hold tight, we're checking your connection.</Spinner>
{:else if error}
<p>Oops! We ran into some problems:</p>
<p class="card2 bg-alt">{error}</p>
<p>
If you're not sure what the error message means, you may need to contact the space
administrator to get more information.
</p>
{:else}
<p>
Looking good, we were able to connect you to this space! Click below to continue when you're
ready.
</p>
{/if}
</div>
<ModalFooter>
<Button class="btn btn-link" on:click={back}>
<Icon icon="alt-arrow-left" />
Go back
</Button>
<Button type="submit" class="btn btn-primary" disabled={loading}>
Go to Space
<Icon icon="alt-arrow-right" class="!bg-base-300" />
</Button>
</ModalFooter>
</form>