From 1c25d66027dfa1deeaa60fb684258b8267e57e8f Mon Sep 17 00:00:00 2001 From: dm1sh Date: Mon, 17 Jul 2023 12:19:25 +0300 Subject: [PATCH] Fixed trashbox request causing constant rerenders --- front/src/api/trashbox/index.ts | 6 +++++- front/src/hooks/api/useTrashboxes.ts | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) 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, [] ) )