mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-11 03:17:02 +00:00
Add eject flow
This commit is contained in:
@@ -46,6 +46,8 @@ import {
|
|||||||
loadRelay,
|
loadRelay,
|
||||||
addSession,
|
addSession,
|
||||||
subscribe,
|
subscribe,
|
||||||
|
clearStorage,
|
||||||
|
dropSession,
|
||||||
} from "@welshman/app"
|
} from "@welshman/app"
|
||||||
import {
|
import {
|
||||||
COMMENT,
|
COMMENT,
|
||||||
@@ -149,6 +151,19 @@ export const loginWithNip46 = async ({
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Log out
|
||||||
|
|
||||||
|
export const logout = async () => {
|
||||||
|
const $pubkey = pubkey.get()
|
||||||
|
|
||||||
|
if ($pubkey) {
|
||||||
|
dropSession($pubkey)
|
||||||
|
}
|
||||||
|
|
||||||
|
await clearStorage()
|
||||||
|
localStorage.clear()
|
||||||
|
}
|
||||||
|
|
||||||
// Loaders
|
// Loaders
|
||||||
|
|
||||||
export const loadUserData = (
|
export const loadUserData = (
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
const abortController = new AbortController()
|
const abortController = new AbortController()
|
||||||
|
|
||||||
const relays = BURROW_URL.startsWith('http://')
|
const relays = BURROW_URL.startsWith("http://")
|
||||||
? [normalizeRelayUrl("ws://" + stripProtocol(BURROW_URL))]
|
? [normalizeRelayUrl("ws://" + stripProtocol(BURROW_URL))]
|
||||||
: [normalizeRelayUrl(BURROW_URL)]
|
: [normalizeRelayUrl(BURROW_URL)]
|
||||||
|
|
||||||
|
|||||||
@@ -1,30 +1,28 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import {clearStorage} from "@welshman/app"
|
|
||||||
import Icon from "@lib/components/Icon.svelte"
|
import Icon from "@lib/components/Icon.svelte"
|
||||||
import Button from "@lib/components/Button.svelte"
|
import Button from "@lib/components/Button.svelte"
|
||||||
import Spinner from "@lib/components/Spinner.svelte"
|
import Spinner from "@lib/components/Spinner.svelte"
|
||||||
import ModalHeader from "@lib/components/ModalHeader.svelte"
|
import ModalHeader from "@lib/components/ModalHeader.svelte"
|
||||||
import ModalFooter from "@lib/components/ModalFooter.svelte"
|
import ModalFooter from "@lib/components/ModalFooter.svelte"
|
||||||
|
import {logout} from "@app/commands"
|
||||||
|
|
||||||
const back = () => history.back()
|
const back = () => history.back()
|
||||||
|
|
||||||
const logout = async () => {
|
const doLogout = async () => {
|
||||||
loading = true
|
loading = true
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await clearStorage()
|
await logout()
|
||||||
localStorage.clear()
|
window.location.href = "/"
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
loading = false
|
loading = false
|
||||||
}
|
}
|
||||||
|
|
||||||
window.location.reload()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let loading = false
|
let loading = false
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<form class="column gap-4" on:submit|preventDefault={logout}>
|
<form class="column gap-4" on:submit|preventDefault={doLogout}>
|
||||||
<ModalHeader>
|
<ModalHeader>
|
||||||
<div slot="title">Are you sure you want<br />to log out?</div>
|
<div slot="title">Are you sure you want<br />to log out?</div>
|
||||||
</ModalHeader>
|
</ModalHeader>
|
||||||
|
|||||||
@@ -1 +1,102 @@
|
|||||||
hi
|
<script lang="ts">
|
||||||
|
import {postJson} from "@welshman/lib"
|
||||||
|
import {session} from "@welshman/app"
|
||||||
|
import {slideAndFade} from "@lib/transition"
|
||||||
|
import Link from "@lib/components/Link.svelte"
|
||||||
|
import Icon from "@lib/components/Icon.svelte"
|
||||||
|
import Button from "@lib/components/Button.svelte"
|
||||||
|
import Spinner from "@lib/components/Spinner.svelte"
|
||||||
|
import Field from "@lib/components/Field.svelte"
|
||||||
|
import ModalHeader from "@lib/components/ModalHeader.svelte"
|
||||||
|
import ModalFooter from "@lib/components/ModalFooter.svelte"
|
||||||
|
import {PLATFORM_NAME, BURROW_URL} from "@app/state"
|
||||||
|
import {pushToast} from "@app/toast"
|
||||||
|
import {logout} from "@app/commands"
|
||||||
|
|
||||||
|
const email = $session?.email
|
||||||
|
|
||||||
|
const back = () => history.back()
|
||||||
|
|
||||||
|
const confirm = async () => {
|
||||||
|
loading = true
|
||||||
|
|
||||||
|
try {
|
||||||
|
const payload = {email, password, eject: true}
|
||||||
|
const res = await postJson(BURROW_URL + "/user", payload, {method: "delete"})
|
||||||
|
|
||||||
|
if (res.error) {
|
||||||
|
return pushToast({message: res.error, theme: "error"})
|
||||||
|
}
|
||||||
|
|
||||||
|
success = true
|
||||||
|
pushToast({message: "Success! Please check your inbox and continue when you're ready."})
|
||||||
|
|
||||||
|
await logout()
|
||||||
|
} finally {
|
||||||
|
loading = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const reload = () => {
|
||||||
|
loading = true
|
||||||
|
window.location.href = "/"
|
||||||
|
}
|
||||||
|
|
||||||
|
let password = ""
|
||||||
|
let success = false
|
||||||
|
let loading = false
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="column gap-4">
|
||||||
|
<ModalHeader>
|
||||||
|
<div slot="title">Export your keys</div>
|
||||||
|
</ModalHeader>
|
||||||
|
<p>Here's what the process looks like:</p>
|
||||||
|
<ul class="flex list-inside list-decimal flex-col gap-4">
|
||||||
|
<li>When you're ready, enter your account password below to continue.</li>
|
||||||
|
<li>
|
||||||
|
{PLATFORM_NAME} will send an email to "{email}" with your encrypted private key in it.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Store your "ncryptsec" in a password manager like
|
||||||
|
<Link class="link" external href="https://bitwarden.com/">Bitwarden</Link>. This is the key to
|
||||||
|
your social identity; keep it safe and secret.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Choose a <Link class="link" href="https://nostrapps.com/#signers">signer app</Link> and import
|
||||||
|
your private key into it. Don't forget your account password; you'll need it to decrypt your key.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
Once you export your key, you'll be <strong>logged out</strong> and won't be able to log in using
|
||||||
|
your email and password any more. Going forward, you'll need to use your signer app instead.
|
||||||
|
</p>
|
||||||
|
{#if !success}
|
||||||
|
<div out:slideAndFade>
|
||||||
|
<Field>
|
||||||
|
<p slot="label">To confirm, please enter your password below:</p>
|
||||||
|
<label class="input input-bordered flex w-full items-center gap-2" slot="input">
|
||||||
|
<Icon icon="key" />
|
||||||
|
<input type="password" disabled={loading} bind:value={password} class="grow" />
|
||||||
|
</label>
|
||||||
|
</Field>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
<ModalFooter>
|
||||||
|
<Button class="btn btn-link" disabled={loading || success} on:click={back}>
|
||||||
|
<Icon icon="alt-arrow-left" />
|
||||||
|
Go back
|
||||||
|
</Button>
|
||||||
|
{#if success}
|
||||||
|
<Button class="btn btn-primary" disabled={loading} on:click={reload}>
|
||||||
|
<Icon icon="check-circle" />
|
||||||
|
<Spinner {loading}>Refresh the page</Spinner>
|
||||||
|
</Button>
|
||||||
|
{:else}
|
||||||
|
<Button class="btn btn-error" disabled={loading} on:click={confirm}>
|
||||||
|
<Icon icon="check-circle" />
|
||||||
|
<Spinner {loading}>I understand, send me my private key</Spinner>
|
||||||
|
</Button>
|
||||||
|
{/if}
|
||||||
|
</ModalFooter>
|
||||||
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user