30 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-10-26 15:49:37 -05:00
import { ITEM } from '../../../fragments/items'
import { getGetServerSideProps } from '../../../api/ssrApollo'
2021-08-11 15:13:10 -05:00
import { DiscussionForm } from '../../../components/discussion-form'
import { LinkForm } from '../../../components/link-form'
import LayoutCenter from '../../../components/layout-center'
2022-02-17 11:23:43 -06:00
import JobForm from '../../../components/job-form'
2022-08-18 13:15:24 -05:00
import { PollForm } from '../../../components/poll-form'
2023-01-26 10:11:55 -06:00
import { BountyForm } from '../../../components/bounty-form'
2021-08-11 15:13:10 -05:00
export const getServerSideProps = getGetServerSideProps(ITEM, null,
data => !data.item)
2021-08-11 15:13:10 -05:00
2021-10-26 15:49:37 -05:00
export default function PostEdit ({ data: { item } }) {
2021-08-11 15:13:10 -05:00
const editThreshold = new Date(item.createdAt).getTime() + 10 * 60000
return (
2023-05-05 12:38:56 -05:00
<LayoutCenter sub={item.subName}>
2022-09-29 15:42:33 -05:00
{item.isJob
2022-02-17 11:23:43 -06:00
? <JobForm item={item} sub={item.sub} />
: (item.url
2022-08-18 13:15:24 -05:00
? <LinkForm item={item} editThreshold={editThreshold} adv />
: (item.pollCost
2023-01-26 10:11:55 -06:00
? <PollForm item={item} editThreshold={editThreshold} adv />
: (item.bounty
? <BountyForm item={item} editThreshold={editThreshold} adv />
: <DiscussionForm item={item} editThreshold={editThreshold} adv />)))}
2021-08-11 15:13:10 -05:00
</LayoutCenter>
)
}