Overhaul relay settings page
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
<script lang="ts">
|
||||
import type {Readable} from "svelte/store"
|
||||
import {SvelteSet} from "svelte/reactivity"
|
||||
import {waitForThunkError} from "@welshman/app"
|
||||
import type {Thunk} from "@welshman/app"
|
||||
import CloseCircle from "@assets/icons/close-circle.svg?dataurl"
|
||||
import AltArrowLeft from "@assets/icons/alt-arrow-left.svg?dataurl"
|
||||
import AltArrowRight from "@assets/icons/alt-arrow-right.svg?dataurl"
|
||||
import {errorMessage} from "@lib/util"
|
||||
import Icon from "@lib/components/Icon.svelte"
|
||||
import Button from "@lib/components/Button.svelte"
|
||||
import Modal from "@lib/components/Modal.svelte"
|
||||
import ModalBody from "@lib/components/ModalBody.svelte"
|
||||
import ModalFooter from "@lib/components/ModalFooter.svelte"
|
||||
import RelayAdd from "@app/components/RelayAdd.svelte"
|
||||
import RelayItem from "@app/components/RelayItem.svelte"
|
||||
import {pushModal} from "@app/util/modal"
|
||||
import {pushToast} from "@app/util/toast"
|
||||
|
||||
interface Props {
|
||||
title: string
|
||||
subtitle: string
|
||||
relays: Readable<string[]>
|
||||
addRelay: (url: string) => Promise<Thunk>
|
||||
removeRelay: (url: string) => Promise<Thunk>
|
||||
matchRelay?: (url: string) => boolean
|
||||
}
|
||||
|
||||
const {title, subtitle, relays, addRelay, removeRelay, matchRelay}: Props = $props()
|
||||
|
||||
const back = () => history.back()
|
||||
|
||||
const add = () => pushModal(RelayAdd, {relays, addRelay, matchRelay})
|
||||
|
||||
const remove = async (url: string) => {
|
||||
loading.add(url)
|
||||
|
||||
try {
|
||||
const error = await waitForThunkError(await removeRelay(url))
|
||||
|
||||
if (error) {
|
||||
pushToast({
|
||||
theme: "error",
|
||||
message: `Failed to remove relay: ${errorMessage(error)}`,
|
||||
})
|
||||
}
|
||||
} finally {
|
||||
loading.delete(url)
|
||||
}
|
||||
}
|
||||
|
||||
const loading = $state(new SvelteSet<string>())
|
||||
</script>
|
||||
|
||||
<Modal>
|
||||
<ModalBody>
|
||||
<h2 class="text-xl">{title}</h2>
|
||||
<p class="text-sm">{subtitle}</p>
|
||||
{#each $relays.toSorted() as url (url)}
|
||||
<RelayItem {url}>
|
||||
<Button
|
||||
class="btn btn-sm btn-neutral"
|
||||
disabled={loading.has(url)}
|
||||
onclick={() => remove(url)}>
|
||||
{#if loading.has(url)}
|
||||
<span class="loading loading-spinner loading-sm"></span>
|
||||
{:else}
|
||||
<Icon icon={CloseCircle} />
|
||||
{/if}
|
||||
Remove
|
||||
</Button>
|
||||
</RelayItem>
|
||||
{/each}
|
||||
</ModalBody>
|
||||
<ModalFooter>
|
||||
<Button class="btn btn-link" onclick={back}>
|
||||
<Icon icon={AltArrowLeft} />
|
||||
Go back
|
||||
</Button>
|
||||
<Button class="btn btn-primary" onclick={add}>
|
||||
Add Relays
|
||||
<Icon icon={AltArrowRight} />
|
||||
</Button>
|
||||
</ModalFooter>
|
||||
</Modal>
|
||||
Reference in New Issue
Block a user