import { Form, Input, MarkdownInput, SubmitButton, VariableInput } from '../components/form' import { useRouter } from 'next/router' import { gql, useApolloClient, useMutation } from '@apollo/client' import Countdown from './countdown' import AdvPostForm, { AdvPostInitial } from './adv-post-form' import { MAX_POLL_NUM_CHOICES } from '../lib/constants' import TextareaAutosize from 'react-textarea-autosize' import FeeButton, { EditFeeButton } from './fee-button' import Delete from './delete' import { Button } from 'react-bootstrap' import { pollSchema } from '../lib/validate' import { SubSelectInitial } from './sub-select-form' export function PollForm ({ item, sub, editThreshold, children }) { const router = useRouter() const client = useApolloClient() const schema = pollSchema(client) const [upsertPoll] = useMutation( gql` mutation upsertPoll($sub: String, $id: ID, $title: String!, $text: String, $options: [String!]!, $boost: Int, $forward: String) { upsertPoll(sub: $sub, id: $id, title: $title, text: $text, options: $options, boost: $boost, forward: $forward) { id } }` ) const initialOptions = item?.poll?.options.map(i => i.option) return (
{ const optionsFiltered = options.slice(initialOptions?.length).filter(word => word.trim().length > 0) const { error } = await upsertPoll({ variables: { id: item?.id, sub: item?.subName || sub?.name, boost: boost ? Number(boost) : undefined, title: title.trim(), options: optionsFiltered, ...values } }) if (error) { throw new Error({ message: error.toString() }) } if (item) { await router.push(`/items/${item.id}`) } else { const prefix = sub?.name ? `/~${sub.name}/` : '' await router.push(prefix + '/recent') } }} storageKeyPrefix={item ? undefined : 'poll'} > {children} text optional} name='text' as={TextareaAutosize} minRows={2} /> : null} />
{item ? (
router.push(`/items/${item.id}`)}>
) : }
) }