File tree 1 file changed +7
-2
lines changed
labotel/indico_labotel/client/js/components
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 7
7
8
8
import PropTypes from 'prop-types' ;
9
9
import React from 'react' ;
10
- import { useDispatch } from 'react-redux' ;
10
+ import { useDispatch , useSelector } from 'react-redux' ;
11
11
import { Item } from 'semantic-ui-react' ;
12
12
13
13
import { actions as roomActions } from 'indico/modules/rb/common/rooms' ;
@@ -19,7 +19,12 @@ import './LabRenderer.module.scss';
19
19
export default function LabItem ( { roomInstance, room} ) {
20
20
const { actions} = Slot . split ( roomInstance . props . children ) ;
21
21
const dispatch = useDispatch ( ) ;
22
- const openRoomDetails = ( ) => dispatch ( roomActions . openRoomDetailsBook ( room . id ) ) ;
22
+ const pathname = useSelector ( state => state . router . location . pathname ) ;
23
+ const isBooking = pathname === '/book' ;
24
+ const openRoomDetails = ( ) =>
25
+ dispatch (
26
+ isBooking ? roomActions . openRoomDetailsBook ( room . id ) : roomActions . openRoomDetails ( room . id )
27
+ ) ;
23
28
return (
24
29
< Item key = { room . id } styleName = "lab-item" >
25
30
< Item . Image
You can’t perform that action at this time.
0 commit comments