import { Form, Input, MarkdownInput } from '@/components/form' import { useRouter } from 'next/router' import { gql, useApolloClient, useLazyQuery } from '@apollo/client' import Countdown from './countdown' import AdvPostForm, { AdvPostInitial } from './adv-post-form' import { ITEM_FIELDS } from '@/fragments/items' import AccordianItem from './accordian-item' import Item from './item' import { discussionSchema } from '@/lib/validate' import { SubSelectInitial } from './sub-select' import { normalizeForwards } from '@/lib/form' import { MAX_TITLE_LENGTH } from '@/lib/constants' import { useMe } from './me' import { ItemButtonBar } from './post' import { UPSERT_DISCUSSION } from '@/fragments/paidAction' import useItemSubmit from './use-item-submit' export function DiscussionForm ({ item, sub, editThreshold, titleLabel = 'title', textLabel = 'text', handleSubmit, children }) { const router = useRouter() const client = useApolloClient() const { me } = useMe() const onSubmit = useItemSubmit(UPSERT_DISCUSSION, { item, sub }) const schema = discussionSchema({ client, me, existingBoost: item?.boost }) // if Web Share Target API was used const shareTitle = router.query.title const shareText = router.query.text ? decodeURI(router.query.text) : undefined const [getRelated, { data: relatedData }] = useLazyQuery(gql` ${ITEM_FIELDS} query related($title: String!) { related(title: $title, minMatch: "75%", limit: 3) { items { ...ItemFields } } }`) const related = relatedData?.related?.items || [] const storageKeyPrefix = item ? undefined : 'discussion' return (
{children} { if (e.target.value) { getRelated({ variables: { title: e.target.value } }) } }} maxLength={MAX_TITLE_LENGTH} /> {textLabel} optional} name='text' minRows={6} hint={editThreshold ?
: null} /> {!item &&
0 ? '' : 'invisible'}`}> similar
} body={
{related.map((item, i) => ( ))}
} /> } ) }