2021-07-28 16:15:52 +03:00
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import './Drawer.scss';
|
|
|
|
|
|
|
|
import initMatrix from '../../../client/initMatrix';
|
|
|
|
import cons from '../../../client/state/cons';
|
|
|
|
import { doesRoomHaveUnread } from '../../../util/matrixUtil';
|
|
|
|
import {
|
|
|
|
selectRoom, openPublicChannels, openCreateChannel, openInviteUser,
|
|
|
|
} from '../../../client/action/navigation';
|
|
|
|
import navigation from '../../../client/state/navigation';
|
|
|
|
|
|
|
|
import Header, { TitleWrapper } from '../../atoms/header/Header';
|
|
|
|
import Text from '../../atoms/text/Text';
|
|
|
|
import IconButton from '../../atoms/button/IconButton';
|
|
|
|
import ScrollView from '../../atoms/scroll/ScrollView';
|
|
|
|
import ContextMenu, { MenuItem, MenuHeader } from '../../atoms/context-menu/ContextMenu';
|
|
|
|
import ChannelSelector from '../../molecules/channel-selector/ChannelSelector';
|
|
|
|
|
|
|
|
import PlusIC from '../../../../public/res/ic/outlined/plus.svg';
|
|
|
|
// import VerticalMenuIC from '../../../../public/res/ic/outlined/vertical-menu.svg';
|
|
|
|
import HashIC from '../../../../public/res/ic/outlined/hash.svg';
|
|
|
|
import HashLockIC from '../../../../public/res/ic/outlined/hash-lock.svg';
|
|
|
|
import HashPlusIC from '../../../../public/res/ic/outlined/hash-plus.svg';
|
|
|
|
import HashSearchIC from '../../../../public/res/ic/outlined/hash-search.svg';
|
|
|
|
import SpaceIC from '../../../../public/res/ic/outlined/space.svg';
|
|
|
|
import SpaceLockIC from '../../../../public/res/ic/outlined/space-lock.svg';
|
|
|
|
|
|
|
|
function AtoZ(aId, bId) {
|
|
|
|
let aName = initMatrix.matrixClient.getRoom(aId).name;
|
|
|
|
let bName = initMatrix.matrixClient.getRoom(bId).name;
|
|
|
|
|
|
|
|
// remove "#" from the room name
|
|
|
|
// To ignore it in sorting
|
|
|
|
aName = aName.replaceAll('#', '');
|
|
|
|
bName = bName.replaceAll('#', '');
|
|
|
|
|
|
|
|
if (aName.toLowerCase() < bName.toLowerCase()) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (aName.toLowerCase() > bName.toLowerCase()) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-08-30 06:01:13 +03:00
|
|
|
function DrawerHeader({ activeTab }) {
|
2021-07-28 16:15:52 +03:00
|
|
|
return (
|
|
|
|
<Header>
|
|
|
|
<TitleWrapper>
|
2021-08-30 06:01:13 +03:00
|
|
|
<Text variant="s1">{(activeTab === 'home' ? 'Home' : 'Direct messages')}</Text>
|
2021-07-28 16:15:52 +03:00
|
|
|
</TitleWrapper>
|
2021-08-30 06:01:13 +03:00
|
|
|
{(activeTab === 'dm')
|
2021-07-28 16:15:52 +03:00
|
|
|
? <IconButton onClick={() => openInviteUser()} tooltip="Start DM" src={PlusIC} size="normal" />
|
|
|
|
: (
|
|
|
|
<ContextMenu
|
|
|
|
content={(hideMenu) => (
|
|
|
|
<>
|
|
|
|
<MenuHeader>Add channel</MenuHeader>
|
|
|
|
<MenuItem
|
|
|
|
iconSrc={HashPlusIC}
|
|
|
|
onClick={() => { hideMenu(); openCreateChannel(); }}
|
|
|
|
>
|
|
|
|
Create new channel
|
|
|
|
</MenuItem>
|
|
|
|
<MenuItem
|
|
|
|
iconSrc={HashSearchIC}
|
|
|
|
onClick={() => { hideMenu(); openPublicChannels(); }}
|
|
|
|
>
|
|
|
|
Add Public channel
|
|
|
|
</MenuItem>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
render={(toggleMenu) => (<IconButton onClick={toggleMenu} tooltip="Add channel" src={PlusIC} size="normal" />)}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{/* <IconButton onClick={() => ''} tooltip="Menu" src={VerticalMenuIC} size="normal" /> */}
|
|
|
|
</Header>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
DrawerHeader.propTypes = {
|
2021-08-30 06:01:13 +03:00
|
|
|
activeTab: PropTypes.string.isRequired,
|
2021-07-28 16:15:52 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
function DrawerBradcrumb() {
|
|
|
|
return (
|
|
|
|
<div className="breadcrumb__wrapper">
|
|
|
|
<ScrollView horizontal vertical={false}>
|
|
|
|
<div>
|
|
|
|
{/* TODO: bradcrumb space paths when spaces become a thing */}
|
|
|
|
</div>
|
|
|
|
</ScrollView>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderSelector(room, roomId, isSelected, isDM) {
|
|
|
|
const mx = initMatrix.matrixClient;
|
|
|
|
let imageSrc = room.getAvatarFallbackMember()?.getAvatarUrl(mx.baseUrl, 24, 24, 'crop');
|
|
|
|
if (typeof imageSrc === 'undefined') imageSrc = null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ChannelSelector
|
|
|
|
key={roomId}
|
2021-08-29 11:27:55 +03:00
|
|
|
name={room.name}
|
|
|
|
roomId={roomId}
|
|
|
|
imageSrc={isDM ? imageSrc : null}
|
2021-07-28 16:15:52 +03:00
|
|
|
iconSrc={
|
|
|
|
isDM
|
|
|
|
? null
|
|
|
|
: (() => {
|
|
|
|
if (room.isSpaceRoom()) {
|
|
|
|
return (room.getJoinRule() === 'invite' ? SpaceLockIC : SpaceIC);
|
|
|
|
}
|
|
|
|
return (room.getJoinRule() === 'invite' ? HashLockIC : HashIC);
|
|
|
|
})()
|
|
|
|
}
|
2021-08-29 11:27:55 +03:00
|
|
|
isSelected={isSelected}
|
|
|
|
isUnread={doesRoomHaveUnread(room)}
|
2021-07-28 16:15:52 +03:00
|
|
|
notificationCount={room.getUnreadNotificationCount('total')}
|
2021-08-29 11:27:55 +03:00
|
|
|
isAlert={room.getUnreadNotificationCount('highlight') !== 0}
|
|
|
|
onClick={() => selectRoom(roomId)}
|
|
|
|
/>
|
2021-07-28 16:15:52 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function Directs({ selectedRoomId }) {
|
|
|
|
const mx = initMatrix.matrixClient;
|
|
|
|
const directIds = [...initMatrix.roomList.directs].sort(AtoZ);
|
|
|
|
|
|
|
|
return directIds.map((id) => renderSelector(mx.getRoom(id), id, selectedRoomId === id, true));
|
|
|
|
}
|
|
|
|
Directs.defaultProps = { selectedRoomId: null };
|
|
|
|
Directs.propTypes = { selectedRoomId: PropTypes.string };
|
|
|
|
|
|
|
|
function Home({ selectedRoomId }) {
|
|
|
|
const mx = initMatrix.matrixClient;
|
|
|
|
const spaceIds = [...initMatrix.roomList.spaces].sort(AtoZ);
|
|
|
|
const roomIds = [...initMatrix.roomList.rooms].sort(AtoZ);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{ spaceIds.length !== 0 && <Text className="cat-header" variant="b3">Spaces</Text> }
|
|
|
|
{ spaceIds.map((id) => renderSelector(mx.getRoom(id), id, selectedRoomId === id, false)) }
|
|
|
|
{ roomIds.length !== 0 && <Text className="cat-header" variant="b3">Channels</Text> }
|
|
|
|
{ roomIds.map((id) => renderSelector(mx.getRoom(id), id, selectedRoomId === id, false)) }
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
Home.defaultProps = { selectedRoomId: null };
|
|
|
|
Home.propTypes = { selectedRoomId: PropTypes.string };
|
|
|
|
|
2021-08-30 06:01:13 +03:00
|
|
|
function Channels({ activeTab }) {
|
2021-07-28 16:15:52 +03:00
|
|
|
const [selectedRoomId, changeSelectedRoomId] = useState(null);
|
|
|
|
const [, updateState] = useState();
|
|
|
|
|
|
|
|
const selectHandler = (roomId) => changeSelectedRoomId(roomId);
|
|
|
|
const handleDataChanges = () => updateState({});
|
|
|
|
|
|
|
|
const onRoomListChange = () => {
|
|
|
|
const { spaces, rooms, directs } = initMatrix.roomList;
|
|
|
|
if (!(
|
|
|
|
spaces.has(selectedRoomId)
|
|
|
|
|| rooms.has(selectedRoomId)
|
|
|
|
|| directs.has(selectedRoomId))
|
|
|
|
) {
|
|
|
|
selectRoom(null);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
navigation.on(cons.events.navigation.ROOM_SELECTED, selectHandler);
|
|
|
|
initMatrix.roomList.on(cons.events.roomList.ROOMLIST_UPDATED, handleDataChanges);
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
navigation.removeListener(cons.events.navigation.ROOM_SELECTED, selectHandler);
|
|
|
|
initMatrix.roomList.removeListener(cons.events.roomList.ROOMLIST_UPDATED, handleDataChanges);
|
|
|
|
};
|
|
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
|
|
initMatrix.roomList.on(cons.events.roomList.ROOMLIST_UPDATED, onRoomListChange);
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
initMatrix.roomList.removeListener(cons.events.roomList.ROOMLIST_UPDATED, onRoomListChange);
|
|
|
|
};
|
|
|
|
}, [selectedRoomId]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="channels-container">
|
|
|
|
{
|
2021-08-30 06:01:13 +03:00
|
|
|
activeTab === 'home'
|
2021-07-28 16:15:52 +03:00
|
|
|
? <Home selectedRoomId={selectedRoomId} />
|
|
|
|
: <Directs selectedRoomId={selectedRoomId} />
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
Channels.propTypes = {
|
2021-08-30 06:01:13 +03:00
|
|
|
activeTab: PropTypes.string.isRequired,
|
2021-07-28 16:15:52 +03:00
|
|
|
};
|
|
|
|
|
2021-08-30 06:01:13 +03:00
|
|
|
function Drawer() {
|
|
|
|
const [activeTab, setActiveTab] = useState('home');
|
|
|
|
|
|
|
|
function onTabChanged(tabId) {
|
|
|
|
setActiveTab(tabId);
|
|
|
|
}
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
navigation.on(cons.events.navigation.TAB_CHANGED, onTabChanged);
|
|
|
|
return () => {
|
|
|
|
navigation.removeListener(cons.events.navigation.TAB_CHANGED, onTabChanged);
|
|
|
|
};
|
|
|
|
}, []);
|
2021-07-28 16:15:52 +03:00
|
|
|
return (
|
|
|
|
<div className="drawer">
|
2021-08-30 06:01:13 +03:00
|
|
|
<DrawerHeader activeTab={activeTab} />
|
2021-07-28 16:15:52 +03:00
|
|
|
<div className="drawer__content-wrapper">
|
|
|
|
<DrawerBradcrumb />
|
|
|
|
<div className="channels__wrapper">
|
|
|
|
<ScrollView autoHide>
|
2021-08-30 06:01:13 +03:00
|
|
|
<Channels activeTab={activeTab} />
|
2021-07-28 16:15:52 +03:00
|
|
|
</ScrollView>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Drawer;
|