import AccordianItem from './accordian-item' import { Input, InputUserSuggest, VariableInput, Checkbox } from './form' import InputGroup from 'react-bootstrap/InputGroup' import { BOOST_MIN, BOOST_MULT, MAX_FORWARDS } from '../lib/constants' import { DEFAULT_CROSSPOSTING_RELAYS } from '../lib/nostr' import Info from './info' import { numWithUnits } from '../lib/format' import styles from './adv-post-form.module.css' import { useMe } from './me' import { useRouter } from 'next/router' import { useFeeButton } from './fee-button' const EMPTY_FORWARD = { nym: '', pct: '' } export function AdvPostInitial ({ forward, boost }) { return { boost: boost || '', forward: forward?.length ? forward : [EMPTY_FORWARD] } } export default function AdvPostForm ({ children }) { const me = useMe() const router = useRouter() const { merge } = useFeeButton() return ( options} body={ <> {children} boost
  1. Boost ranks posts higher temporarily based on the amount
  2. The minimum boost is {numWithUnits(BOOST_MIN, { abbreviate: false })}
  3. Each {numWithUnits(BOOST_MULT, { abbreviate: false })} of boost is equivalent to one trusted upvote
    • e.g. {numWithUnits(BOOST_MULT * 5, { abbreviate: false })} is like 5 votes
  4. The decay of boost "votes" increases at 1.25x the rate of organic votes
    • i.e. boost votes fall out of ranking faster
  5. 100% of sats from boost are given back to top stackers as rewards
} name='boost' onChange={(_, e) => merge({ boost: { term: `+ ${e.target.value}`, label: 'boost', modifier: cost => cost + Number(e.target.value) } })} hint={ranks posts higher temporarily based on the amount} append={sats} /> Forward sats to up to 5 other stackers. Any remaining sats go to you.} > {({ index, placeholder }) => { return (
@} showValid groupClassName={`${styles.name} me-3 mb-0`} /> %} groupClassName={`${styles.percent} mb-0`} />
) }}
{me && router.query.type === 'discussion' && crosspost to nostr
  • crosspost this discussion item 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='crosspost' />} } /> ) }