import { Checkbox, Form, Input, SubmitButton, Select, VariableInput } from '../../components/form' import Alert from 'react-bootstrap/Alert' import Button from 'react-bootstrap/Button' import InputGroup from 'react-bootstrap/InputGroup' import { CenterLayout } from '../../components/layout' import { useState, useMemo } from 'react' import { gql, useMutation, useQuery } from '@apollo/client' import { getGetServerSideProps } from '../../api/ssrApollo' import LoginButton from '../../components/login-button' import { signIn } from 'next-auth/react' import { LightningAuth } from '../../components/lightning-auth' import { SETTINGS, SET_SETTINGS } from '../../fragments/users' import { useRouter } from 'next/router' import Info from '../../components/info' import Link from 'next/link' import AccordianItem from '../../components/accordian-item' import { bech32 } from 'bech32' import { NOSTR_MAX_RELAY_NUM, NOSTR_PUBKEY_BECH32, DEFAULT_CROSSPOSTING_RELAYS } from '../../lib/nostr' import { emailSchema, lastAuthRemovalSchema, settingsSchema } from '../../lib/validate' import { SUPPORTED_CURRENCIES } from '../../lib/currency' import PageLoading from '../../components/page-loading' import { useShowModal } from '../../components/modal' import { authErrorMessage } from '../../components/login' import { NostrAuth } from '../../components/nostr-auth' import { useToast } from '../../components/toast' import { useLogger } from '../../components/logger' import { useMe } from '../../components/me' import { INVOICE_RETENTION_DAYS } from '../../lib/constants' export const getServerSideProps = getGetServerSideProps({ query: SETTINGS, authRequired: true }) function bech32encode (hexString) { return bech32.encode('npub', bech32.toWords(Buffer.from(hexString, 'hex'))) } export default function Settings ({ ssrData }) { const toaster = useToast() const me = useMe() const [setSettings] = useMutation(SET_SETTINGS, { update (cache, { data: { setSettings } }) { cache.modify({ id: 'ROOT_QUERY', fields: { settings () { return setSettings } } }) } } ) const logger = useLogger() const { data } = useQuery(SETTINGS) const { settings: { privates: settings } } = useMemo(() => data ?? ssrData, [data, ssrData]) if (!data && !ssrData) return return (

settings

{ if (nostrPubkey.length === 0) { nostrPubkey = null } else { if (NOSTR_PUBKEY_BECH32.test(nostrPubkey)) { const { words } = bech32.decode(nostrPubkey) nostrPubkey = Buffer.from(bech32.fromWords(words)).toString('hex') } } const nostrRelaysFiltered = nostrRelays?.filter(word => word.trim().length > 0) try { await setSettings({ variables: { settings: { tipDefault: Number(tipDefault), withdrawMaxFeeDefault: Number(withdrawMaxFeeDefault), nostrPubkey, nostrRelays: nostrRelaysFiltered, ...values } } }) toaster.success('saved settings') } catch (err) { console.error(err) toaster.danger('failed to save settings') } }} > sats} hint={note: you can also press and hold the lightning bolt to zap custom amounts} />
advanced
} body={ <> turbo zapping
  • Makes every additional bolt click raise your total zap to another 10x multiple of your default zap
  • e.g. if your zap default is 10 sats
    • 1st click: 10 sats total zapped
    • 2nd click: 100 sats total zapped
    • 3rd click: 1000 sats total zapped
    • 4th click: 10000 sats total zapped
    • and so on ...
  • You can still custom zap via long press
    • the next bolt click rounds up to the next greatest 10x multiple of your default
} groupClassName='mb-0' /> zap undos
  • An undo button is shown after every zap
  • The button is shown for 5 seconds
} /> } /> sats} />
notify me when ...
privacy
hide invoice descriptions
  • Use this if you don't want funding sources to be linkable to your SN identity.
  • It makes your invoice descriptions blank.
  • This only applies to invoices you create
    • lnurl-pay and lightning addresses still reference your nym
} name='hideInvoiceDesc' groupClassName='mb-0' /> autodelete withdrawal invoices
  • use this to protect receiver privacy
  • applies retroactively, cannot be reversed
  • withdrawal invoices are kept at least {INVOICE_RETENTION_DAYS} days for security and debugging purposes
  • autodeletions are run a daily basis at night
} name='autoDropBolt11s' groupClassName='mb-0' /> hide me from top stackers} name='hideFromTopUsers' groupClassName='mb-0' /> hide my cowboy hat} name='hideCowboyHat' groupClassName='mb-0' /> hide my wallet balance} name='hideWalletBalance' groupClassName='mb-0' /> hide my bookmarks from other stackers} name='hideBookmarks' groupClassName='mb-0' /> hide my linked github profile
  • Linked accounts are hidden from your profile by default
  • uncheck this to display your github on your profile
  • {me.optional.githubId === null &&
  • You don't seem to have a linked github account
    • If this is wrong, try unlinking/relinking
    }
} name='hideGithub' groupClassName='mb-0' /> hide my linked nostr profile
  • Linked accounts are hidden from your profile by default
  • Uncheck this to display your npub on your profile
  • {me.optional.nostrAuthPubkey === null &&
  • You don't seem to have a linked nostr account
    • If this is wrong, try unlinking/relinking
    }
} name='hideNostr' groupClassName='mb-0' /> hide my linked twitter profile
  • Linked accounts are hidden from your profile by default
  • Uncheck this to display your twitter on your profile
  • {me.optional.twitterId === null &&
    You don't seem to have a linked twitter account
    • If this is wrong, try unlinking/relinking
    }
} name='hideTwitter' groupClassName='mb-0' /> {me.optional?.isContributor && hide that I'm a stacker.news contributor} name='hideIsContributor' groupClassName='mb-0' />} only load images from proxy
  • only load images from our image proxy automatically
  • this prevents IP address leaks to arbitrary sites
  • if we fail to load an image, the raw link will be shown
} name='imgproxyOnly' groupClassName='mb-0' /> allow anonymous diagnostics
  • collect and send back anonymous diagnostics data
  • this information is used to fix bugs
  • this information includes:
    • timestamps
    • a randomly generated fancy name
    • your user agent
    • your operating system
  • this information can not be traced back to you without your fancy name
  • fancy names are generated in your browser
your fancy name: {logger.name}
} name='diagnostics' />
content
wild west mode
  • don't hide flagged content
  • don't down rank flagged content
} name='wildWestMode' groupClassName='mb-0' /> greeter mode
  • see and screen free posts and comments
  • help onboard new stackers to SN and Lightning
  • you might be subject to more spam
} name='greeterMode' groupClassName='mb-0' /> nsfw mode
  • see posts from nsfw territories
} name='nsfwMode' />

nostr

crosspost to nostr
  • crosspost discussions to nostr
  • requires NIP-07 extension for signing
  • we use your NIP-05 relays if set
  • otherwise we default to these relays:
    • {DEFAULT_CROSSPOSTING_RELAYS.map((relay, i) => (
    • {relay}
    • ))}
} name='nostrCrossposting' /> pubkey optional} name='nostrPubkey' clear hint={used for NIP-05} /> relays optional} name='nostrRelays' clear min={0} max={NOSTR_MAX_RELAY_NUM} hint={used for NIP-05 and crossposting} />
save
saturday newsletter
{settings?.authMethods && }
) } const DropBolt11sCheckbox = ({ ssrData, ...props }) => { const showModal = useShowModal() const { data } = useQuery(gql`{ numBolt11s }`) const { numBolt11s } = data || ssrData return ( { if (e.target.checked) { showModal(onClose => { return ( <>

{numBolt11s} withdrawal invoices will be deleted with this setting.

You sure? This is a gone forever kind of delete.

) }) } }} {...props} /> ) } function QRLinkButton ({ provider, unlink, status }) { const showModal = useShowModal() const text = status ? 'Unlink' : 'Link' const onClick = status ? unlink : () => showModal(onClose =>
) return ( ) } function NostrLinkButton ({ unlink, status }) { const showModal = useShowModal() const text = status ? 'Unlink' : 'Link' const onClick = status ? unlink : () => showModal(onClose =>
) return ( ) } function UnlinkObstacle ({ onClose, type, unlinkAuth }) { const router = useRouter() const toaster = useToast() return (
You are removing your last auth method. It is recommended you link another auth method before removing your last auth method. If you'd like to proceed anyway, type the following below
If I logout, even accidentally, I will never be able to access my account again
{ try { await unlinkAuth({ variables: { authType: type } }) router.push('/settings') onClose() toaster.success('unlinked auth method') } catch (err) { console.error(err) toaster.danger('failed to unlink auth method') } }} > do it
) } function AuthMethods ({ methods }) { const showModal = useShowModal() const router = useRouter() const toaster = useToast() const [err, setErr] = useState(authErrorMessage(router.query.error)) const [unlinkAuth] = useMutation( gql` mutation unlinkAuth($authType: String!) { unlinkAuth(authType: $authType) { lightning email twitter github nostr } }`, { update (cache, { data: { unlinkAuth } }) { cache.modify({ id: 'ROOT_QUERY', fields: { settings (existing) { return { ...existing, privates: { ...existing.privates, authMethods: { ...unlinkAuth } } } } } }) } } ) // sort to prevent hydration mismatch const providers = Object.keys(methods).filter(k => k !== '__typename').sort() const unlink = async type => { // if there's only one auth method left const links = providers.reduce((t, p) => t + (methods[p] ? 1 : 0), 0) if (links === 1) { showModal(onClose => ()) } else { try { await unlinkAuth({ variables: { authType: type } }) toaster.success('unlinked auth method') } catch (err) { console.error(err) toaster.danger('failed to unlink auth method') } } } return ( <>
auth methods
{err && ( { const { pathname, query: { error, nodata, ...rest } } = router router.replace({ pathname, query: { nodata, ...rest } }, { pathname, query: { ...rest } }, { shallow: true }) setErr(undefined) }} dismissible >{err} )} {providers?.map(provider => { if (provider === 'email') { return methods.email ? (
) :
} else if (provider === 'lightning') { return ( await unlink(provider)} /> ) } else if (provider === 'nostr') { return await unlink(provider)} /> } else { return ( { if (methods[provider]) { await unlink(provider) } else { signIn(provider) } }} text={methods[provider] ? 'Unlink' : 'Link'} /> ) } })} ) } export function EmailLinkForm ({ callbackUrl }) { const [linkUnverifiedEmail] = useMutation( gql` mutation linkUnverifiedEmail($email: String!) { linkUnverifiedEmail(email: $email) }` ) return (
{ // add email to user's account // then call signIn const { data } = await linkUnverifiedEmail({ variables: { email } }) if (data.linkUnverifiedEmail) { signIn('email', { email, callbackUrl }) } }} >
Link Email
) }