mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-27 02:48:39 +08:00
491f0cd08a
* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
160 lines
5.9 KiB
TypeScript
160 lines
5.9 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { Room, ICreateRoomStateEvent, RoomType, EventType, JoinRule } from "matrix-js-sdk/src/matrix";
|
|
import { KnownMembership } from "matrix-js-sdk/src/types";
|
|
|
|
import { calculateRoomVia } from "./permalinks/Permalinks";
|
|
import Modal from "../Modal";
|
|
import CreateRoomDialog from "../components/views/dialogs/CreateRoomDialog";
|
|
import createRoom from "../createRoom";
|
|
import { _t } from "../languageHandler";
|
|
import SpacePublicShare from "../components/views/spaces/SpacePublicShare";
|
|
import InfoDialog from "../components/views/dialogs/InfoDialog";
|
|
import { showRoomInviteDialog } from "../RoomInvite";
|
|
import CreateSubspaceDialog from "../components/views/dialogs/CreateSubspaceDialog";
|
|
import AddExistingSubspaceDialog from "../components/views/dialogs/AddExistingSubspaceDialog";
|
|
import defaultDispatcher from "../dispatcher/dispatcher";
|
|
import { Action } from "../dispatcher/actions";
|
|
import Spinner from "../components/views/elements/Spinner";
|
|
import { shouldShowComponent } from "../customisations/helpers/UIComponents";
|
|
import { UIComponent } from "../settings/UIFeature";
|
|
import { OpenSpacePreferencesPayload, SpacePreferenceTab } from "../dispatcher/payloads/OpenSpacePreferencesPayload";
|
|
import { OpenSpaceSettingsPayload } from "../dispatcher/payloads/OpenSpaceSettingsPayload";
|
|
import { OpenAddExistingToSpaceDialogPayload } from "../dispatcher/payloads/OpenAddExistingToSpaceDialogPayload";
|
|
import { SdkContextClass } from "../contexts/SDKContext";
|
|
|
|
export const shouldShowSpaceSettings = (space: Room): boolean => {
|
|
const userId = space.client.getUserId()!;
|
|
return (
|
|
space.getMyMembership() === KnownMembership.Join &&
|
|
(space.currentState.maySendStateEvent(EventType.RoomAvatar, userId) ||
|
|
space.currentState.maySendStateEvent(EventType.RoomName, userId) ||
|
|
space.currentState.maySendStateEvent(EventType.RoomTopic, userId) ||
|
|
space.currentState.maySendStateEvent(EventType.RoomJoinRules, userId))
|
|
);
|
|
};
|
|
|
|
export const makeSpaceParentEvent = (room: Room, canonical = false): ICreateRoomStateEvent => ({
|
|
type: EventType.SpaceParent,
|
|
content: {
|
|
via: calculateRoomVia(room),
|
|
canonical: canonical,
|
|
},
|
|
state_key: room.roomId,
|
|
});
|
|
|
|
export function showSpaceSettings(space: Room): void {
|
|
defaultDispatcher.dispatch<OpenSpaceSettingsPayload>({
|
|
action: Action.OpenSpaceSettings,
|
|
space,
|
|
});
|
|
}
|
|
|
|
export const showAddExistingRooms = (space: Room): void => {
|
|
defaultDispatcher.dispatch<OpenAddExistingToSpaceDialogPayload>({
|
|
action: Action.OpenAddToExistingSpaceDialog,
|
|
space,
|
|
});
|
|
};
|
|
|
|
export const showCreateNewRoom = async (space: Room, type?: RoomType): Promise<boolean> => {
|
|
const modal = Modal.createDialog(CreateRoomDialog, {
|
|
type,
|
|
defaultPublic: space.getJoinRule() === JoinRule.Public,
|
|
parentSpace: space,
|
|
});
|
|
const [shouldCreate, opts] = await modal.finished;
|
|
if (shouldCreate) {
|
|
await createRoom(space.client, opts);
|
|
}
|
|
return !!shouldCreate;
|
|
};
|
|
|
|
export const shouldShowSpaceInvite = (space: Room): boolean =>
|
|
((space?.getMyMembership() === KnownMembership.Join && space.canInvite(space.client.getUserId()!)) ||
|
|
space.getJoinRule() === JoinRule.Public) &&
|
|
shouldShowComponent(UIComponent.InviteUsers);
|
|
|
|
export const showSpaceInvite = (space: Room, initialText = ""): void => {
|
|
if (space.getJoinRule() === "public") {
|
|
const modal = Modal.createDialog(InfoDialog, {
|
|
title: _t("invite|to_space", { spaceName: space.name }),
|
|
description: (
|
|
<React.Fragment>
|
|
<span>{_t("space|share_public")}</span>
|
|
<SpacePublicShare space={space} onFinished={() => modal.close()} />
|
|
</React.Fragment>
|
|
),
|
|
fixedWidth: false,
|
|
button: false,
|
|
className: "mx_SpacePanel_sharePublicSpace",
|
|
hasCloseButton: true,
|
|
});
|
|
} else {
|
|
showRoomInviteDialog(space.roomId, initialText);
|
|
}
|
|
};
|
|
|
|
export const showAddExistingSubspace = (space: Room): void => {
|
|
Modal.createDialog(
|
|
AddExistingSubspaceDialog,
|
|
{
|
|
space,
|
|
onCreateSubspaceClick: () => showCreateNewSubspace(space),
|
|
onFinished: (added: boolean) => {
|
|
if (added && SdkContextClass.instance.roomViewStore.getRoomId() === space.roomId) {
|
|
defaultDispatcher.fire(Action.UpdateSpaceHierarchy);
|
|
}
|
|
},
|
|
},
|
|
"mx_AddExistingToSpaceDialog_wrapper",
|
|
);
|
|
};
|
|
|
|
export const showCreateNewSubspace = (space: Room): void => {
|
|
Modal.createDialog(
|
|
CreateSubspaceDialog,
|
|
{
|
|
space,
|
|
onAddExistingSpaceClick: () => showAddExistingSubspace(space),
|
|
onFinished: (added: boolean) => {
|
|
if (added && SdkContextClass.instance.roomViewStore.getRoomId() === space.roomId) {
|
|
defaultDispatcher.fire(Action.UpdateSpaceHierarchy);
|
|
}
|
|
},
|
|
},
|
|
"mx_CreateSubspaceDialog_wrapper",
|
|
);
|
|
};
|
|
|
|
export const bulkSpaceBehaviour = async (
|
|
space: Room,
|
|
children: Room[],
|
|
fn: (room: Room) => Promise<unknown>,
|
|
): Promise<void> => {
|
|
const modal = Modal.createDialog(Spinner, undefined, "mx_Dialog_spinner");
|
|
try {
|
|
for (const room of children) {
|
|
await fn(room);
|
|
}
|
|
await fn(space);
|
|
} finally {
|
|
modal.close();
|
|
}
|
|
};
|
|
|
|
export const showSpacePreferences = (space: Room, initialTabId?: SpacePreferenceTab): void => {
|
|
defaultDispatcher.dispatch<OpenSpacePreferencesPayload>({
|
|
action: Action.OpenSpacePreferences,
|
|
space,
|
|
initialTabId,
|
|
});
|
|
};
|