Added address to dispose trashbox request
styling fixes
This commit is contained in:
parent
d9925647c6
commit
864f5a040c
@ -2,7 +2,7 @@ import { composeDisposeBody } from '.'
|
|||||||
import { isObject } from '../../utils/types'
|
import { isObject } from '../../utils/types'
|
||||||
import { Trashbox } from '../trashbox/types'
|
import { Trashbox } from '../trashbox/types'
|
||||||
|
|
||||||
type TrashboxDispose = Omit<Trashbox, 'Categories' | 'Address'> & { Category: string }
|
type TrashboxDispose = Omit<Trashbox, 'Categories'> & { Category: string }
|
||||||
|
|
||||||
type DisposeParams = Parameters<typeof composeDisposeBody>
|
type DisposeParams = Parameters<typeof composeDisposeBody>
|
||||||
|
|
||||||
|
@ -2,11 +2,13 @@ import { LatLng } from 'leaflet'
|
|||||||
|
|
||||||
import { API_URL } from '../../config'
|
import { API_URL } from '../../config'
|
||||||
import { Trashbox, TrashboxResponse } from './types'
|
import { Trashbox, TrashboxResponse } from './types'
|
||||||
|
import { Category } from '../../assets/category'
|
||||||
|
|
||||||
const composeTrashboxURL = (position: LatLng) => (
|
const composeTrashboxURL = (position: LatLng, category: Category) => (
|
||||||
API_URL + '/trashbox?' + new URLSearchParams({
|
API_URL + '/trashbox?' + new URLSearchParams({
|
||||||
lat: position.lat.toString(),
|
lat: position.lat.toString(),
|
||||||
lng: position.lng.toString(),
|
lng: position.lng.toString(),
|
||||||
|
category: category,
|
||||||
}).toString()
|
}).toString()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -81,12 +81,13 @@ function SelectDisposalTrashbox({ annId, category, address, closeRefresh }: Sele
|
|||||||
variant='success'
|
variant='success'
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (gotResponse(trashboxes) && !gotError(trashboxes)) {
|
if (gotResponse(trashboxes) && !gotError(trashboxes)) {
|
||||||
const { Lat, Lng, Name } = trashboxes.data[selectedTrashbox.index]
|
const { Lat, Lng, Name, Address } = trashboxes.data[selectedTrashbox.index]
|
||||||
void handleDispose(annId, {
|
void handleDispose(annId, {
|
||||||
Category: selectedTrashbox.category,
|
Category: selectedTrashbox.category,
|
||||||
Lat,
|
Lat,
|
||||||
Lng,
|
Lng,
|
||||||
Name,
|
Name,
|
||||||
|
Address,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
@ -4,7 +4,7 @@ import { useSendWithButton } from '..'
|
|||||||
import { composeDisposeBody, composeDisposeURL, processDispose } from '../../api/dispose'
|
import { composeDisposeBody, composeDisposeURL, processDispose } from '../../api/dispose'
|
||||||
import { DisposeParams, isDisposeResponse } from '../../api/dispose/types'
|
import { DisposeParams, isDisposeResponse } from '../../api/dispose/types'
|
||||||
|
|
||||||
const useDispose = (resolve: () => void) => {
|
function useDispose(resolve: () => void) {
|
||||||
const { doSend, button } = useSendWithButton(
|
const { doSend, button } = useSendWithButton(
|
||||||
'Выбор сделан',
|
'Выбор сделан',
|
||||||
'Зачтено',
|
'Зачтено',
|
||||||
|
@ -2,17 +2,16 @@ import { composePoetryURL, initialPoetry, processPoetry } from '../../api/poetry
|
|||||||
import { Poetry, isPoetryResponse } from '../../api/poetry/types'
|
import { Poetry, isPoetryResponse } from '../../api/poetry/types'
|
||||||
import useFetch, { UseFetchReturn } from '../useFetch'
|
import useFetch, { UseFetchReturn } from '../useFetch'
|
||||||
|
|
||||||
function usePoetry(): UseFetchReturn<Poetry> {
|
const usePoetry = (): UseFetchReturn<Poetry> => (
|
||||||
return (
|
useFetch(
|
||||||
useFetch(
|
composePoetryURL(),
|
||||||
composePoetryURL(),
|
'GET',
|
||||||
'GET',
|
false,
|
||||||
false,
|
isPoetryResponse,
|
||||||
isPoetryResponse,
|
processPoetry,
|
||||||
processPoetry,
|
initialPoetry,
|
||||||
initialPoetry,
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
}
|
)
|
||||||
|
|
||||||
|
|
||||||
export default usePoetry
|
export default usePoetry
|
||||||
|
@ -4,7 +4,7 @@ import { useSendWithButton } from '..'
|
|||||||
import { composeRemoveAnnouncementURL, processRemoveAnnouncement } from '../../api/removeAnnouncement'
|
import { composeRemoveAnnouncementURL, processRemoveAnnouncement } from '../../api/removeAnnouncement'
|
||||||
import { isRemoveAnnouncementResponse } from '../../api/removeAnnouncement/types'
|
import { isRemoveAnnouncementResponse } from '../../api/removeAnnouncement/types'
|
||||||
|
|
||||||
const useRemoveAnnouncement = (resolve: () => void) => {
|
function useRemoveAnnouncement(resolve: () => void) {
|
||||||
const { doSend, button } = useSendWithButton(
|
const { doSend, button } = useSendWithButton(
|
||||||
'Закрыть объявление',
|
'Закрыть объявление',
|
||||||
'Закрыто',
|
'Закрыто',
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
import { LatLng } from 'leaflet'
|
import { LatLng } from 'leaflet'
|
||||||
import { sampleSize, random } from 'lodash'
|
|
||||||
|
|
||||||
import { Trashbox } from '../../api/trashbox/types'
|
import { Trashbox, isTrashboxResponse } from '../../api/trashbox/types'
|
||||||
import { UseFetchReturn } from '../useFetch'
|
import useFetch, { UseFetchReturn } from '../useFetch'
|
||||||
|
|
||||||
import { faker } from '@faker-js/faker/locale/ru'
|
import { faker } from '@faker-js/faker/locale/ru'
|
||||||
import { Category, categories } from '../../assets/category'
|
import { Category } from '../../assets/category'
|
||||||
import { useCallback, useMemo } from 'react'
|
import { useMemo } from 'react'
|
||||||
|
import { composeTrashboxURL, processTrashbox } from '../../api/trashbox'
|
||||||
|
|
||||||
function genMockTrashbox(pos: LatLng): Trashbox {
|
function genMockTrashbox(pos: LatLng): Trashbox {
|
||||||
const loc = faker.location.nearbyGPSCoordinate({ origin: [pos.lat, pos.lng], radius: 1 })
|
const loc = faker.location.nearbyGPSCoordinate({ origin: [pos.lat, pos.lng], radius: 1 })
|
||||||
@ -21,16 +21,17 @@ function genMockTrashbox(pos: LatLng): Trashbox {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const useTrashboxes = (position: LatLng, category: Category): UseFetchReturn<Trashbox[]> => (
|
const useTrashboxes = (position: LatLng, category: Category): UseFetchReturn<Trashbox[]> => (
|
||||||
// useFetch(
|
// TODO: Remove once available
|
||||||
// composeTrashboxURL(position, category),
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
||||||
// 'GET',
|
import.meta.env.PROD ? useFetch(
|
||||||
// true,
|
composeTrashboxURL(position, category),
|
||||||
// isTrashboxResponse,
|
'GET',
|
||||||
// processTrashbox,
|
true,
|
||||||
// [],
|
isTrashboxResponse,
|
||||||
// )
|
processTrashbox,
|
||||||
|
[],
|
||||||
{
|
) : {
|
||||||
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
||||||
data: useMemo(() => new Array(3).fill(3).map(() => genMockTrashbox(position)), [position]),
|
data: useMemo(() => new Array(3).fill(3).map(() => genMockTrashbox(position)), [position]),
|
||||||
loading: false,
|
loading: false,
|
||||||
error: null,
|
error: null,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user