Skip to content
Snippets Groups Projects
Commit 7f4c4b00 authored by mateusz-winiarczyk's avatar mateusz-winiarczyk
Browse files

fix(plugin): onSearch listener when clicking on reaction (MIN-314)

parent 535217d5
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...,!176fix(plugin): onSearch listener when clicking on reaction (MIN-314)
...@@ -70,7 +70,7 @@ To listen for specific events, plugins can use the `addListener` method in `even ...@@ -70,7 +70,7 @@ To listen for specific events, plugins can use the `addListener` method in `even
15 15
``` ```
- onSearch - triggered after completing a search; the elements returned by the search are passed as arguments. Three separate events 'onSearch' are triggered, each with a different searched category type. Category types include: bioEntity, drugs, chemicals. Example argument: - onSearch - triggered after completing a search; the elements returned by the search are passed as arguments. Three separate events 'onSearch' are triggered, each with a different searched category type. Category types include: bioEntity, drugs, chemicals, reaction. Example argument:
```javascript ```javascript
{ {
......
...@@ -11,12 +11,15 @@ import { INITIAL_STORE_STATE_MOCK } from '@/redux/root/root.fixtures'; ...@@ -11,12 +11,15 @@ import { INITIAL_STORE_STATE_MOCK } from '@/redux/root/root.fixtures';
import { mockNetworkNewAPIResponse, mockNetworkResponse } from '@/utils/mockNetworkResponse'; import { mockNetworkNewAPIResponse, mockNetworkResponse } from '@/utils/mockNetworkResponse';
import { getReduxStoreWithActionsListener } from '@/utils/testing/getReduxStoreActionsListener'; import { getReduxStoreWithActionsListener } from '@/utils/testing/getReduxStoreActionsListener';
import { HttpStatusCode } from 'axios'; import { HttpStatusCode } from 'axios';
import { PluginsEventBus } from '@/services/pluginsManager/pluginsEventBus';
import * as findClosestReactionPoint from './findClosestReactionPoint'; import * as findClosestReactionPoint from './findClosestReactionPoint';
import { handleReactionResults } from './handleReactionResults'; import { handleReactionResults } from './handleReactionResults';
const mockedAxiosOldClient = mockNetworkResponse(); const mockedAxiosOldClient = mockNetworkResponse();
const mockedAxiosNewClient = mockNetworkNewAPIResponse(); const mockedAxiosNewClient = mockNetworkNewAPIResponse();
jest.mock('../../../../../../services/pluginsManager/pluginsEventBus');
jest.mock('./findClosestReactionPoint', () => ({ jest.mock('./findClosestReactionPoint', () => ({
__esModule: true, __esModule: true,
...jest.requireActual('./findClosestReactionPoint'), ...jest.requireActual('./findClosestReactionPoint'),
...@@ -266,4 +269,47 @@ describe('handleReactionResults - util', () => { ...@@ -266,4 +269,47 @@ describe('handleReactionResults - util', () => {
]); ]);
}); });
}); });
describe('when matching reaction found', () => {
const reaction = {
...reactionsFixture[0],
products: [],
reactants: [],
modifiers: [],
lines: [{ start: { x: 0, y: 0 }, end: { x: 3, y: 4 }, type: 'START' }],
};
const point = { x: 1, y: 1 };
const maxZoom = 10;
const zoom = 5;
it('should dispatch onSearch event with reaction data', async () => {
const { store } = getReduxStoreWithActionsListener();
mockedAxiosNewClient
.onGet(
apiPath.getBioEntityContentsStringWithQuery({
searchQuery: ELEMENT_SEARCH_RESULT_MOCK_ALIAS.id.toString(),
isPerfectMatch: true,
}),
)
.reply(HttpStatusCode.Ok, []);
mockedAxiosOldClient
.onGet(apiPath.getReactionsWithIds([ELEMENT_SEARCH_RESULT_MOCK_REACTION.id]))
.reply(HttpStatusCode.Ok, [reaction]);
await handleReactionResults(store.dispatch, ELEMENT_SEARCH_RESULT_MOCK_REACTION, {
searchDistance,
maxZoom,
zoom,
point,
isResultDrawerOpen: false,
})(ELEMENT_SEARCH_RESULT_MOCK_REACTION);
expect(PluginsEventBus.dispatchEvent).toHaveBeenCalledWith('onSearch', {
results: [[reaction]],
searchValues: [ELEMENT_SEARCH_RESULT_MOCK_REACTION],
type: 'reaction',
});
});
});
}); });
...@@ -56,9 +56,9 @@ export const handleReactionResults = ...@@ -56,9 +56,9 @@ export const handleReactionResults =
) )
).unwrap().then((bioEntityContents) => { ).unwrap().then((bioEntityContents) => {
PluginsEventBus.dispatchEvent('onSearch', { PluginsEventBus.dispatchEvent('onSearch', {
type: 'bioEntity', type: 'reaction',
searchValues: [closestSearchResult], searchValues: [closestSearchResult],
results: [bioEntityContents], results: [[...bioEntityContents, reaction]],
}); });
if (searchConfig && searchConfig.hasFitBounds) { if (searchConfig && searchConfig.hasFitBounds) {
......
...@@ -5,6 +5,7 @@ import { ...@@ -5,6 +5,7 @@ import {
Drug, Drug,
ElementSearchResult, ElementSearchResult,
MapOverlay, MapOverlay,
Reaction,
} from '@/types/models'; } from '@/types/models';
import { dispatchEvent } from './pluginsEventBus'; import { dispatchEvent } from './pluginsEventBus';
...@@ -53,6 +54,12 @@ export type ClickedSurfaceOverlay = { ...@@ -53,6 +54,12 @@ export type ClickedSurfaceOverlay = {
id: number | string; id: number | string;
}; };
export type SearchDataReaction = {
type: 'reaction';
searchValues: string[] | ElementSearchResult[];
results: (BioEntityContent | Reaction)[][];
};
export type SearchDataBioEntity = { export type SearchDataBioEntity = {
type: 'bioEntity'; type: 'bioEntity';
searchValues: string[] | ElementSearchResult[]; searchValues: string[] | ElementSearchResult[];
...@@ -75,7 +82,11 @@ export type PluginUnloaded = { ...@@ -75,7 +82,11 @@ export type PluginUnloaded = {
hash: string; hash: string;
}; };
export type SearchData = SearchDataBioEntity | SearchDataDrugs | SearchDataChemicals; export type SearchData =
| SearchDataBioEntity
| SearchDataDrugs
| SearchDataChemicals
| SearchDataReaction;
export type EventsData = export type EventsData =
| CreatedOverlay | CreatedOverlay
......
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