2021-07-28 16:15:52 +03:00
|
|
|
import React, { useState, useEffect } from 'react';
|
2021-08-31 16:13:31 +03:00
|
|
|
import './Room.scss';
|
2021-07-28 16:15:52 +03:00
|
|
|
|
|
|
|
import cons from '../../../client/state/cons';
|
|
|
|
import navigation from '../../../client/state/navigation';
|
2021-11-15 05:53:59 +02:00
|
|
|
import settings from '../../../client/state/settings';
|
2021-07-28 16:15:52 +03:00
|
|
|
|
|
|
|
import Welcome from '../welcome/Welcome';
|
2021-08-31 16:13:31 +03:00
|
|
|
import RoomView from './RoomView';
|
2021-07-28 16:15:52 +03:00
|
|
|
import PeopleDrawer from './PeopleDrawer';
|
|
|
|
|
2021-08-31 16:13:31 +03:00
|
|
|
function Room() {
|
2021-07-28 16:15:52 +03:00
|
|
|
const [selectedRoomId, changeSelectedRoomId] = useState(null);
|
2021-11-15 05:53:59 +02:00
|
|
|
const [isDrawerVisible, toggleDrawerVisiblity] = useState(settings.isPeopleDrawer);
|
2021-07-28 16:15:52 +03:00
|
|
|
useEffect(() => {
|
|
|
|
const handleRoomSelected = (roomId) => {
|
|
|
|
changeSelectedRoomId(roomId);
|
|
|
|
};
|
|
|
|
const handleDrawerToggling = (visiblity) => {
|
|
|
|
toggleDrawerVisiblity(visiblity);
|
|
|
|
};
|
|
|
|
navigation.on(cons.events.navigation.ROOM_SELECTED, handleRoomSelected);
|
2021-11-15 05:53:59 +02:00
|
|
|
settings.on(cons.events.settings.PEOPLE_DRAWER_TOGGLED, handleDrawerToggling);
|
2021-07-28 16:15:52 +03:00
|
|
|
|
|
|
|
return () => {
|
|
|
|
navigation.removeListener(cons.events.navigation.ROOM_SELECTED, handleRoomSelected);
|
2021-11-15 05:53:59 +02:00
|
|
|
settings.removeListener(cons.events.settings.PEOPLE_DRAWER_TOGGLED, handleDrawerToggling);
|
2021-07-28 16:15:52 +03:00
|
|
|
};
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
if (selectedRoomId === null) return <Welcome />;
|
|
|
|
|
|
|
|
return (
|
2021-08-31 16:13:31 +03:00
|
|
|
<div className="room-container">
|
|
|
|
<RoomView roomId={selectedRoomId} />
|
2021-07-28 16:15:52 +03:00
|
|
|
{ isDrawerVisible && <PeopleDrawer roomId={selectedRoomId} />}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-08-31 16:13:31 +03:00
|
|
|
export default Room;
|