Fixed doSend arguments
This commit is contained in:
parent
50c2b0a615
commit
0e5aeae491
@ -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
|
||||||
|
@ -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
|
||||||
}),
|
}),
|
||||||
|
@ -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
|
||||||
})
|
})
|
||||||
|
@ -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 }
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user