Skip to content
Snippets Groups Projects
Commit 17f09e86 authored by Adrian Orłów's avatar Adrian Orłów
Browse files

chore: rfc changes

parent 56048692
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!156feat: publications modal elements links + reaction search (MIN-241, MIN-229)
Pipeline #87790 failed
import { getBioEntitiesIdsFromReaction } from '@/components/Map/MapViewer/utils/listeners/mapSingleClick/getBioEntitiesIdsFromReaction';
import { SIZE_OF_EMPTY_ARRAY, ZERO } from '@/constants/common';
import { bioEntityResponseSchema } from '@/models/bioEntityResponseSchema'; import { bioEntityResponseSchema } from '@/models/bioEntityResponseSchema';
import { apiPath } from '@/redux/apiPath'; import { apiPath } from '@/redux/apiPath';
import { selectTab } from '@/redux/drawer/drawer.slice';
import { axiosInstanceNewAPI } from '@/services/api/utils/axiosInstance'; import { axiosInstanceNewAPI } from '@/services/api/utils/axiosInstance';
import { BioEntityContent, BioEntityResponse } from '@/types/models'; import { BioEntityContent, BioEntityResponse } from '@/types/models';
import { PerfectSearchParams } from '@/types/search'; import { PerfectSearchParams } from '@/types/search';
...@@ -11,9 +8,7 @@ import { getErrorMessage } from '@/utils/getErrorMessage'; ...@@ -11,9 +8,7 @@ import { getErrorMessage } from '@/utils/getErrorMessage';
import { validateDataUsingZodSchema } from '@/utils/validateDataUsingZodSchema'; import { validateDataUsingZodSchema } from '@/utils/validateDataUsingZodSchema';
import { createAsyncThunk } from '@reduxjs/toolkit'; import { createAsyncThunk } from '@reduxjs/toolkit';
import { addNumbersToEntityNumberData } from '../../entityNumber/entityNumber.slice'; import { addNumbersToEntityNumberData } from '../../entityNumber/entityNumber.slice';
import { getReactionsByIds } from '../../reactions/reactions.thunks';
import { BIO_ENTITY_FETCHING_ERROR_PREFIX } from '../bioEntity.constants'; import { BIO_ENTITY_FETCHING_ERROR_PREFIX } from '../bioEntity.constants';
import { getMultiBioEntity } from '../bioEntity.thunks';
type GetBioEntityProps = PerfectSearchParams; type GetBioEntityProps = PerfectSearchParams;
...@@ -37,38 +32,6 @@ export const getBioEntity = createAsyncThunk< ...@@ -37,38 +32,6 @@ export const getBioEntity = createAsyncThunk<
bioEntityResponseSchema, bioEntityResponseSchema,
); );
const bioEntityReactionsIds = (response.data?.content || [])
.filter(c => c?.bioEntity?.idReaction)
.map(c => c?.bioEntity?.id)
.filter((id): id is number => typeof id === 'number');
if (bioEntityReactionsIds.length > ZERO) {
dispatch(
getReactionsByIds({
ids: bioEntityReactionsIds,
shouldConcat: true,
}),
).then(async result => {
if (typeof result.payload === 'string') return;
const reactions = result.payload?.data;
if (!reactions || reactions.length === SIZE_OF_EMPTY_ARRAY) return;
const bioEntitiesIds = reactions
.map(reaction => getBioEntitiesIdsFromReaction(reaction))
.flat();
// dispatch(openReactionDrawerById(reactions[FIRST_ARRAY_ELEMENT].id));
dispatch(selectTab(''));
await dispatch(
getMultiBioEntity({
searchQueries: bioEntitiesIds,
isPerfectMatch: true,
}),
);
});
}
if (addNumbersToEntityNumber && response.data.content) { if (addNumbersToEntityNumber && response.data.content) {
const bioEntityIds = response.data.content.map(b => b.bioEntity.elementId); const bioEntityIds = response.data.content.map(b => b.bioEntity.elementId);
dispatch(addNumbersToEntityNumberData(bioEntityIds)); dispatch(addNumbersToEntityNumberData(bioEntityIds));
......
import { getBioEntitiesIdsFromReaction } from '@/components/Map/MapViewer/utils/listeners/mapSingleClick/getBioEntitiesIdsFromReaction';
import { SIZE_OF_EMPTY_ARRAY, ZERO } from '@/constants/common';
import { selectTab } from '@/redux/drawer/drawer.slice';
import { getReactionsByIds } from '@/redux/reactions/reactions.thunks';
import { BioEntityContent } from '@/types/models'; import { BioEntityContent } from '@/types/models';
import { PerfectMultiSearchParams } from '@/types/search'; import { PerfectMultiSearchParams } from '@/types/search';
import { ThunkConfig } from '@/types/store'; import { ThunkConfig } from '@/types/store';
...@@ -36,6 +40,38 @@ export const getMultiBioEntity = createAsyncThunk< ...@@ -36,6 +40,38 @@ export const getMultiBioEntity = createAsyncThunk<
const bioEntityIds = bioEntityContents.map(b => b.bioEntity.elementId); const bioEntityIds = bioEntityContents.map(b => b.bioEntity.elementId);
dispatch(addNumbersToEntityNumberData(bioEntityIds)); dispatch(addNumbersToEntityNumberData(bioEntityIds));
const bioEntityReactionsIds = (bioEntityContents || [])
.filter(c => c?.bioEntity?.idReaction)
.map(c => c?.bioEntity?.id)
.filter((id): id is number => typeof id === 'number');
if (bioEntityReactionsIds.length > ZERO) {
dispatch(
getReactionsByIds({
ids: bioEntityReactionsIds,
shouldConcat: true,
}),
).then(async result => {
if (typeof result.payload === 'string') return;
const reactions = result.payload?.data;
if (!reactions || reactions.length === SIZE_OF_EMPTY_ARRAY) return;
const bioEntitiesIds = reactions
.map(reaction => getBioEntitiesIdsFromReaction(reaction))
.flat();
// dispatch(openReactionDrawerById(reactions[FIRST_ARRAY_ELEMENT].id));
dispatch(selectTab(''));
await dispatch(
getMultiBioEntity({
searchQueries: bioEntitiesIds,
isPerfectMatch: true,
}),
);
});
}
return bioEntityContents; return bioEntityContents;
} catch (error) { } catch (error) {
const errorMessage = getErrorMessage({ const errorMessage = getErrorMessage({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment