Skip to content

Commit b935439

Browse files
committed
fix: /omp page
1 parent 02bcad6 commit b935439

File tree

1 file changed

+11
-18
lines changed

1 file changed

+11
-18
lines changed

src/web/pages/omp.jsx

+11-18
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6-
import React from 'react';
7-
8-
import {withRouter} from 'web/utils/withRouter';
9-
10-
import PropTypes from 'web/utils/proptypes';
6+
import {useNavigate, useSearchParams} from 'react-router-dom';
7+
import {useEffect} from 'react';
118

129
/**
1310
* Component to redirect old secinfo urls like
@@ -16,9 +13,12 @@ import PropTypes from 'web/utils/proptypes';
1613
*
1714
* to the current replacement pages
1815
*/
19-
class LegacyOmpPage extends React.Component {
20-
componentDidMount() {
21-
const {navigate, searchParams} = this.props;
16+
17+
const OmpComponent = () => {
18+
const navigate = useNavigate();
19+
const [searchParams] = useSearchParams();
20+
21+
useEffect(() => {
2222
const cmd = searchParams.get('cmd');
2323
const info_type = searchParams.get('info_type');
2424
const info_id = searchParams.get('info_id') || '';
@@ -50,16 +50,9 @@ class LegacyOmpPage extends React.Component {
5050
navigate('/notfound', {replace: true});
5151
break;
5252
}
53-
}
54-
55-
render() {
56-
return null;
57-
}
58-
}
53+
}, [navigate, searchParams]);
5954

60-
LegacyOmpPage.propTypes = {
61-
navigate: PropTypes.object.isRequired,
62-
searchParams: PropTypes.object.isRequired,
55+
return null;
6356
};
6457

65-
export default withRouter(LegacyOmpPage);
58+
export default OmpComponent;

0 commit comments

Comments
 (0)