Skip to content
Snippets Groups Projects
Commit 39d79916 authored by Tadeusz Miesiąc's avatar Tadeusz Miesiąc
Browse files

refactor(get drugs string with query param): moved repeated string to separate function

parent 910a7266
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...,!20Resolve MIN-57 "Feature/ connect drug search query"
Pipeline #79152 passed
import { PROJECT_ID } from '@/constants/mapId';
import { getDrugsStringWithQuery } from './getDrugsStringWithQuery';
describe('getDrugsStringWithQuery', () => {
it('should return url string', () => {
expect(getDrugsStringWithQuery('aspirin')).toBe(
`projects/${PROJECT_ID}/drugs:search?query=aspirin`,
);
});
});
import { PROJECT_ID } from '@/constants/mapId';
export const getDrugsStringWithQuery = (searchQuery: string): string =>
`projects/${PROJECT_ID}/drugs:search?query=${searchQuery}`;
import { HttpStatusCode } from 'axios'; import { HttpStatusCode } from 'axios';
import { PROJECT_ID } from '@/constants/mapId';
import { drugsFixture } from '@/models/fixtures/drugFixtures'; import { drugsFixture } from '@/models/fixtures/drugFixtures';
import { mockNetworkResponse } from '@/utils/mockNetworkResponse'; import { mockNetworkResponse } from '@/utils/mockNetworkResponse';
import { import {
ToolkitStoreWithSingleSlice, ToolkitStoreWithSingleSlice,
createStoreInstanceUsingSliceReducer, createStoreInstanceUsingSliceReducer,
} from '@/utils/createStoreInstanceUsingSliceReducer'; } from '@/utils/createStoreInstanceUsingSliceReducer';
import { getDrugsStringWithQuery } from '@/queries/getDrugsStringWithQuery';
import { getDrugs } from './drugs.thunks'; import { getDrugs } from './drugs.thunks';
import drugsReducer from './drugs.slice'; import drugsReducer from './drugs.slice';
import { DrugsState } from './drugs.types'; import { DrugsState } from './drugs.types';
...@@ -32,7 +32,7 @@ describe('drugs reducer', () => { ...@@ -32,7 +32,7 @@ describe('drugs reducer', () => {
}); });
it('should update store after succesfull getDrugs query', async () => { it('should update store after succesfull getDrugs query', async () => {
mockedAxiosClient mockedAxiosClient
.onGet(`projects/${PROJECT_ID}/drugs:search?query=${SEARCH_QUERY}`) .onGet(getDrugsStringWithQuery(SEARCH_QUERY))
.reply(HttpStatusCode.Ok, drugsFixture); .reply(HttpStatusCode.Ok, drugsFixture);
const { type } = await store.dispatch(getDrugs(SEARCH_QUERY)); const { type } = await store.dispatch(getDrugs(SEARCH_QUERY));
...@@ -46,7 +46,7 @@ describe('drugs reducer', () => { ...@@ -46,7 +46,7 @@ describe('drugs reducer', () => {
it('should update store after failed getDrugs query', async () => { it('should update store after failed getDrugs query', async () => {
mockedAxiosClient mockedAxiosClient
.onGet(`projects/${PROJECT_ID}/drugs:search?query=${SEARCH_QUERY}`) .onGet(getDrugsStringWithQuery(SEARCH_QUERY))
.reply(HttpStatusCode.NotFound, []); .reply(HttpStatusCode.NotFound, []);
const { type } = await store.dispatch(getDrugs(SEARCH_QUERY)); const { type } = await store.dispatch(getDrugs(SEARCH_QUERY));
...@@ -60,7 +60,7 @@ describe('drugs reducer', () => { ...@@ -60,7 +60,7 @@ describe('drugs reducer', () => {
it('should update store on loading getDrugs query', async () => { it('should update store on loading getDrugs query', async () => {
mockedAxiosClient mockedAxiosClient
.onGet(`projects/${PROJECT_ID}/drugs:search?query=${SEARCH_QUERY}`) .onGet(getDrugsStringWithQuery(SEARCH_QUERY))
.reply(HttpStatusCode.Ok, drugsFixture); .reply(HttpStatusCode.Ok, drugsFixture);
const drugsPromise = store.dispatch(getDrugs(SEARCH_QUERY)); const drugsPromise = store.dispatch(getDrugs(SEARCH_QUERY));
......
import { HttpStatusCode } from 'axios'; import { HttpStatusCode } from 'axios';
import { PROJECT_ID } from '@/constants/mapId';
import { drugsFixture } from '@/models/fixtures/drugFixtures'; import { drugsFixture } from '@/models/fixtures/drugFixtures';
import { mockNetworkResponse } from '@/utils/mockNetworkResponse'; import { mockNetworkResponse } from '@/utils/mockNetworkResponse';
import { getDrugsStringWithQuery } from '@/queries/getDrugsStringWithQuery';
import { import {
ToolkitStoreWithSingleSlice, ToolkitStoreWithSingleSlice,
createStoreInstanceUsingSliceReducer, createStoreInstanceUsingSliceReducer,
...@@ -21,7 +21,7 @@ describe('drugs thunks', () => { ...@@ -21,7 +21,7 @@ describe('drugs thunks', () => {
describe('getDrugs', () => { describe('getDrugs', () => {
it('should return data when data response from API is valid', async () => { it('should return data when data response from API is valid', async () => {
mockedAxiosClient mockedAxiosClient
.onGet(`projects/${PROJECT_ID}/drugs:search?query=${SEARCH_QUERY}`) .onGet(getDrugsStringWithQuery(SEARCH_QUERY))
.reply(HttpStatusCode.Ok, drugsFixture); .reply(HttpStatusCode.Ok, drugsFixture);
const { payload } = await store.dispatch(getDrugs(SEARCH_QUERY)); const { payload } = await store.dispatch(getDrugs(SEARCH_QUERY));
...@@ -29,7 +29,7 @@ describe('drugs thunks', () => { ...@@ -29,7 +29,7 @@ describe('drugs thunks', () => {
}); });
it('should return undefined when data response from API is not valid ', async () => { it('should return undefined when data response from API is not valid ', async () => {
mockedAxiosClient mockedAxiosClient
.onGet(`projects/${PROJECT_ID}/drugs:search?query=${SEARCH_QUERY}`) .onGet(getDrugsStringWithQuery(SEARCH_QUERY))
.reply(HttpStatusCode.Ok, { randomProperty: 'randomValue' }); .reply(HttpStatusCode.Ok, { randomProperty: 'randomValue' });
const { payload } = await store.dispatch(getDrugs(SEARCH_QUERY)); const { payload } = await store.dispatch(getDrugs(SEARCH_QUERY));
......
import { z } from 'zod'; import { z } from 'zod';
import { getDrugsStringWithQuery } from '@/queries/getDrugsStringWithQuery';
import { createAsyncThunk } from '@reduxjs/toolkit'; import { createAsyncThunk } from '@reduxjs/toolkit';
import { axiosInstance } from '@/services/api/utils/axiosInstance'; import { axiosInstance } from '@/services/api/utils/axiosInstance';
import { PROJECT_ID } from '@/constants/mapId';
import { Drug } from '@/types/models'; import { Drug } from '@/types/models';
import { drugSchema } from '@/models/drugSchema'; import { drugSchema } from '@/models/drugSchema';
import { validateDataUsingZodSchema } from '@/utils/validateDataUsingZodSchema'; import { validateDataUsingZodSchema } from '@/utils/validateDataUsingZodSchema';
...@@ -9,9 +9,7 @@ import { validateDataUsingZodSchema } from '@/utils/validateDataUsingZodSchema'; ...@@ -9,9 +9,7 @@ import { validateDataUsingZodSchema } from '@/utils/validateDataUsingZodSchema';
export const getDrugs = createAsyncThunk( export const getDrugs = createAsyncThunk(
'project/getDrugs', 'project/getDrugs',
async (searchQuery: string): Promise<Drug[] | undefined> => { async (searchQuery: string): Promise<Drug[] | undefined> => {
const response = await axiosInstance.get<Drug[]>( const response = await axiosInstance.get<Drug[]>(getDrugsStringWithQuery(searchQuery));
`projects/${PROJECT_ID}/drugs:search?query=${searchQuery}`,
);
const isDataValid = validateDataUsingZodSchema(response.data, z.array(drugSchema)); const isDataValid = validateDataUsingZodSchema(response.data, z.array(drugSchema));
......
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