mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-04 22:40:29 +03:00
* Select last room on space/tab change (#353) * Update sidbar on room select from search (#374) * Select last room on space/tab change (#353) * Update sidbar on room select from search (#374) * Fix wrong space gets selected with some rooms * Fix auto select room in categorized space * Fix room remain selected on leave * Fix leaved room appear in category & search * Remove globally exposed vars * Hide pin spaces from home * Fix selecting dm always open dm tab * Order category by AtoZ (#769) Co-authored-by: Krishan <33421343+kfiven@users.noreply.github.com>
128 lines
4.1 KiB
JavaScript
128 lines
4.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { twemojify } from '../../../util/twemojify';
|
|
|
|
import initMatrix from '../../../client/initMatrix';
|
|
import { openSpaceSettings, openSpaceManage, openInviteUser } from '../../../client/action/navigation';
|
|
import { markAsRead } from '../../../client/action/notifications';
|
|
import { leave } from '../../../client/action/room';
|
|
import {
|
|
createSpaceShortcut,
|
|
deleteSpaceShortcut,
|
|
categorizeSpace,
|
|
unCategorizeSpace,
|
|
} from '../../../client/action/accountData';
|
|
|
|
import { MenuHeader, MenuItem } from '../../atoms/context-menu/ContextMenu';
|
|
|
|
import CategoryIC from '../../../../public/res/ic/outlined/category.svg';
|
|
import CategoryFilledIC from '../../../../public/res/ic/filled/category.svg';
|
|
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg';
|
|
import AddUserIC from '../../../../public/res/ic/outlined/add-user.svg';
|
|
import SettingsIC from '../../../../public/res/ic/outlined/settings.svg';
|
|
import HashSearchIC from '../../../../public/res/ic/outlined/hash-search.svg';
|
|
import LeaveArrowIC from '../../../../public/res/ic/outlined/leave-arrow.svg';
|
|
import PinIC from '../../../../public/res/ic/outlined/pin.svg';
|
|
import PinFilledIC from '../../../../public/res/ic/filled/pin.svg';
|
|
|
|
import { confirmDialog } from '../confirm-dialog/ConfirmDialog';
|
|
|
|
function SpaceOptions({ roomId, afterOptionSelect }) {
|
|
const mx = initMatrix.matrixClient;
|
|
const { roomList } = initMatrix;
|
|
const room = mx.getRoom(roomId);
|
|
const canInvite = room?.canInvite(mx.getUserId());
|
|
const isPinned = initMatrix.accountData.spaceShortcut.has(roomId);
|
|
const isCategorized = initMatrix.accountData.categorizedSpaces.has(roomId);
|
|
|
|
const handleMarkAsRead = () => {
|
|
const spaceChildren = roomList.getCategorizedSpaces([roomId]);
|
|
spaceChildren?.forEach((childIds) => {
|
|
childIds?.forEach((childId) => {
|
|
markAsRead(childId);
|
|
});
|
|
});
|
|
afterOptionSelect();
|
|
};
|
|
const handleInviteClick = () => {
|
|
openInviteUser(roomId);
|
|
afterOptionSelect();
|
|
};
|
|
const handlePinClick = () => {
|
|
if (isPinned) deleteSpaceShortcut(roomId);
|
|
else createSpaceShortcut(roomId);
|
|
afterOptionSelect();
|
|
};
|
|
const handleCategorizeClick = () => {
|
|
if (isCategorized) unCategorizeSpace(roomId);
|
|
else categorizeSpace(roomId);
|
|
afterOptionSelect();
|
|
};
|
|
const handleSettingsClick = () => {
|
|
openSpaceSettings(roomId);
|
|
afterOptionSelect();
|
|
};
|
|
const handleManageRoom = () => {
|
|
openSpaceManage(roomId);
|
|
afterOptionSelect();
|
|
};
|
|
|
|
const handleLeaveClick = async () => {
|
|
afterOptionSelect();
|
|
const isConfirmed = await confirmDialog(
|
|
'Leave space',
|
|
`Are you sure that you want to leave "${room.name}" space?`,
|
|
'Leave',
|
|
'danger',
|
|
);
|
|
if (!isConfirmed) return;
|
|
leave(roomId);
|
|
};
|
|
|
|
return (
|
|
<div style={{ maxWidth: 'calc(var(--navigation-drawer-width) - var(--sp-normal))' }}>
|
|
<MenuHeader>{twemojify(`Options for ${initMatrix.matrixClient.getRoom(roomId)?.name}`)}</MenuHeader>
|
|
<MenuItem iconSrc={TickMarkIC} onClick={handleMarkAsRead}>Mark as read</MenuItem>
|
|
<MenuItem
|
|
onClick={handleCategorizeClick}
|
|
iconSrc={isCategorized ? CategoryFilledIC : CategoryIC}
|
|
>
|
|
{isCategorized ? 'Uncategorize subspaces' : 'Categorize subspaces'}
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={handlePinClick}
|
|
iconSrc={isPinned ? PinFilledIC : PinIC}
|
|
>
|
|
{isPinned ? 'Unpin from sidebar' : 'Pin to sidebar'}
|
|
</MenuItem>
|
|
<MenuItem
|
|
iconSrc={AddUserIC}
|
|
onClick={handleInviteClick}
|
|
disabled={!canInvite}
|
|
>
|
|
Invite
|
|
</MenuItem>
|
|
<MenuItem onClick={handleManageRoom} iconSrc={HashSearchIC}>Manage rooms</MenuItem>
|
|
<MenuItem onClick={handleSettingsClick} iconSrc={SettingsIC}>Settings</MenuItem>
|
|
<MenuItem
|
|
variant="danger"
|
|
onClick={handleLeaveClick}
|
|
iconSrc={LeaveArrowIC}
|
|
>
|
|
Leave
|
|
</MenuItem>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
SpaceOptions.defaultProps = {
|
|
afterOptionSelect: null,
|
|
};
|
|
|
|
SpaceOptions.propTypes = {
|
|
roomId: PropTypes.string.isRequired,
|
|
afterOptionSelect: PropTypes.func,
|
|
};
|
|
|
|
export default SpaceOptions;
|