diff --git a/src/components/Map/MapViewer/utils/config/pinsLayer/useOlMapPinsLayer.ts b/src/components/Map/MapViewer/utils/config/pinsLayer/useOlMapPinsLayer.ts index 51523f777916b3ef9d36b7d23d21f429d8f38f43..6580ded53c7165fd1a104b3e10344e3ce0762d09 100644 --- a/src/components/Map/MapViewer/utils/config/pinsLayer/useOlMapPinsLayer.ts +++ b/src/components/Map/MapViewer/utils/config/pinsLayer/useOlMapPinsLayer.ts @@ -1,5 +1,5 @@ /* eslint-disable no-magic-numbers */ -import { allBioEntitesSelectorOfCurrentMap } from '@/redux/bioEntity/bioEntity.selectors'; +import { searchedBioEntitesSelectorOfCurrentMap } from '@/redux/bioEntity/bioEntity.selectors'; import { usePointToProjection } from '@/utils/map/usePointToProjection'; import BaseLayer from 'ol/layer/Base'; import VectorLayer from 'ol/layer/Vector'; @@ -10,7 +10,7 @@ import { getBioEntitiesFeatures } from './getBioEntitiesFeatures'; export const useOlMapPinsLayer = (): BaseLayer => { const pointToProjection = usePointToProjection(); - const contentBioEntites = useSelector(allBioEntitesSelectorOfCurrentMap); + const contentBioEntites = useSelector(searchedBioEntitesSelectorOfCurrentMap); const bioEntityFeatures = useMemo( () => diff --git a/src/redux/bioEntity/bioEntity.selectors.ts b/src/redux/bioEntity/bioEntity.selectors.ts index bcaeda20ef55efa082341b3d6600b688128f4f27..53b446e2bfdaffacf9e4b86107e5db6308c96c40 100644 --- a/src/redux/bioEntity/bioEntity.selectors.ts +++ b/src/redux/bioEntity/bioEntity.selectors.ts @@ -5,7 +5,6 @@ import { BioEntity, BioEntityContent } from '@/types/models'; import { createSelector } from '@reduxjs/toolkit'; import { currentSelectedSearchElement } from '../drawer/drawer.selectors'; import { currentModelIdSelector, modelsDataSelector } from '../models/models.selectors'; -import { reduceToJoinedMultiSearchResult } from './bioEntity.utils'; export const bioEntitySelector = createSelector(rootSelector, state => state.bioEntity); @@ -23,36 +22,21 @@ export const loadingBioEntityStatusSelector = createSelector( state => state?.loading, ); -export const bioEntitiesForSelectedSearchElementOrAllFallback = createSelector( +export const searchedBioEntitesSelectorOfCurrentMap = createSelector( bioEntitySelector, - bioEntitiesForSelectedSearchElement, currentSelectedSearchElement, - ( - bioEntitiesState, - bioEntitiesOfSelected, - currentSearchElement, - ): MultiSearchData<BioEntityContent[]> | undefined => { - if (!currentSearchElement) { - const bioEntitiesFiltered = bioEntitiesState.data.filter(d => d !== undefined); - - return bioEntitiesFiltered.length === SIZE_OF_EMPTY_ARRAY - ? undefined - : bioEntitiesFiltered.reduce(reduceToJoinedMultiSearchResult); - } - - return bioEntitiesOfSelected; - }, -); - -export const allBioEntitesSelectorOfCurrentMap = createSelector( - bioEntitiesForSelectedSearchElementOrAllFallback, currentModelIdSelector, - (bioEntities, currentModelId): BioEntity[] => { + (bioEntities, currentSearchElement, currentModelId): BioEntity[] => { if (!bioEntities) { return []; } return (bioEntities?.data || []) + .filter(({ searchQueryElement }) => + currentSearchElement ? searchQueryElement === currentSearchElement : true, + ) + .map(({ data }) => data || []) + .flat() .filter(({ bioEntity }) => bioEntity.model === currentModelId) .map(({ bioEntity }) => bioEntity); }, diff --git a/src/redux/bioEntity/bioEntity.utils.ts b/src/redux/bioEntity/bioEntity.utils.ts deleted file mode 100644 index 8aa0c336e06f2fd827d7748b5403a1e5bf62ba1b..0000000000000000000000000000000000000000 --- a/src/redux/bioEntity/bioEntity.utils.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { MultiSearchData } from '@/types/fetchDataState'; -import { BioEntityContent } from '@/types/models'; - -type MultiSearchBioEntityData = MultiSearchData<BioEntityContent[]>; -type ToJoinedMultiSearchResultFun = ( - a: MultiSearchBioEntityData, - b: MultiSearchBioEntityData, -) => MultiSearchBioEntityData; - -export const reduceToJoinedMultiSearchResult: ToJoinedMultiSearchResultFun = (a, b) => ({ - ...b, - searchQueryElement: `${a.searchQueryElement};${b.searchQueryElement}`, - data: (a.data || []).concat(b.data || []), -});