24aa62a503
Co-authored-by: userAdityaa <aditya.chaudhary1558@gmail.com> Co-committed-by: userAdityaa <aditya.chaudhary1558@gmail.com>
203 lines
7.0 KiB
Svelte
203 lines
7.0 KiB
Svelte
<script lang="ts">
|
|
import * as nip19 from "nostr-tools/nip19"
|
|
import {Client} from "@pomade/core"
|
|
import {hexToBytes} from "@welshman/lib"
|
|
import {displayPubkey, displayProfile} from "@welshman/util"
|
|
import {pubkey, session, SessionMethod, displayNip05, deriveProfile} from "@welshman/app"
|
|
import {slideAndFade} from "@lib/transition"
|
|
import PenNewSquare from "@assets/icons/pen-new-square.svg?dataurl"
|
|
import UserRounded from "@assets/icons/user-rounded.svg?dataurl"
|
|
import Key from "@assets/icons/key-minimalistic.svg?dataurl"
|
|
import Letter from "@assets/icons/letter.svg?dataurl"
|
|
import LinkRound from "@assets/icons/link-round.svg?dataurl"
|
|
import Copy from "@assets/icons/copy.svg?dataurl"
|
|
import Settings from "@assets/icons/settings.svg?dataurl"
|
|
import AltArrowDown from "@assets/icons/alt-arrow-down.svg?dataurl"
|
|
import AltArrowUp from "@assets/icons/alt-arrow-up.svg?dataurl"
|
|
import TrashBin2 from "@assets/icons/trash-bin-2.svg?dataurl"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import FieldInline from "@lib/components/FieldInline.svelte"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import Spinner from "@lib/components/Spinner.svelte"
|
|
import ProfileCircle from "@app/components/ProfileCircle.svelte"
|
|
import ContentMinimal from "@app/components/ContentMinimal.svelte"
|
|
import ProfileEdit from "@app/components/ProfileEdit.svelte"
|
|
import ProfileDelete from "@app/components/ProfileDelete.svelte"
|
|
import SignerStatus from "@app/components/SignerStatus.svelte"
|
|
import PasswordReset from "@app/components/PasswordReset.svelte"
|
|
import InfoKeys from "@app/components/InfoKeys.svelte"
|
|
import {pushModal} from "@app/util/modal"
|
|
import {POMADE_NETWORK_ERROR_MESSAGE} from "@app/util/pomadeErrors"
|
|
import {clip, pushToast} from "@app/util/toast"
|
|
|
|
const npub = nip19.npubEncode($pubkey!)
|
|
const profile = deriveProfile($pubkey!)
|
|
const pubkeyDisplay = displayPubkey($pubkey!)
|
|
|
|
const copyNpub = () => clip(npub)
|
|
|
|
const copyNsec = () => clip(nip19.nsecEncode(hexToBytes($session!.secret!)))
|
|
|
|
const startEdit = () => pushModal(ProfileEdit)
|
|
|
|
const startDelete = () => pushModal(ProfileDelete)
|
|
|
|
const startPasswordReset = async () => {
|
|
loading = true
|
|
|
|
try {
|
|
const {ok, peersByPrefix} = await Client.requestChallenge($session!.email)
|
|
|
|
if (!ok) {
|
|
console.error("Pomade challenge request failed during password reset initiation")
|
|
|
|
pushToast({
|
|
theme: "error",
|
|
message: POMADE_NETWORK_ERROR_MESSAGE,
|
|
})
|
|
|
|
return
|
|
}
|
|
|
|
pushModal(PasswordReset, {peersByPrefix})
|
|
} catch (error) {
|
|
console.error(error)
|
|
|
|
pushToast({
|
|
theme: "error",
|
|
message: POMADE_NETWORK_ERROR_MESSAGE,
|
|
})
|
|
} finally {
|
|
loading = false
|
|
}
|
|
}
|
|
|
|
const startRecovery = () => pushModal(InfoKeys)
|
|
|
|
let loading = $state(false)
|
|
let showAdvanced = $state(false)
|
|
</script>
|
|
|
|
<div class="content column gap-4">
|
|
<div class="card2 bg-alt shadow-md col-2">
|
|
<div class="flex justify-between gap-2">
|
|
<div class="flex max-w-full gap-3">
|
|
<div class="py-1">
|
|
<ProfileCircle pubkey={$pubkey!} size={10} />
|
|
</div>
|
|
<div class="flex min-w-0 flex-col">
|
|
<div class="flex items-center gap-2">
|
|
<div class="text-bold overflow-hidden text-ellipsis">
|
|
{displayProfile($profile, pubkeyDisplay)}
|
|
</div>
|
|
</div>
|
|
<div class="overflow-hidden text-ellipsis text-sm opacity-75">
|
|
{$profile?.nip05 ? displayNip05($profile.nip05) : pubkeyDisplay}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Button class="center btn btn-circle btn-neutral -mr-2 -mt-2 h-12 w-12" onclick={startEdit}>
|
|
<Icon icon={PenNewSquare} />
|
|
</Button>
|
|
</div>
|
|
{#key $profile?.about}
|
|
<ContentMinimal event={{content: $profile?.about || "", tags: []}} />
|
|
{/key}
|
|
</div>
|
|
<div class="card2 bg-alt col-4 shadow-md">
|
|
{#if $session?.method === SessionMethod.Pomade}
|
|
<FieldInline>
|
|
{#snippet label()}
|
|
<Icon icon={Letter} />
|
|
<p>Email Address</p>
|
|
{/snippet}
|
|
{#snippet input()}
|
|
<label class="input input-bordered flex w-full items-center gap-2">
|
|
<Icon icon={UserRounded} />
|
|
<input readonly value={$session.email} class="grow" />
|
|
</label>
|
|
{/snippet}
|
|
</FieldInline>
|
|
{/if}
|
|
<FieldInline>
|
|
{#snippet label()}
|
|
<p class="flex items-center gap-3">
|
|
<Icon icon={Key} />
|
|
Public Key
|
|
</p>
|
|
{/snippet}
|
|
{#snippet input()}
|
|
<label class="input input-bordered flex w-full items-center justify-between gap-2">
|
|
<div class="row-2 grow items-center">
|
|
<Icon icon={LinkRound} />
|
|
<input readonly class="ellipsize grow" value={npub} />
|
|
</div>
|
|
<Button class="flex items-center" onclick={copyNpub}>
|
|
<Icon icon={Copy} />
|
|
</Button>
|
|
</label>
|
|
{/snippet}
|
|
{#snippet info()}
|
|
<p>
|
|
Your public key is your nostr user identifier. It also allows other people to authenticate
|
|
your messages.
|
|
</p>
|
|
{/snippet}
|
|
</FieldInline>
|
|
{#if $session?.method === "nip01"}
|
|
<FieldInline>
|
|
{#snippet label()}
|
|
<p class="flex items-center gap-3">
|
|
<Icon icon={Key} />
|
|
Private Key
|
|
</p>
|
|
{/snippet}
|
|
{#snippet input()}
|
|
<label class="input input-bordered flex w-full items-center gap-2">
|
|
<Icon icon={LinkRound} />
|
|
<input readonly value={$session.secret} class="grow" type="password" />
|
|
<Button class="flex items-center" onclick={copyNsec}>
|
|
<Icon icon={Copy} />
|
|
</Button>
|
|
</label>
|
|
{/snippet}
|
|
{#snippet info()}
|
|
<p>Your private key is your nostr password. Keep this somewhere safe!</p>
|
|
{/snippet}
|
|
</FieldInline>
|
|
{/if}
|
|
<SignerStatus />
|
|
{#if $session?.method === SessionMethod.Pomade}
|
|
<div class="flex flex-col lg:flex-row gap-4 lg:gap-2 justify-end">
|
|
<Button class="btn" onclick={startPasswordReset}>
|
|
<Spinner {loading}>Update your password</Spinner>
|
|
</Button>
|
|
<Button class="btn btn-primary" onclick={startRecovery}>Start holding your own keys</Button>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
<div class="card2 bg-alt shadow-md">
|
|
<div class="flex items-center justify-between">
|
|
<strong class="flex items-center gap-3">
|
|
<Icon icon={Settings} />
|
|
Advanced
|
|
</strong>
|
|
<Button onclick={() => (showAdvanced = !showAdvanced)}>
|
|
{#if showAdvanced}
|
|
<Icon icon={AltArrowUp} />
|
|
{:else}
|
|
<Icon icon={AltArrowDown} />
|
|
{/if}
|
|
</Button>
|
|
</div>
|
|
{#if showAdvanced}
|
|
<div transition:slideAndFade class="flex flex-col gap-2 pt-4">
|
|
<Button class="btn btn-error" onclick={startDelete}>
|
|
<Icon icon={TrashBin2} />
|
|
Delete your profile
|
|
</Button>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|