Fixed doSend arguments

This commit is contained in:
Dmitriy Shishkov 2023-07-27 20:09:03 +03:00
parent 50c2b0a615
commit 0e5aeae491
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
5 changed files with 18 additions and 11 deletions

View File

@ -2,8 +2,8 @@ import { useSendWithButton } from '..'
import { composePutAnnouncementURL, processPutAnnouncement } from '../../api/putAnnouncement' import { composePutAnnouncementURL, processPutAnnouncement } from '../../api/putAnnouncement'
import { isPutAnnouncementResponse } from '../../api/putAnnouncement/types' import { isPutAnnouncementResponse } from '../../api/putAnnouncement/types'
const useAddAnnouncement = () => ( function useAddAnnouncement() {
useSendWithButton( const { doSend, button } = useSendWithButton(
'Опубликовать', 'Опубликовать',
'Опубликовано', 'Опубликовано',
true, true,
@ -13,6 +13,14 @@ const useAddAnnouncement = () => (
isPutAnnouncementResponse, isPutAnnouncementResponse,
processPutAnnouncement processPutAnnouncement
) )
)
function handleAdd(formData: FormData) {
void doSend({}, {
body: formData
})
}
return { handleAdd, addButton: button }
}
export default useAddAnnouncement export default useAddAnnouncement

View File

@ -25,7 +25,7 @@ function useBook() {
) )
const handleBook = useCallback((id: number) => { const handleBook = useCallback((id: number) => {
void doSend({ void doSend({}, {
body: JSON.stringify({ body: JSON.stringify({
id id
}), }),

View File

@ -16,7 +16,7 @@ const useRemoveAnnouncement = (close: () => void) => {
) )
const doSendWithClose = useCallback(async (id: number) => { const doSendWithClose = useCallback(async (id: number) => {
await doSend({ await doSend({}, {
body: JSON.stringify({ body: JSON.stringify({
id id
}) })

View File

@ -12,11 +12,10 @@ function useSendWithButton<R, T extends NonNullable<unknown>>(
const { update, ...button } = useSendButtonCaption(initial, loading, error, result, singular) const { update, ...button } = useSendButtonCaption(initial, loading, error, result, singular)
const doSendWithButton = useCallback(async (params: Parameters<typeof doSend>[1]) => { const doSendWithButton = useCallback(async (...args: Parameters<typeof doSend>) => {
const data = await doSend({}, params) const data = await doSend(...args)
update(data) update(data)
}, [doSend, update]) }, [doSend, update])
return { doSend: doSendWithButton, button } return { doSend: doSendWithButton, button }

View File

@ -31,7 +31,7 @@ function AddPage() {
const address = useOsmAddresses(addressPosition) const address = useOsmAddresses(addressPosition)
const { doSend, button } = useAddAnnouncement() const { handleAdd, addButton } = useAddAnnouncement()
const handleSubmit: FormEventHandler<HTMLFormElement> = (event) => { const handleSubmit: FormEventHandler<HTMLFormElement> = (event) => {
event.preventDefault() event.preventDefault()
@ -44,7 +44,7 @@ function AddPage() {
formData.append('address', address.data || '') // if address.error formData.append('address', address.data || '') // if address.error
formData.set('bestBy', new Date((formData.get('bestBy') as number | null) || 0).getTime().toString()) formData.set('bestBy', new Date((formData.get('bestBy') as number | null) || 0).getTime().toString())
void doSend(formData) handleAdd(formData)
} }
return ( return (
@ -176,7 +176,7 @@ function AddPage() {
)} )}
</Form.Group> </Form.Group>
<Button variant='success' type='submit' {...button} /> <Button variant='success' type='submit' {...addButton} />
</Form> </Form>
</Card.Body> </Card.Body>
</Card> </Card>