diff --git a/front/src/api/trashbox/index.ts b/front/src/api/trashbox/index.ts index acf4b1d..0632a48 100644 --- a/front/src/api/trashbox/index.ts +++ b/front/src/api/trashbox/index.ts @@ -1,6 +1,7 @@ import { LatLng } from 'leaflet' import { API_URL } from '../../config' +import { Trashbox, TrashboxResponse } from './types' const composeTrashboxURL = (position: LatLng) => ( API_URL + '/trashbox?' + new URLSearchParams({ @@ -9,4 +10,7 @@ const composeTrashboxURL = (position: LatLng) => ( }).toString() ) -export { composeTrashboxURL } +const processTrashbox = (data: TrashboxResponse): Trashbox[] => + data + +export { composeTrashboxURL, processTrashbox } diff --git a/front/src/hooks/api/useTrashboxes.ts b/front/src/hooks/api/useTrashboxes.ts index 1804112..826062b 100644 --- a/front/src/hooks/api/useTrashboxes.ts +++ b/front/src/hooks/api/useTrashboxes.ts @@ -1,7 +1,7 @@ import { LatLng } from 'leaflet' import { useFetch } from '../' -import { composeTrashboxURL } from '../../api/trashbox' +import { composeTrashboxURL, processTrashbox } from '../../api/trashbox' import { isTrashboxResponse } from '../../api/trashbox/types' const useTrashboxes = (position: LatLng) => ( @@ -10,7 +10,7 @@ const useTrashboxes = (position: LatLng) => ( 'GET', true, isTrashboxResponse, - (data) => data, + processTrashbox, [] ) )