Skip to content

Commit

Permalink
feat: upgrade react router to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
Syed-Ali-Abbas-Zaidi committed Aug 15, 2023
1 parent 5241cc1 commit 01f239a
Show file tree
Hide file tree
Showing 16 changed files with 188 additions and 138 deletions.
126 changes: 46 additions & 80 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions packages/catalog-search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"devDependencies": {
"@edx/browserslist-config": "1.1.0",
"@edx/frontend-build": "12.7.0",
"@edx/frontend-platform": "4.6.0",
"@edx/frontend-platform": "5.0.0",
"@edx/paragon": "20.45.0",
"@fortawesome/free-solid-svg-icons": "5.8.1",
"@fortawesome/react-fontawesome": "0.2.0",
Expand All @@ -56,17 +56,17 @@
"react": "17.0.2",
"react-dom": "17.0.2",
"react-instantsearch-dom": "6.8.3",
"react-router-dom": "5.2.0",
"react-router-dom": "6.14.2",
"react-test-renderer": "17.0.2"
},
"peerDependencies": {
"@edx/frontend-platform": "^4.0.1",
"@edx/frontend-platform": "^5.0.0",
"@edx/paragon": "^19.15.0 || ^20.0.0",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"react": "^16.12.0 || ^17.0.0",
"react-dom": "^16.12.0 || ^17.0.0",
"react-instantsearch-dom": "^6.8.3",
"react-router-dom": "^5.2.0"
"react-router-dom": "^6.0.0"
}
}
8 changes: 4 additions & 4 deletions packages/catalog-search/src/SearchContext.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React, {
createContext, useReducer, useMemo, useEffect,
} from 'react';
import PropTypes from 'prop-types';
import { useLocation, useHistory } from 'react-router-dom';
import { useLocation, useNavigate } from 'react-router-dom';
import { useIsFirstRender } from '@edx/frontend-enterprise-utils';

import {
Expand Down Expand Up @@ -43,8 +43,8 @@ const SearchData = ({ children, searchFacetFilters, trackingName }) => {
{},
);

const { search } = useLocation();
const history = useHistory();
const { pathname, search } = useLocation();
const navigate = useNavigate();

/**
* Applies initial URL query params on page load to the refinements
Expand All @@ -70,7 +70,7 @@ const SearchData = ({ children, searchFacetFilters, trackingName }) => {
useEffect(() => {
if (!isFirstRender) {
const newQueryString = stringifyRefinements(refinements);
history.push({ search: newQueryString });
navigate({ pathname, search: newQueryString });
}
}, [JSON.stringify(refinements)]);

Expand Down
1 change: 1 addition & 0 deletions packages/catalog-search/src/SearchSuggestionItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const SearchSuggestionItem = ({
suggestionItemHandler(hit);
}
};

return (
<Link to={url} key={hit.title} className="suggestion-item" onClick={handleLinkDisable}>
<div>
Expand Down
21 changes: 16 additions & 5 deletions packages/catalog-search/src/tests/CurrentRefinements.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ import {
} from '../data/tests/constants';
import SearchData from '../SearchContext';

const mockedNavigator = jest.fn();

jest.mock('react-router-dom', () => ({
...jest.requireActual('react-router-dom'),
useNavigate: () => mockedNavigator,
useLocation: () => ({
pathname: '/',
search: 'subjects=Computer Science&subjects=Communication',
}),
}));

describe('<CurrentRefinements />', () => {
const items = [
{
Expand Down Expand Up @@ -60,19 +71,19 @@ describe('<CurrentRefinements />', () => {
});

test('supports removing an active refinement from the url by clicking on it', async () => {
const { history } = renderWithRouter(
renderWithRouter(
<SearchData>
<CurrentRefinementsBase items={items} />
</SearchData>,
{
route: `/?subjects=${SUBJECTS.COMPUTER_SCIENCE}&subjects=${SUBJECTS.COMMUNICATION}`,
},
);

// click a specific refinement to remove it
fireEvent.click(screen.queryByText(SUBJECTS.COMMUNICATION));

// assert the clicked refinement in the url is removed but others stay put
expect(history.location.search).toEqual('?subjects=Computer%20Science');
expect(mockedNavigator.mock.calls[mockedNavigator.mock.calls.length - 1][0]).toStrictEqual({
pathname: '/',
search: 'subjects=Computer%20Science',
});
});
});
Loading

0 comments on commit 01f239a

Please sign in to comment.