stacker.news/components/link-form.js

201 lines
6.0 KiB
JavaScript
Raw Normal View History

import { useState } from 'react'
2021-08-11 20:13:10 +00:00
import { Form, Input, SubmitButton } from '../components/form'
import { useRouter } from 'next/router'
2022-04-19 18:32:39 +00:00
import { gql, useApolloClient, useLazyQuery, useMutation } from '@apollo/client'
2021-08-11 20:34:10 +00:00
import Countdown from './countdown'
2023-02-08 19:38:04 +00:00
import AdvPostForm, { AdvPostInitial } from './adv-post-form'
2021-10-28 20:49:51 +00:00
import { ITEM_FIELDS } from '../fragments/items'
import Item from './item'
import AccordianItem from './accordian-item'
2022-08-18 18:15:24 +00:00
import FeeButton, { EditFeeButton } from './fee-button'
2023-01-12 23:53:09 +00:00
import Delete from './delete'
import { Button } from 'react-bootstrap'
2023-02-08 19:38:04 +00:00
import { linkSchema } from '../lib/validate'
2023-04-01 03:07:04 +00:00
import Moon from '../svgs/moon-fill.svg'
2021-08-11 20:13:10 +00:00
export function LinkForm ({ item, editThreshold }) {
2021-10-28 20:49:51 +00:00
const router = useRouter()
2022-04-19 18:32:39 +00:00
const client = useApolloClient()
2023-02-08 19:38:04 +00:00
const schema = linkSchema(client)
2021-10-28 20:49:51 +00:00
2023-01-12 18:05:47 +00:00
const [getPageTitleAndUnshorted, { data }] = useLazyQuery(gql`
query PageTitleAndUnshorted($url: String!) {
pageTitleAndUnshorted(url: $url) {
title
unshorted
}
2021-10-27 16:03:43 +00:00
}`, {
fetchPolicy: 'network-only'
})
const [getDupes, { data: dupesData, loading: dupesLoading }] = useLazyQuery(gql`
2021-10-28 20:49:51 +00:00
${ITEM_FIELDS}
query Dupes($url: String!) {
dupes(url: $url) {
...ItemFields
}
}`, {
2023-04-01 03:27:49 +00:00
fetchPolicy: 'network-only',
onCompleted: () => setPostDisabled(false)
2021-10-28 20:49:51 +00:00
})
2023-01-12 20:30:17 +00:00
const [getRelated, { data: relatedData }] = useLazyQuery(gql`
${ITEM_FIELDS}
query related($title: String!) {
related(title: $title, minMatch: "75%", limit: 3) {
items {
...ItemFields
}
}
}`, {
fetchPolicy: 'network-only'
})
const related = []
for (const item of relatedData?.related?.items || []) {
let found = false
for (const ditem of dupesData?.dupes || []) {
if (ditem.id === item.id) {
found = true
break
}
}
if (!found) {
related.push(item)
}
}
2021-10-28 20:49:51 +00:00
const [upsertLink] = useMutation(
2021-08-11 20:13:10 +00:00
gql`
mutation upsertLink($id: ID, $title: String!, $url: String!, $boost: Int, $forward: String) {
upsertLink(id: $id, title: $title, url: $url, boost: $boost, forward: $forward) {
2021-08-11 20:13:10 +00:00
id
}
}`
)
2021-10-28 20:49:51 +00:00
2023-04-01 03:27:49 +00:00
const [postDisabled, setPostDisabled] = useState(false)
2021-08-11 20:13:10 +00:00
return (
<Form
initial={{
title: item?.title || '',
2021-09-11 21:52:19 +00:00
url: item?.url || '',
2022-08-18 18:15:24 +00:00
...AdvPostInitial({ forward: item?.fwdUser?.name })
2021-08-11 20:13:10 +00:00
}}
2023-02-08 19:38:04 +00:00
schema={schema}
2022-07-13 15:49:55 +00:00
onSubmit={async ({ boost, title, ...values }) => {
const { error } = await upsertLink({
2023-02-08 19:38:04 +00:00
variables: { id: item?.id, boost: boost ? Number(boost) : undefined, title: title.trim(), ...values }
})
2021-08-11 20:13:10 +00:00
if (error) {
throw new Error({ message: error.toString() })
}
2022-01-07 16:50:41 +00:00
if (item) {
2022-03-10 18:25:16 +00:00
await router.push(`/items/${item.id}`)
2022-01-07 16:50:41 +00:00
} else {
2022-03-10 18:25:16 +00:00
await router.push('/recent')
2022-01-07 16:50:41 +00:00
}
2021-08-11 20:13:10 +00:00
}}
2022-01-07 18:28:23 +00:00
storageKeyPrefix={item ? undefined : 'link'}
2021-08-11 20:13:10 +00:00
>
<Input
label='title'
name='title'
2023-01-12 18:05:47 +00:00
overrideValue={data?.pageTitleAndUnshorted?.title}
2021-08-11 20:13:10 +00:00
required
2022-08-25 18:46:07 +00:00
clear
2023-01-12 20:30:17 +00:00
onChange={async (formik, e) => {
if (e.target.value) {
getRelated({
variables: { title: e.target.value }
})
}
}}
2021-08-11 20:13:10 +00:00
/>
<Input
label='url'
name='url'
required
autoFocus
2022-08-25 18:46:07 +00:00
clear
autoComplete='off'
2023-01-12 18:05:47 +00:00
overrideValue={data?.pageTitleAndUnshorted?.unshorted}
2021-08-11 20:13:10 +00:00
hint={editThreshold
2022-01-07 16:50:41 +00:00
? <div className='text-muted font-weight-bold'><Countdown date={editThreshold} /></div>
2021-08-11 20:13:10 +00:00
: null}
2021-08-22 15:25:17 +00:00
onChange={async (formik, e) => {
if ((/^ *$/).test(formik?.values.title)) {
2023-01-12 18:05:47 +00:00
getPageTitleAndUnshorted({
2021-08-22 15:25:17 +00:00
variables: { url: e.target.value }
})
}
2023-04-01 03:27:49 +00:00
if (e.target.value) {
setPostDisabled(true)
setTimeout(() => setPostDisabled(false), 3000)
2023-04-01 03:21:05 +00:00
getDupes({
variables: { url: e.target.value }
})
2023-04-01 03:27:49 +00:00
}
2021-08-22 15:25:17 +00:00
}}
2021-08-11 20:13:10 +00:00
/>
2022-08-18 18:15:24 +00:00
<AdvPostForm edit={!!item} />
2022-08-10 15:06:31 +00:00
<div className='mt-3'>
{item
2023-01-12 23:53:09 +00:00
? (
<div className='d-flex justify-content-between'>
<Delete itemId={item.id} onDelete={() => router.push(`/items/${item.id}`)}>
<Button variant='grey-medium'>delete</Button>
</Delete>
<EditFeeButton
paidSats={item.meSats}
parentId={null} text='save' ChildButton={SubmitButton} variant='secondary'
/>
</div>)
: (
<div className='d-flex align-items-center'>
<FeeButton
baseFee={1} parentId={null} text='post' disabled={postDisabled}
ChildButton={SubmitButton} variant='secondary'
/>
{dupesLoading &&
<div className='d-flex ml-3 justify-content-center'>
<Moon className='spin fill-grey' />
<div className='ml-2 text-muted' style={{ fontWeight: '600' }}>searching for dupes</div>
</div>}
</div>
)}
2022-08-10 15:06:31 +00:00
</div>
2023-01-12 23:53:09 +00:00
{!item &&
<>
{dupesData?.dupes?.length > 0 &&
<div className='mt-3'>
<AccordianItem
show
headerColor='#c03221'
header={<div style={{ fontWeight: 'bold', fontSize: '92%' }}>dupes</div>}
body={
<div>
{dupesData.dupes.map((item, i) => (
<Item item={item} key={item.id} />
))}
</div>
2021-10-28 20:49:51 +00:00
}
2023-01-12 23:53:09 +00:00
/>
</div>}
<div className={`mt-3 ${related.length > 0 ? '' : 'invisible'}`}>
<AccordianItem
header={<div style={{ fontWeight: 'bold', fontSize: '92%' }}>similar</div>}
body={
<div>
{related.map((item, i) => (
<Item item={item} key={item.id} />
))}
</div>
2023-01-12 20:30:17 +00:00
}
2023-01-12 23:53:09 +00:00
/>
</div>
</>}
2021-08-11 20:13:10 +00:00
</Form>
)
}