2021-02-26 13:23:09 +03:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-07-28 19:40:33 +03:00
|
|
|
import React, {
|
|
|
|
createRef,
|
|
|
|
MouseEvent,
|
|
|
|
InputHTMLAttributes,
|
|
|
|
LegacyRef,
|
|
|
|
ComponentProps,
|
|
|
|
ComponentType,
|
|
|
|
} from "react";
|
2021-02-26 13:23:09 +03:00
|
|
|
import classNames from "classnames";
|
2021-06-22 13:50:00 +03:00
|
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
2021-02-26 13:23:09 +03:00
|
|
|
|
|
|
|
import RoomAvatar from "../avatars/RoomAvatar";
|
|
|
|
import SpaceStore from "../../../stores/SpaceStore";
|
2021-05-11 09:08:02 +03:00
|
|
|
import SpaceTreeLevelLayoutStore from "../../../stores/SpaceTreeLevelLayoutStore";
|
2021-02-26 13:23:09 +03:00
|
|
|
import NotificationBadge from "../rooms/NotificationBadge";
|
2021-06-22 13:50:00 +03:00
|
|
|
import { RovingAccessibleTooltipButton } from "../../../accessibility/roving/RovingAccessibleTooltipButton";
|
|
|
|
import { _t } from "../../../languageHandler";
|
|
|
|
import { ContextMenuTooltipButton } from "../../../accessibility/context_menu/ContextMenuTooltipButton";
|
2021-07-28 19:40:33 +03:00
|
|
|
import { toRightOf, useContextMenu } from "../../structures/ContextMenu";
|
2021-02-26 13:23:09 +03:00
|
|
|
import MatrixClientContext from "../../../contexts/MatrixClientContext";
|
2021-07-28 19:40:33 +03:00
|
|
|
import AccessibleButton from "../elements/AccessibleButton";
|
2021-06-22 13:50:00 +03:00
|
|
|
import { StaticNotificationState } from "../../../stores/notifications/StaticNotificationState";
|
|
|
|
import { NotificationColor } from "../../../stores/notifications/NotificationColor";
|
|
|
|
import { getKeyBindingsManager, RoomListAction } from "../../../KeyBindingsManager";
|
2021-07-28 19:40:33 +03:00
|
|
|
import { NotificationState } from "../../../stores/notifications/NotificationState";
|
|
|
|
import SpaceContextMenu from "../context_menus/SpaceContextMenu";
|
|
|
|
|
|
|
|
interface IButtonProps extends Omit<ComponentProps<typeof RovingAccessibleTooltipButton>, "title"> {
|
|
|
|
space?: Room;
|
|
|
|
className?: string;
|
|
|
|
selected?: boolean;
|
|
|
|
label: string;
|
|
|
|
contextMenuTooltip?: string;
|
|
|
|
notificationState?: NotificationState;
|
|
|
|
isNarrow?: boolean;
|
|
|
|
avatarSize?: number;
|
|
|
|
ContextMenuComponent?: ComponentType<ComponentProps<typeof SpaceContextMenu>>;
|
|
|
|
onClick(ev: MouseEvent): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const SpaceButton: React.FC<IButtonProps> = ({
|
|
|
|
space,
|
|
|
|
className,
|
|
|
|
selected,
|
|
|
|
onClick,
|
|
|
|
label,
|
|
|
|
contextMenuTooltip,
|
|
|
|
notificationState,
|
|
|
|
avatarSize,
|
|
|
|
isNarrow,
|
|
|
|
children,
|
|
|
|
ContextMenuComponent,
|
|
|
|
...props
|
|
|
|
}) => {
|
|
|
|
const [menuDisplayed, handle, openMenu, closeMenu] = useContextMenu<HTMLElement>();
|
|
|
|
|
|
|
|
let avatar = <div className="mx_SpaceButton_avatarPlaceholder"><div className="mx_SpaceButton_icon" /></div>;
|
|
|
|
if (space) {
|
|
|
|
avatar = <RoomAvatar width={avatarSize} height={avatarSize} room={space} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
let notifBadge;
|
|
|
|
if (notificationState) {
|
|
|
|
notifBadge = <div className="mx_SpacePanel_badgeContainer">
|
|
|
|
<NotificationBadge
|
|
|
|
onClick={() => SpaceStore.instance.setActiveRoomInSpace(space || null)}
|
|
|
|
forceCount={false}
|
|
|
|
notification={notificationState}
|
|
|
|
/>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
|
|
|
|
let contextMenu: JSX.Element;
|
|
|
|
if (menuDisplayed && ContextMenuComponent) {
|
|
|
|
contextMenu = <ContextMenuComponent
|
|
|
|
{...toRightOf(handle.current?.getBoundingClientRect(), 0)}
|
|
|
|
space={space}
|
|
|
|
onFinished={closeMenu}
|
|
|
|
/>;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<RovingAccessibleTooltipButton
|
|
|
|
{...props}
|
|
|
|
className={classNames("mx_SpaceButton", className, {
|
|
|
|
mx_SpaceButton_active: selected,
|
|
|
|
mx_SpaceButton_hasMenuOpen: menuDisplayed,
|
|
|
|
mx_SpaceButton_narrow: isNarrow,
|
|
|
|
})}
|
|
|
|
title={label}
|
|
|
|
onClick={onClick}
|
|
|
|
onContextMenu={openMenu}
|
|
|
|
forceHide={!isNarrow || menuDisplayed}
|
|
|
|
role="treeitem"
|
|
|
|
inputRef={handle}
|
|
|
|
>
|
|
|
|
{ children }
|
|
|
|
<div className="mx_SpaceButton_selectionWrapper">
|
|
|
|
{ avatar }
|
|
|
|
{ !isNarrow && <span className="mx_SpaceButton_name">{ label }</span> }
|
|
|
|
{ notifBadge }
|
|
|
|
|
|
|
|
{ ContextMenuComponent && <ContextMenuTooltipButton
|
|
|
|
className="mx_SpaceButton_menuButton"
|
|
|
|
onClick={openMenu}
|
|
|
|
title={contextMenuTooltip}
|
|
|
|
isExpanded={menuDisplayed}
|
|
|
|
/> }
|
|
|
|
|
|
|
|
{ contextMenu }
|
|
|
|
</div>
|
|
|
|
</RovingAccessibleTooltipButton>
|
|
|
|
);
|
|
|
|
};
|
2021-02-26 13:23:09 +03:00
|
|
|
|
2021-06-03 10:32:36 +03:00
|
|
|
interface IItemProps extends InputHTMLAttributes<HTMLLIElement> {
|
2021-02-26 13:23:09 +03:00
|
|
|
space?: Room;
|
|
|
|
activeSpaces: Room[];
|
|
|
|
isNested?: boolean;
|
|
|
|
isPanelCollapsed?: boolean;
|
|
|
|
onExpand?: Function;
|
2021-03-15 15:16:48 +03:00
|
|
|
parents?: Set<string>;
|
2021-06-03 10:32:36 +03:00
|
|
|
innerRef?: LegacyRef<HTMLLIElement>;
|
2021-02-26 13:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
interface IItemState {
|
|
|
|
collapsed: boolean;
|
2021-06-22 13:50:00 +03:00
|
|
|
childSpaces: Room[];
|
2021-02-26 13:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export class SpaceItem extends React.PureComponent<IItemProps, IItemState> {
|
|
|
|
static contextType = MatrixClientContext;
|
|
|
|
|
2021-06-22 13:50:00 +03:00
|
|
|
private buttonRef = createRef<HTMLDivElement>();
|
|
|
|
|
2021-02-26 13:23:09 +03:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
2021-05-11 12:16:14 +03:00
|
|
|
const collapsed = SpaceTreeLevelLayoutStore.instance.getSpaceCollapsedState(
|
2021-05-11 12:13:13 +03:00
|
|
|
props.space.roomId,
|
|
|
|
this.props.parents,
|
2021-05-12 08:12:00 +03:00
|
|
|
!props.isNested, // default to collapsed for root items
|
2021-05-11 12:13:13 +03:00
|
|
|
);
|
|
|
|
|
2021-02-26 13:23:09 +03:00
|
|
|
this.state = {
|
2021-05-11 12:13:13 +03:00
|
|
|
collapsed: collapsed,
|
2021-06-22 13:50:00 +03:00
|
|
|
childSpaces: this.childSpaces,
|
2021-02-26 13:23:09 +03:00
|
|
|
};
|
2021-06-22 13:50:00 +03:00
|
|
|
|
|
|
|
SpaceStore.instance.on(this.props.space.roomId, this.onSpaceUpdate);
|
2021-02-26 13:23:09 +03:00
|
|
|
}
|
|
|
|
|
2021-06-22 13:50:00 +03:00
|
|
|
componentWillUnmount() {
|
|
|
|
SpaceStore.instance.off(this.props.space.roomId, this.onSpaceUpdate);
|
|
|
|
}
|
|
|
|
|
|
|
|
private onSpaceUpdate = () => {
|
|
|
|
this.setState({
|
|
|
|
childSpaces: this.childSpaces,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
private get childSpaces() {
|
|
|
|
return SpaceStore.instance.getChildSpaces(this.props.space.roomId)
|
|
|
|
.filter(s => !this.props.parents?.has(s.roomId));
|
|
|
|
}
|
|
|
|
|
|
|
|
private get isCollapsed() {
|
|
|
|
return this.state.collapsed || this.props.isPanelCollapsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
private toggleCollapse = evt => {
|
|
|
|
if (this.props.onExpand && this.isCollapsed) {
|
2021-02-26 13:23:09 +03:00
|
|
|
this.props.onExpand();
|
|
|
|
}
|
2021-06-22 13:50:00 +03:00
|
|
|
const newCollapsedState = !this.isCollapsed;
|
2021-05-11 09:08:02 +03:00
|
|
|
|
2021-05-11 12:16:14 +03:00
|
|
|
SpaceTreeLevelLayoutStore.instance.setSpaceCollapsedState(
|
2021-05-11 12:13:13 +03:00
|
|
|
this.props.space.roomId,
|
|
|
|
this.props.parents,
|
|
|
|
newCollapsedState,
|
|
|
|
);
|
2021-06-29 15:11:58 +03:00
|
|
|
this.setState({ collapsed: newCollapsedState });
|
2021-02-26 13:23:09 +03:00
|
|
|
// don't bubble up so encapsulating button for space
|
|
|
|
// doesn't get triggered
|
|
|
|
evt.stopPropagation();
|
2021-06-22 13:50:00 +03:00
|
|
|
};
|
2021-02-26 13:23:09 +03:00
|
|
|
|
2021-06-22 13:50:00 +03:00
|
|
|
private onKeyDown = (ev: React.KeyboardEvent) => {
|
|
|
|
let handled = true;
|
|
|
|
const action = getKeyBindingsManager().getRoomListAction(ev);
|
|
|
|
const hasChildren = this.state.childSpaces?.length;
|
|
|
|
switch (action) {
|
|
|
|
case RoomListAction.CollapseSection:
|
|
|
|
if (hasChildren && !this.isCollapsed) {
|
|
|
|
this.toggleCollapse(ev);
|
|
|
|
} else {
|
|
|
|
const parentItem = this.buttonRef?.current?.parentElement?.parentElement;
|
|
|
|
const parentButton = parentItem?.previousElementSibling as HTMLElement;
|
|
|
|
parentButton?.focus();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RoomListAction.ExpandSection:
|
|
|
|
if (hasChildren) {
|
|
|
|
if (this.isCollapsed) {
|
|
|
|
this.toggleCollapse(ev);
|
|
|
|
} else {
|
|
|
|
const childLevel = this.buttonRef?.current?.nextElementSibling;
|
|
|
|
const firstSpaceItemChild = childLevel?.querySelector<HTMLLIElement>(".mx_SpaceItem");
|
|
|
|
firstSpaceItemChild?.querySelector<HTMLDivElement>(".mx_SpaceButton")?.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
handled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handled) {
|
|
|
|
ev.stopPropagation();
|
|
|
|
ev.preventDefault();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-02-26 13:23:09 +03:00
|
|
|
private onClick = (ev: React.MouseEvent) => {
|
|
|
|
ev.preventDefault();
|
|
|
|
ev.stopPropagation();
|
|
|
|
SpaceStore.instance.setActiveSpace(this.props.space);
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
2021-06-03 10:32:36 +03:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
const { space, activeSpaces, isNested, isPanelCollapsed, onExpand, parents, innerRef,
|
|
|
|
...otherProps } = this.props;
|
2021-02-26 13:23:09 +03:00
|
|
|
|
2021-06-22 13:50:00 +03:00
|
|
|
const collapsed = this.isCollapsed;
|
2021-02-26 13:23:09 +03:00
|
|
|
|
2021-06-03 10:32:36 +03:00
|
|
|
const itemClasses = classNames(this.props.className, {
|
2021-02-26 13:23:09 +03:00
|
|
|
"mx_SpaceItem": true,
|
2021-06-03 10:32:36 +03:00
|
|
|
"mx_SpaceItem_narrow": isPanelCollapsed,
|
2021-02-26 13:23:09 +03:00
|
|
|
"collapsed": collapsed,
|
2021-06-22 13:50:00 +03:00
|
|
|
"hasSubSpaces": this.state.childSpaces?.length,
|
2021-02-26 13:23:09 +03:00
|
|
|
});
|
2021-05-04 16:01:26 +03:00
|
|
|
|
|
|
|
const isInvite = space.getMyMembership() === "invite";
|
2021-07-28 19:40:33 +03:00
|
|
|
|
2021-05-04 16:01:26 +03:00
|
|
|
const notificationState = isInvite
|
2021-04-22 13:01:49 +03:00
|
|
|
? StaticNotificationState.forSymbol("!", NotificationColor.Red)
|
|
|
|
: SpaceStore.instance.getNotificationState(space.roomId);
|
2021-03-15 15:16:48 +03:00
|
|
|
|
|
|
|
let childItems;
|
2021-06-22 13:50:00 +03:00
|
|
|
if (this.state.childSpaces?.length && !collapsed) {
|
2021-03-15 15:16:48 +03:00
|
|
|
childItems = <SpaceTreeLevel
|
2021-06-22 13:50:00 +03:00
|
|
|
spaces={this.state.childSpaces}
|
2021-03-15 15:16:48 +03:00
|
|
|
activeSpaces={activeSpaces}
|
|
|
|
isNested={true}
|
2021-06-03 10:32:36 +03:00
|
|
|
parents={new Set(parents).add(space.roomId)}
|
2021-03-15 15:16:48 +03:00
|
|
|
/>;
|
|
|
|
}
|
|
|
|
|
2021-06-22 13:50:00 +03:00
|
|
|
const toggleCollapseButton = this.state.childSpaces?.length ?
|
2021-03-24 20:05:21 +03:00
|
|
|
<AccessibleButton
|
2021-02-26 13:23:09 +03:00
|
|
|
className="mx_SpaceButton_toggleCollapse"
|
2021-06-22 13:50:00 +03:00
|
|
|
onClick={this.toggleCollapse}
|
2021-06-22 13:59:04 +03:00
|
|
|
tabIndex={-1}
|
|
|
|
aria-label={collapsed ? _t("Expand") : _t("Collapse")}
|
2021-02-26 13:23:09 +03:00
|
|
|
/> : null;
|
|
|
|
|
2021-06-22 13:50:00 +03:00
|
|
|
return (
|
2021-06-23 00:49:28 +03:00
|
|
|
<li {...otherProps} className={itemClasses} ref={innerRef}>
|
2021-07-28 19:40:33 +03:00
|
|
|
<SpaceButton
|
|
|
|
space={space}
|
|
|
|
className={isInvite ? "mx_SpaceButton_invite" : undefined}
|
|
|
|
selected={activeSpaces.includes(space)}
|
|
|
|
label={space.name}
|
|
|
|
contextMenuTooltip={_t("Space options")}
|
|
|
|
notificationState={notificationState}
|
|
|
|
isNarrow={isPanelCollapsed}
|
|
|
|
avatarSize={isNested ? 24 : 32}
|
2021-02-26 13:23:09 +03:00
|
|
|
onClick={this.onClick}
|
2021-06-22 13:50:00 +03:00
|
|
|
onKeyDown={this.onKeyDown}
|
2021-07-28 19:40:33 +03:00
|
|
|
aria-expanded={!collapsed}
|
|
|
|
ContextMenuComponent={this.props.space.getMyMembership() === "join"
|
|
|
|
? SpaceContextMenu : undefined}
|
2021-02-26 13:23:09 +03:00
|
|
|
>
|
|
|
|
{ toggleCollapseButton }
|
2021-07-28 19:40:33 +03:00
|
|
|
</SpaceButton>
|
2021-02-26 13:23:09 +03:00
|
|
|
|
|
|
|
{ childItems }
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ITreeLevelProps {
|
|
|
|
spaces: Room[];
|
|
|
|
activeSpaces: Room[];
|
|
|
|
isNested?: boolean;
|
2021-03-15 15:16:48 +03:00
|
|
|
parents: Set<string>;
|
2021-02-26 13:23:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const SpaceTreeLevel: React.FC<ITreeLevelProps> = ({
|
|
|
|
spaces,
|
|
|
|
activeSpaces,
|
|
|
|
isNested,
|
2021-03-15 15:16:48 +03:00
|
|
|
parents,
|
2021-02-26 13:23:09 +03:00
|
|
|
}) => {
|
|
|
|
return <ul className="mx_SpaceTreeLevel">
|
2021-07-20 00:43:11 +03:00
|
|
|
{ spaces.map(s => {
|
2021-02-26 13:23:09 +03:00
|
|
|
return (<SpaceItem
|
|
|
|
key={s.roomId}
|
|
|
|
activeSpaces={activeSpaces}
|
|
|
|
space={s}
|
|
|
|
isNested={isNested}
|
2021-03-15 15:16:48 +03:00
|
|
|
parents={parents}
|
2021-02-26 13:23:09 +03:00
|
|
|
/>);
|
2021-07-20 00:43:11 +03:00
|
|
|
}) }
|
2021-02-26 13:23:09 +03:00
|
|
|
</ul>;
|
2021-06-29 15:11:58 +03:00
|
|
|
};
|
2021-02-26 13:23:09 +03:00
|
|
|
|
|
|
|
export default SpaceTreeLevel;
|