File size: 2,447 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
import React, { useState } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { Modal } from '@material-ui/core';
import SnackBarContent from '../SnackBar/SnackBarContent';
import PrivateMessageUserList from './PrivateMessageUserList';
import ChannelList from './ChannelList';
import ServerList from './ServerList';
import ActionsModal from '../ActionsModal/ActionsModal';
import { loadUserData } from '../../actions';
import { StoreState } from '../../reducers';
interface SidebarProps {
setDrawerVisible?: (drawerVisible: boolean) => void;
}
export default function Sidebar(props: SidebarProps) {
// Get from Redux Store
const user = useSelector((state: StoreState) => state.user);
const { activeView } = useSelector((state: StoreState) => state.chat);
// Dispatch
const dispatch = useDispatch();
// Get props from parent (Used when Sidebar is rendered by header on mobile)
const { setDrawerVisible } = props;
// Local state
const [modalVisible, setModalVisible] = useState(false);
const [modalType, setModalType] = useState('');
const [snackContent, setSnackContent] = useState('');
const [snackVisible, setSnackVisible] = useState(false);
// Handles Success of Modal Server Create / Join
// Closes Modal and show Snackbar with Create / Join Messsage
const handleSnackMessage = (response: string, pass: boolean) => {
if (response !== null) {
setModalVisible(false);
setSnackVisible(true);
setSnackContent(response);
if (pass) dispatch(loadUserData(user.userId));
}
};
return (
<div className="sidebar-container">
<ServerList setModalVisible={setModalVisible} setModalType={setModalType} />
{activeView === 'servers' ? (
<ChannelList
setDrawerVisible={setDrawerVisible}
setModalVisible={setModalVisible}
setModalType={setModalType}
handleSnackMessage={handleSnackMessage}
/>
) : (
<PrivateMessageUserList />
)}
<Modal
open={modalVisible}
aria-labelledby="server create modal"
aria-describedby="create a server"
className="modal-wrapper"
onClose={() => setModalVisible(false)}
>
<ActionsModal handleSnackMessage={handleSnackMessage} modalType={modalType} />
</Modal>
<SnackBarContent visible={snackVisible} setVisible={setSnackVisible} content={snackContent} />
</div>
);
}
|