3
3
* SPDX-License-Identifier: AGPL-3.0-or-later
4
4
*/
5
5
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' ;
11
8
12
9
/**
13
10
* Component to redirect old secinfo urls like
@@ -16,9 +13,12 @@ import PropTypes from 'web/utils/proptypes';
16
13
*
17
14
* to the current replacement pages
18
15
*/
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 ( ( ) => {
22
22
const cmd = searchParams . get ( 'cmd' ) ;
23
23
const info_type = searchParams . get ( 'info_type' ) ;
24
24
const info_id = searchParams . get ( 'info_id' ) || '' ;
@@ -50,16 +50,9 @@ class LegacyOmpPage extends React.Component {
50
50
navigate ( '/notfound' , { replace : true } ) ;
51
51
break ;
52
52
}
53
- }
54
-
55
- render ( ) {
56
- return null ;
57
- }
58
- }
53
+ } , [ navigate , searchParams ] ) ;
59
54
60
- LegacyOmpPage . propTypes = {
61
- navigate : PropTypes . object . isRequired ,
62
- searchParams : PropTypes . object . isRequired ,
55
+ return null ;
63
56
} ;
64
57
65
- export default withRouter ( LegacyOmpPage ) ;
58
+ export default OmpComponent ;
0 commit comments