2021-03-02 17:11:38 +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-03-19 14:36:36 +03:00
|
|
|
import React, {useMemo, useState} from "react";
|
2021-03-02 17:11:38 +03:00
|
|
|
import Room from "matrix-js-sdk/src/models/room";
|
|
|
|
import {EventType, RoomType} from "matrix-js-sdk/src/@types/event";
|
2021-03-19 14:36:36 +03:00
|
|
|
import classNames from "classnames";
|
|
|
|
import {sortBy} from "lodash";
|
2021-03-02 17:11:38 +03:00
|
|
|
|
|
|
|
import {MatrixClientPeg} from "../../MatrixClientPeg";
|
|
|
|
import dis from "../../dispatcher/dispatcher";
|
|
|
|
import {_t} from "../../languageHandler";
|
|
|
|
import AccessibleButton from "../views/elements/AccessibleButton";
|
|
|
|
import BaseDialog from "../views/dialogs/BaseDialog";
|
2021-03-19 14:36:36 +03:00
|
|
|
import Spinner from "../views/elements/Spinner";
|
2021-03-02 17:11:38 +03:00
|
|
|
import SearchBox from "./SearchBox";
|
|
|
|
import RoomAvatar from "../views/avatars/RoomAvatar";
|
|
|
|
import RoomName from "../views/elements/RoomName";
|
|
|
|
import {useAsyncMemo} from "../../hooks/useAsyncMemo";
|
|
|
|
import {EnhancedMap} from "../../utils/maps";
|
|
|
|
import StyledCheckbox from "../views/elements/StyledCheckbox";
|
|
|
|
import AutoHideScrollbar from "./AutoHideScrollbar";
|
|
|
|
import BaseAvatar from "../views/avatars/BaseAvatar";
|
2021-03-04 05:06:46 +03:00
|
|
|
import {mediaFromMxc} from "../../customisations/Media";
|
2021-03-19 14:36:36 +03:00
|
|
|
import InfoTooltip from "../views/elements/InfoTooltip";
|
|
|
|
import TextWithTooltip from "../views/elements/TextWithTooltip";
|
|
|
|
import {useStateToggle} from "../../hooks/useStateToggle";
|
2021-03-02 17:11:38 +03:00
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
space: Room;
|
|
|
|
initialText?: string;
|
|
|
|
onFinished(): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* eslint-disable camelcase */
|
|
|
|
export interface ISpaceSummaryRoom {
|
|
|
|
canonical_alias?: string;
|
|
|
|
aliases: string[];
|
|
|
|
avatar_url?: string;
|
|
|
|
guest_can_join: boolean;
|
|
|
|
name?: string;
|
|
|
|
num_joined_members: number
|
|
|
|
room_id: string;
|
|
|
|
topic?: string;
|
|
|
|
world_readable: boolean;
|
|
|
|
num_refs: number;
|
|
|
|
room_type: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ISpaceSummaryEvent {
|
|
|
|
room_id: string;
|
|
|
|
event_id: string;
|
|
|
|
origin_server_ts: number;
|
|
|
|
type: string;
|
|
|
|
state_key: string;
|
|
|
|
content: {
|
|
|
|
order?: string;
|
2021-03-04 16:04:58 +03:00
|
|
|
suggested?: boolean;
|
2021-03-02 17:11:38 +03:00
|
|
|
auto_join?: boolean;
|
|
|
|
via?: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
/* eslint-enable camelcase */
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
interface ITileProps {
|
|
|
|
room: ISpaceSummaryRoom;
|
|
|
|
suggested?: boolean;
|
|
|
|
selected?: boolean;
|
|
|
|
numChildRooms?: number;
|
|
|
|
hasPermissions?: boolean;
|
|
|
|
onViewRoomClick(autoJoin: boolean): void;
|
|
|
|
onToggleClick?(): void;
|
2021-03-02 17:11:38 +03:00
|
|
|
}
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
const Tile: React.FC<ITileProps> = ({
|
|
|
|
room,
|
|
|
|
suggested,
|
|
|
|
selected,
|
|
|
|
hasPermissions,
|
|
|
|
onToggleClick,
|
|
|
|
onViewRoomClick,
|
|
|
|
numChildRooms,
|
2021-03-02 17:11:38 +03:00
|
|
|
children,
|
|
|
|
}) => {
|
2021-03-19 14:36:36 +03:00
|
|
|
const name = room.name || room.canonical_alias || room.aliases?.[0]
|
|
|
|
|| (room.room_type === RoomType.Space ? _t("Unnamed Space") : _t("Unnamed Room"));
|
2021-03-02 17:11:38 +03:00
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
const [showChildren, toggleShowChildren] = useStateToggle(true);
|
2021-03-02 17:11:38 +03:00
|
|
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
2021-03-19 14:36:36 +03:00
|
|
|
const cliRoom = cli.getRoom(room.room_id);
|
2021-03-02 17:11:38 +03:00
|
|
|
const myMembership = cliRoom?.getMyMembership();
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
const onPreviewClick = () => onViewRoomClick(false);
|
|
|
|
const onJoinClick = () => onViewRoomClick(true);
|
|
|
|
|
|
|
|
let button;
|
|
|
|
if (myMembership === "join") {
|
|
|
|
button = <AccessibleButton onClick={onPreviewClick} kind="primary_outline">
|
|
|
|
{ _t("Open") }
|
|
|
|
</AccessibleButton>;
|
|
|
|
} else if (onJoinClick) {
|
|
|
|
button = <AccessibleButton onClick={onJoinClick} kind="primary">
|
|
|
|
{ _t("Join") }
|
|
|
|
</AccessibleButton>;
|
|
|
|
}
|
|
|
|
|
|
|
|
let checkbox;
|
|
|
|
if (onToggleClick) {
|
|
|
|
if (hasPermissions) {
|
|
|
|
checkbox = <StyledCheckbox checked={!!selected} onChange={onToggleClick} />;
|
2021-03-02 17:11:38 +03:00
|
|
|
} else {
|
2021-03-19 14:36:36 +03:00
|
|
|
checkbox = <TextWithTooltip
|
|
|
|
tooltip={_t("You don't have permission")}
|
|
|
|
onClick={ev => { ev.stopPropagation() }}
|
|
|
|
>
|
|
|
|
<StyledCheckbox disabled={true} />
|
|
|
|
</TextWithTooltip>;
|
2021-03-02 17:11:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let url: string;
|
2021-03-19 14:36:36 +03:00
|
|
|
if (room.avatar_url) {
|
|
|
|
url = mediaFromMxc(room.avatar_url).getSquareThumbnailHttp(Math.floor(20 * window.devicePixelRatio));
|
2021-03-02 17:11:38 +03:00
|
|
|
}
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
let description = _t("%(count)s members", { count: room.num_joined_members });
|
|
|
|
if (numChildRooms) {
|
|
|
|
description += " · " + _t("%(count)s rooms", { count: numChildRooms });
|
|
|
|
}
|
|
|
|
if (room.topic) {
|
|
|
|
description += " · " + room.topic;
|
2021-03-02 17:11:38 +03:00
|
|
|
}
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
let suggestedSection;
|
|
|
|
if (suggested) {
|
|
|
|
suggestedSection = <InfoTooltip tooltip={_t("This room is suggested as a good one to join")}>
|
|
|
|
{ _t("Suggested") }
|
|
|
|
</InfoTooltip>;
|
2021-03-02 17:11:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const content = <React.Fragment>
|
2021-03-19 14:36:36 +03:00
|
|
|
<BaseAvatar name={name} idName={room.room_id} url={url} width={20} height={20} />
|
|
|
|
<div className="mx_SpaceRoomDirectory_roomTile_name">
|
|
|
|
{ name }
|
|
|
|
{ suggestedSection }
|
|
|
|
</div>
|
2021-03-02 17:11:38 +03:00
|
|
|
|
|
|
|
<div className="mx_SpaceRoomDirectory_roomTile_info">
|
2021-03-19 14:36:36 +03:00
|
|
|
{ description }
|
2021-03-02 17:11:38 +03:00
|
|
|
</div>
|
|
|
|
<div className="mx_SpaceRoomDirectory_actions">
|
2021-03-19 14:36:36 +03:00
|
|
|
{ button }
|
|
|
|
{ checkbox }
|
2021-03-02 17:11:38 +03:00
|
|
|
</div>
|
|
|
|
</React.Fragment>;
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
let childToggle;
|
|
|
|
let childSection;
|
|
|
|
if (children) {
|
|
|
|
// the chevron is purposefully a div rather than a button as it should be ignored for a11y
|
|
|
|
childToggle = <div
|
|
|
|
className={classNames("mx_SpaceRoomDirectory_subspace_toggle", {
|
|
|
|
mx_SpaceRoomDirectory_subspace_toggle_shown: showChildren,
|
|
|
|
})}
|
|
|
|
onClick={ev => {
|
|
|
|
ev.stopPropagation();
|
|
|
|
toggleShowChildren();
|
|
|
|
}}
|
|
|
|
/>;
|
|
|
|
if (showChildren) {
|
|
|
|
childSection = <div className="mx_SpaceRoomDirectory_subspace_children">
|
|
|
|
{ children }
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return <>
|
|
|
|
<AccessibleButton
|
|
|
|
className={classNames("mx_SpaceRoomDirectory_roomTile", {
|
|
|
|
mx_SpaceRoomDirectory_subspace: room.room_type === RoomType.Space,
|
|
|
|
})}
|
2021-03-24 18:26:56 +03:00
|
|
|
onClick={(hasPermissions && onToggleClick) ? onToggleClick : onPreviewClick}
|
2021-03-19 14:36:36 +03:00
|
|
|
>
|
|
|
|
{ content }
|
|
|
|
{ childToggle }
|
|
|
|
</AccessibleButton>
|
|
|
|
{ childSection }
|
|
|
|
</>;
|
2021-03-02 17:11:38 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export const showRoom = (room: ISpaceSummaryRoom, viaServers?: string[], autoJoin = false) => {
|
|
|
|
// Don't let the user view a room they won't be able to either peek or join:
|
|
|
|
// fail earlier so they don't have to click back to the directory.
|
|
|
|
if (MatrixClientPeg.get().isGuest()) {
|
|
|
|
if (!room.world_readable && !room.guest_can_join) {
|
|
|
|
dis.dispatch({ action: "require_registration" });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const roomAlias = getDisplayAliasForRoom(room) || undefined;
|
|
|
|
dis.dispatch({
|
|
|
|
action: "view_room",
|
|
|
|
auto_join: autoJoin,
|
|
|
|
should_peek: true,
|
|
|
|
_type: "room_directory", // instrumentation
|
|
|
|
room_alias: roomAlias,
|
|
|
|
room_id: room.room_id,
|
|
|
|
via_servers: viaServers,
|
|
|
|
oob_data: {
|
|
|
|
avatarUrl: room.avatar_url,
|
|
|
|
// XXX: This logic is duplicated from the JS SDK which would normally decide what the name is.
|
|
|
|
name: room.name || roomAlias || _t("Unnamed room"),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
interface IHierarchyLevelProps {
|
|
|
|
spaceId: string;
|
|
|
|
rooms: Map<string, ISpaceSummaryRoom>;
|
2021-03-19 14:36:36 +03:00
|
|
|
relations: EnhancedMap<string, Map<string, ISpaceSummaryEvent>>;
|
2021-03-02 17:11:38 +03:00
|
|
|
parents: Set<string>;
|
2021-03-19 14:36:36 +03:00
|
|
|
selectedMap?: Map<string, Set<string>>;
|
|
|
|
onViewRoomClick(roomId: string, autoJoin: boolean): void;
|
|
|
|
onToggleClick?(parentId: string, childId: string): void;
|
2021-03-02 17:11:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export const HierarchyLevel = ({
|
|
|
|
spaceId,
|
|
|
|
rooms,
|
|
|
|
relations,
|
|
|
|
parents,
|
2021-03-19 14:36:36 +03:00
|
|
|
selectedMap,
|
|
|
|
onViewRoomClick,
|
|
|
|
onToggleClick,
|
2021-03-02 17:11:38 +03:00
|
|
|
}: IHierarchyLevelProps) => {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const space = cli.getRoom(spaceId);
|
2021-03-19 14:36:36 +03:00
|
|
|
const hasPermissions = space?.currentState.maySendStateEvent(EventType.SpaceChild, cli.getUserId())
|
|
|
|
|
2021-03-22 20:46:50 +03:00
|
|
|
const sortedChildren = sortBy([...(relations.get(spaceId)?.values() || [])], ev => ev.content.order || null);
|
2021-03-19 14:36:36 +03:00
|
|
|
const [subspaces, childRooms] = sortedChildren.reduce((result, ev: ISpaceSummaryEvent) => {
|
|
|
|
const roomId = ev.state_key;
|
|
|
|
if (!rooms.has(roomId)) return result;
|
2021-03-02 17:11:38 +03:00
|
|
|
result[rooms.get(roomId).room_type === RoomType.Space ? 0 : 1].push(roomId);
|
|
|
|
return result;
|
|
|
|
}, [[], []]) || [[], []];
|
|
|
|
|
|
|
|
const newParents = new Set(parents).add(spaceId);
|
|
|
|
return <React.Fragment>
|
|
|
|
{
|
|
|
|
childRooms.map(roomId => (
|
2021-03-19 14:36:36 +03:00
|
|
|
<Tile
|
2021-03-02 17:11:38 +03:00
|
|
|
key={roomId}
|
|
|
|
room={rooms.get(roomId)}
|
2021-03-19 14:36:36 +03:00
|
|
|
suggested={relations.get(spaceId)?.get(roomId)?.content.suggested}
|
|
|
|
selected={selectedMap?.get(spaceId)?.has(roomId)}
|
|
|
|
onViewRoomClick={(autoJoin) => {
|
|
|
|
onViewRoomClick(roomId, autoJoin);
|
2021-03-02 17:11:38 +03:00
|
|
|
}}
|
2021-03-19 14:36:36 +03:00
|
|
|
hasPermissions={hasPermissions}
|
|
|
|
onToggleClick={onToggleClick ? () => onToggleClick(spaceId, roomId) : undefined}
|
2021-03-02 17:11:38 +03:00
|
|
|
/>
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
subspaces.filter(roomId => !newParents.has(roomId)).map(roomId => (
|
2021-03-19 14:36:36 +03:00
|
|
|
<Tile
|
2021-03-02 17:11:38 +03:00
|
|
|
key={roomId}
|
2021-03-19 14:36:36 +03:00
|
|
|
room={rooms.get(roomId)}
|
|
|
|
numChildRooms={Array.from(relations.get(roomId)?.values() || [])
|
|
|
|
.filter(ev => rooms.get(ev.state_key)?.room_type !== RoomType.Space).length}
|
|
|
|
suggested={relations.get(spaceId)?.get(roomId)?.content.suggested}
|
|
|
|
selected={selectedMap?.get(spaceId)?.has(roomId)}
|
|
|
|
onViewRoomClick={(autoJoin) => {
|
|
|
|
onViewRoomClick(roomId, autoJoin);
|
2021-03-02 17:11:38 +03:00
|
|
|
}}
|
2021-03-19 14:36:36 +03:00
|
|
|
hasPermissions={hasPermissions}
|
|
|
|
onToggleClick={onToggleClick ? () => onToggleClick(spaceId, roomId) : undefined}
|
2021-03-02 17:11:38 +03:00
|
|
|
>
|
|
|
|
<HierarchyLevel
|
|
|
|
spaceId={roomId}
|
|
|
|
rooms={rooms}
|
|
|
|
relations={relations}
|
|
|
|
parents={newParents}
|
2021-03-19 14:36:36 +03:00
|
|
|
selectedMap={selectedMap}
|
|
|
|
onViewRoomClick={onViewRoomClick}
|
|
|
|
onToggleClick={onToggleClick}
|
2021-03-02 17:11:38 +03:00
|
|
|
/>
|
2021-03-19 14:36:36 +03:00
|
|
|
</Tile>
|
2021-03-02 17:11:38 +03:00
|
|
|
))
|
|
|
|
}
|
|
|
|
</React.Fragment>
|
|
|
|
};
|
|
|
|
|
|
|
|
const SpaceRoomDirectory: React.FC<IProps> = ({ space, initialText = "", onFinished }) => {
|
|
|
|
// TODO pagination
|
|
|
|
const cli = MatrixClientPeg.get();
|
2021-03-19 14:36:36 +03:00
|
|
|
const userId = cli.getUserId();
|
2021-03-02 17:11:38 +03:00
|
|
|
const [query, setQuery] = useState(initialText);
|
|
|
|
|
|
|
|
const onCreateRoomClick = () => {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_create_room',
|
|
|
|
public: true,
|
|
|
|
});
|
|
|
|
onFinished();
|
|
|
|
};
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
const [selected, setSelected] = useState(new Map<string, Set<string>>()); // Map<parentId, Set<childId>>
|
2021-03-02 17:11:38 +03:00
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
const [rooms, parentChildMap, childParentMap, viaMap] = useAsyncMemo(async () => {
|
2021-03-02 17:11:38 +03:00
|
|
|
try {
|
|
|
|
const data = await cli.getSpaceSummary(space.roomId);
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
const parentChildRelations = new EnhancedMap<string, Map<string, ISpaceSummaryEvent>>();
|
|
|
|
const childParentRelations = new EnhancedMap<string, Set<string>>();
|
2021-03-02 17:11:38 +03:00
|
|
|
const viaMap = new EnhancedMap<string, Set<string>>();
|
|
|
|
data.events.map((ev: ISpaceSummaryEvent) => {
|
|
|
|
if (ev.type === EventType.SpaceChild) {
|
2021-03-19 14:36:36 +03:00
|
|
|
parentChildRelations.getOrCreate(ev.room_id, new Map()).set(ev.state_key, ev);
|
|
|
|
childParentRelations.getOrCreate(ev.state_key, new Set()).add(ev.room_id);
|
2021-03-02 17:11:38 +03:00
|
|
|
}
|
|
|
|
if (Array.isArray(ev.content["via"])) {
|
|
|
|
const set = viaMap.getOrCreate(ev.state_key, new Set());
|
|
|
|
ev.content["via"].forEach(via => set.add(via));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
return [data.rooms as ISpaceSummaryRoom[], parentChildRelations, childParentRelations, viaMap];
|
2021-03-02 17:11:38 +03:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e); // TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
return [];
|
|
|
|
}, [space], []);
|
|
|
|
|
|
|
|
const roomsMap = useMemo(() => {
|
|
|
|
if (!rooms) return null;
|
2021-03-19 14:36:36 +03:00
|
|
|
const lcQuery = query.toLowerCase().trim();
|
2021-03-02 17:11:38 +03:00
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
const roomsMap = new Map<string, ISpaceSummaryRoom>(rooms.map(r => [r.room_id, r]));
|
|
|
|
if (!lcQuery) return roomsMap;
|
|
|
|
|
|
|
|
const directMatches = rooms.filter(r => {
|
|
|
|
return r.name?.toLowerCase().includes(lcQuery) || r.topic?.toLowerCase().includes(lcQuery);
|
2021-03-02 17:11:38 +03:00
|
|
|
});
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
// Walk back up the tree to find all parents of the direct matches to show their place in the hierarchy
|
|
|
|
const visited = new Set<string>();
|
|
|
|
const queue = [...directMatches.map(r => r.room_id)];
|
|
|
|
while (queue.length) {
|
|
|
|
const roomId = queue.pop();
|
|
|
|
visited.add(roomId);
|
|
|
|
childParentMap.get(roomId)?.forEach(parentId => {
|
|
|
|
if (!visited.has(parentId)) {
|
|
|
|
queue.push(parentId);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove any mappings for rooms which were not visited in the walk
|
|
|
|
Array.from(roomsMap.keys()).forEach(roomId => {
|
|
|
|
if (!visited.has(roomId)) {
|
|
|
|
roomsMap.delete(roomId);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return roomsMap;
|
|
|
|
}, [rooms, childParentMap, query]);
|
2021-03-02 17:11:38 +03:00
|
|
|
|
|
|
|
const title = <React.Fragment>
|
2021-03-19 14:36:36 +03:00
|
|
|
<RoomAvatar room={space} height={32} width={32} />
|
2021-03-02 17:11:38 +03:00
|
|
|
<div>
|
|
|
|
<h1>{ _t("Explore rooms") }</h1>
|
|
|
|
<div><RoomName room={space} /></div>
|
|
|
|
</div>
|
|
|
|
</React.Fragment>;
|
2021-03-19 14:36:36 +03:00
|
|
|
|
2021-03-02 17:11:38 +03:00
|
|
|
const explanation =
|
2021-03-19 14:36:36 +03:00
|
|
|
_t("If you can't find the room you're looking for, ask for an invite or <a>create a new room</a>.", null,
|
2021-03-02 17:11:38 +03:00
|
|
|
{a: sub => {
|
|
|
|
return <AccessibleButton kind="link" onClick={onCreateRoomClick}>{sub}</AccessibleButton>;
|
|
|
|
}},
|
|
|
|
);
|
|
|
|
|
2021-03-19 14:36:36 +03:00
|
|
|
const [error, setError] = useState("");
|
|
|
|
const [removing, setRemoving] = useState(false);
|
|
|
|
const [saving, setSaving] = useState(false);
|
|
|
|
|
2021-03-02 17:11:38 +03:00
|
|
|
let content;
|
|
|
|
if (roomsMap) {
|
2021-03-19 14:36:36 +03:00
|
|
|
const numRooms = Array.from(roomsMap.values()).filter(r => r.room_type !== RoomType.Space).length;
|
|
|
|
const numSpaces = roomsMap.size - numRooms - 1; // -1 at the end to exclude the space we are looking at
|
|
|
|
|
|
|
|
let countsStr;
|
|
|
|
if (numSpaces > 1) {
|
|
|
|
countsStr = _t("%(count)s rooms and %(numSpaces)s spaces", { count: numRooms, numSpaces });
|
|
|
|
} else if (numSpaces > 0) {
|
|
|
|
countsStr = _t("%(count)s rooms and 1 space", { count: numRooms, numSpaces });
|
|
|
|
} else {
|
|
|
|
countsStr = _t("%(count)s rooms", { count: numRooms, numSpaces });
|
|
|
|
}
|
|
|
|
|
|
|
|
let editSection;
|
|
|
|
if (space.getMyMembership() === "join" && space.currentState.maySendStateEvent(EventType.SpaceChild, userId)) {
|
|
|
|
const selectedRelations = Array.from(selected.keys()).flatMap(parentId => {
|
|
|
|
return [...selected.get(parentId).values()].map(childId => [parentId, childId]) as [string, string][];
|
|
|
|
});
|
|
|
|
|
|
|
|
let buttons;
|
|
|
|
if (selectedRelations.length) {
|
|
|
|
const selectionAllSuggested = selectedRelations.every(([parentId, childId]) => {
|
|
|
|
return parentChildMap.get(parentId)?.get(childId)?.content.suggested;
|
|
|
|
});
|
|
|
|
|
|
|
|
const disabled = removing || saving;
|
|
|
|
|
|
|
|
buttons = <>
|
|
|
|
<AccessibleButton
|
|
|
|
onClick={async () => {
|
|
|
|
setRemoving(true);
|
|
|
|
try {
|
|
|
|
for (const [parentId, childId] of selectedRelations) {
|
|
|
|
await cli.sendStateEvent(parentId, EventType.SpaceChild, {}, childId);
|
|
|
|
parentChildMap.get(parentId).get(childId).content = {};
|
|
|
|
parentChildMap.set(parentId, new Map(parentChildMap.get(parentId)));
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
setError(_t("Failed to remove some rooms. Try again later"));
|
|
|
|
}
|
|
|
|
setRemoving(false);
|
|
|
|
}}
|
|
|
|
kind="danger_outline"
|
|
|
|
disabled={disabled}
|
|
|
|
>
|
|
|
|
{ removing ? _t("Removing...") : _t("Remove") }
|
|
|
|
</AccessibleButton>
|
|
|
|
<AccessibleButton
|
|
|
|
onClick={async () => {
|
|
|
|
setSaving(true);
|
|
|
|
try {
|
|
|
|
for (const [parentId, childId] of selectedRelations) {
|
|
|
|
const suggested = !selectionAllSuggested;
|
|
|
|
const existingContent = parentChildMap.get(parentId)?.get(childId)?.content;
|
|
|
|
if (!existingContent || existingContent.suggested === suggested) continue;
|
|
|
|
|
|
|
|
const content = {
|
|
|
|
...existingContent,
|
|
|
|
suggested: !selectionAllSuggested,
|
|
|
|
};
|
|
|
|
|
|
|
|
await cli.sendStateEvent(parentId, EventType.SpaceChild, content, childId);
|
|
|
|
|
|
|
|
parentChildMap.get(parentId).get(childId).content = content;
|
|
|
|
parentChildMap.set(parentId, new Map(parentChildMap.get(parentId)));
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
setError("Failed to update some suggestions. Try again later");
|
|
|
|
}
|
|
|
|
setSaving(false);
|
|
|
|
}}
|
|
|
|
kind="primary_outline"
|
|
|
|
disabled={disabled}
|
|
|
|
>
|
|
|
|
{ saving
|
|
|
|
? _t("Saving...")
|
|
|
|
: (selectionAllSuggested ? _t("Mark as not suggested") : _t("Mark as suggested"))
|
|
|
|
}
|
|
|
|
</AccessibleButton>
|
|
|
|
</>;
|
|
|
|
}
|
|
|
|
|
|
|
|
editSection = <span>
|
|
|
|
{ buttons }
|
|
|
|
</span>;
|
|
|
|
}
|
|
|
|
|
|
|
|
let results;
|
|
|
|
if (roomsMap.size) {
|
|
|
|
results = <>
|
|
|
|
<HierarchyLevel
|
|
|
|
spaceId={space.roomId}
|
|
|
|
rooms={roomsMap}
|
|
|
|
relations={parentChildMap}
|
|
|
|
parents={new Set()}
|
|
|
|
selectedMap={selected}
|
|
|
|
onToggleClick={(parentId, childId) => {
|
|
|
|
setError("");
|
|
|
|
if (!selected.has(parentId)) {
|
|
|
|
setSelected(new Map(selected.set(parentId, new Set([childId]))));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const parentSet = selected.get(parentId);
|
|
|
|
if (!parentSet.has(childId)) {
|
|
|
|
setSelected(new Map(selected.set(parentId, new Set([...parentSet, childId]))));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
parentSet.delete(childId);
|
|
|
|
setSelected(new Map(selected.set(parentId, new Set(parentSet))));
|
|
|
|
}}
|
|
|
|
onViewRoomClick={(roomId, autoJoin) => {
|
|
|
|
showRoom(roomsMap.get(roomId), Array.from(viaMap.get(roomId) || []), autoJoin);
|
|
|
|
onFinished();
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<hr />
|
|
|
|
</>;
|
|
|
|
} else {
|
|
|
|
results = <div className="mx_SpaceRoomDirectory_noResults">
|
|
|
|
<h3>{ _t("No results found") }</h3>
|
|
|
|
<div>{ _t("You may want to try a different search or check for typos.") }</div>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
|
|
|
|
content = <>
|
|
|
|
<div className="mx_SpaceRoomDirectory_listHeader">
|
|
|
|
{ countsStr }
|
|
|
|
{ editSection }
|
|
|
|
</div>
|
|
|
|
{ error && <div className="mx_SpaceRoomDirectory_error">
|
|
|
|
{ error }
|
|
|
|
</div> }
|
|
|
|
<AutoHideScrollbar className="mx_SpaceRoomDirectory_list">
|
|
|
|
{ results }
|
|
|
|
<AccessibleButton
|
|
|
|
onClick={onCreateRoomClick}
|
|
|
|
kind="primary"
|
|
|
|
className="mx_SpaceRoomDirectory_createRoom"
|
|
|
|
>
|
|
|
|
{ _t("Create room") }
|
|
|
|
</AccessibleButton>
|
|
|
|
</AutoHideScrollbar>
|
|
|
|
</>;
|
|
|
|
} else {
|
|
|
|
content = <Spinner />;
|
2021-03-02 17:11:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO loading state/error state
|
|
|
|
return (
|
|
|
|
<BaseDialog className="mx_SpaceRoomDirectory" hasCancel={true} onFinished={onFinished} title={title}>
|
|
|
|
<div className="mx_Dialog_content">
|
|
|
|
{ explanation }
|
|
|
|
|
|
|
|
<SearchBox
|
|
|
|
className="mx_textinput_icon mx_textinput_search"
|
2021-03-19 14:36:36 +03:00
|
|
|
placeholder={ _t("Search names and description") }
|
2021-03-02 17:11:38 +03:00
|
|
|
onSearch={setQuery}
|
2021-03-24 17:00:52 +03:00
|
|
|
autoFocus={true}
|
|
|
|
initialValue={initialText}
|
2021-03-02 17:11:38 +03:00
|
|
|
/>
|
|
|
|
|
|
|
|
{ content }
|
|
|
|
</div>
|
|
|
|
</BaseDialog>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default SpaceRoomDirectory;
|
|
|
|
|
|
|
|
// Similar to matrix-react-sdk's MatrixTools.getDisplayAliasForRoom
|
|
|
|
// but works with the objects we get from the public room list
|
|
|
|
function getDisplayAliasForRoom(room: ISpaceSummaryRoom) {
|
|
|
|
return room.canonical_alias || (room.aliases ? room.aliases[0] : "");
|
|
|
|
}
|