Improve forms for entering invite codes

This commit is contained in:
Jon Staab
2025-05-20 09:35:33 -07:00
parent 573d4e3cfb
commit 664da505cd
9 changed files with 148 additions and 49 deletions
+6 -32
View File
@@ -1,49 +1,23 @@
<script lang="ts">
import {displayRelayUrl} from "@welshman/util"
import {parse, renderAsHtml} from "@welshman/content"
import Spinner from "@lib/components/Spinner.svelte"
import Button from "@lib/components/Button.svelte"
import Icon from "@lib/components/Icon.svelte"
import {preventDefault} from "@lib/html"
import {ucFirst} from "@lib/util"
import ModalHeader from "@lib/components/ModalHeader.svelte"
import ModalFooter from "@lib/components/ModalFooter.svelte"
import {pushToast} from "@app/toast"
import {clearModals} from "@app/modal"
import {attemptRelayAccess} from "@app/commands"
import SpaceAccessRequest from "@app/components/SpaceAccessRequest.svelte"
import {pushModal} from "@app/modal"
const {url, error} = $props()
const back = () => history.back()
const joinRelay = async () => {
const error = await attemptRelayAccess(url)
if (error) {
return pushToast({theme: "error", message: error})
}
pushToast({
message: "You have successfully joined the space!",
})
clearModals()
}
const join = async () => {
loading = true
try {
await joinRelay()
} finally {
loading = false
}
}
let loading = $state(false)
const requestAccess = () => pushModal(SpaceAccessRequest, {url})
</script>
<form class="column gap-4" onsubmit={preventDefault(join)}>
<form class="column gap-4" onsubmit={preventDefault(requestAccess)}>
<ModalHeader>
{#snippet title()}
<div>Access Error</div>
@@ -63,8 +37,8 @@
<Icon icon="alt-arrow-left" />
Go back
</Button>
<Button type="submit" class="btn btn-primary" disabled={loading}>
<Spinner {loading}>Request Access</Spinner>
<Button type="submit" class="btn btn-primary">
Request Access
<Icon icon="alt-arrow-right" />
</Button>
</ModalFooter>