stacker.news/components/adv-post-form.js

58 lines
2.0 KiB
JavaScript
Raw Normal View History

2021-09-11 16:52:19 -05:00
import AccordianItem from './accordian-item'
2022-08-26 17:20:09 -05:00
import { Input, InputUserSuggest } from './form'
2021-09-11 16:52:19 -05:00
import { InputGroup } from 'react-bootstrap'
2022-03-09 13:44:50 -06:00
import { BOOST_MIN } from '../lib/constants'
2022-07-23 19:00:57 -05:00
import Info from './info'
2021-09-11 16:52:19 -05:00
2022-08-18 13:15:24 -05:00
export function AdvPostInitial ({ forward }) {
return {
boost: '',
forward: forward || ''
}
2021-09-11 16:52:19 -05:00
}
2022-08-18 13:15:24 -05:00
export default function AdvPostForm ({ edit }) {
2021-09-11 16:52:19 -05:00
return (
<AccordianItem
2021-09-12 11:55:38 -05:00
header={<div style={{ fontWeight: 'bold', fontSize: '92%' }}>options</div>}
2021-09-11 16:52:19 -05:00
body={
2022-04-18 15:19:07 -05:00
<>
<Input
2022-07-23 19:00:57 -05:00
label={
2022-08-18 13:15:24 -05:00
<div className='d-flex align-items-center'>{edit ? 'add boost' : 'boost'}
2022-07-23 19:00:57 -05:00
<Info>
<ol className='font-weight-bold'>
<li>Boost ranks posts higher temporarily based on the amount</li>
<li>The minimum boost is {BOOST_MIN} sats</li>
<li>Each {BOOST_MIN} sats of boost is equivalent to one trusted upvote
<ul>
<li>e.g. {BOOST_MIN * 2} sats is like 2 votes</li>
</ul>
</li>
<li>The decay of boost "votes" increases at 2x the rate of organic votes
<ul>
<li>i.e. boost votes fall out of ranking faster</li>
</ul>
</li>
2023-07-09 12:37:12 -05:00
<li>100% of sats from boost are given back to top stackers as rewards</li>
2022-07-23 19:00:57 -05:00
</ol>
</Info>
</div>
}
2022-04-18 15:19:07 -05:00
name='boost'
hint={<span className='text-muted'>ranks posts higher temporarily based on the amount</span>}
append={<InputGroup.Text className='text-monospace'>sats</InputGroup.Text>}
/>
2022-08-26 17:20:09 -05:00
<InputUserSuggest
2022-04-25 12:07:31 -05:00
label={<>forward sats to</>}
2022-04-18 15:19:07 -05:00
name='forward'
2023-07-09 12:37:12 -05:00
hint={<span className='text-muted'>100% of sats will be sent to this stacker</span>}
2022-09-18 04:05:21 +02:00
prepend={<InputGroup.Text>@</InputGroup.Text>}
2022-04-19 13:32:39 -05:00
showValid
2022-04-18 15:19:07 -05:00
/>
</>
2021-09-11 16:52:19 -05:00
}
/>
)
}