Client: create RoomLogoCoverDialog

This commit is contained in:
Dmitry Sychugov 2024-07-24 19:51:55 +05:00
parent 116702d286
commit 1cae73ae53
3 changed files with 78 additions and 1 deletions

View File

@ -0,0 +1,71 @@
// (c) Copyright Ascensio System SIA 2009-2024
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights.
//
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import React from "react";
import { useTranslation } from "react-i18next";
import {
ModalDialog,
ModalDialogType,
} from "@docspace/shared/components/modal-dialog";
import { Button, ButtonSize } from "@docspace/shared/components/button";
import RoomLogoCover from "./sub-components/RoomLogoCover";
const RoomLogoCoverDialog = () => {
const { t } = useTranslation(["Common"]);
return (
<ModalDialog
visible
autoMaxHeight
// onClose={onClose}
displayType={ModalDialogType.modal}
>
<ModalDialog.Header>{t("RoomCover")}</ModalDialog.Header>
<ModalDialog.Body>
<RoomLogoCover />
</ModalDialog.Body>
<ModalDialog.Footer>
<Button
scale
primary
tabIndex={0}
size={ButtonSize.normal}
label={t("Common:ApplyButton")}
// onClick={handleSubmit}
/>
<Button
scale
tabIndex={0}
// onClick={onClose}
size={ButtonSize.normal}
label={t("Common:CancelButton")}
/>
</ModalDialog.Footer>
</ModalDialog>
);
};
export default RoomLogoCoverDialog;

View File

@ -69,7 +69,7 @@ import ShareFolderDialog from "./ShareFolderDialog";
import EditGroupMembersDialog from "./EditGroupMembersDialog"; import EditGroupMembersDialog from "./EditGroupMembersDialog";
import ChangeStorageQuotaDialog from "./ChangeStorageQuotaDialog"; import ChangeStorageQuotaDialog from "./ChangeStorageQuotaDialog";
import DeleteGroupDialog from "./DeleteGroupDialog"; import DeleteGroupDialog from "./DeleteGroupDialog";
import RoomLogoCoverDialog from "./RoomLogoCoverDialog";
export { export {
EmptyTrashDialog, EmptyTrashDialog,
DeleteDialog, DeleteDialog,
@ -116,4 +116,5 @@ export {
ChangeQuotaDialog, ChangeQuotaDialog,
ChangeStorageQuotaDialog, ChangeStorageQuotaDialog,
DeleteGroupDialog, DeleteGroupDialog,
RoomLogoCoverDialog,
}; };

View File

@ -79,6 +79,7 @@ class DialogsStore {
restoreAllPanelVisible = false; restoreAllPanelVisible = false;
archiveDialogVisible = false; archiveDialogVisible = false;
restoreRoomDialogVisible = false; restoreRoomDialogVisible = false;
roomLogoCoverDialogVisible = false;
eventDialogVisible = false; eventDialogVisible = false;
deleteLinkDialogVisible = false; deleteLinkDialogVisible = false;
@ -549,6 +550,10 @@ class DialogsStore {
file, file,
}; };
}; };
setRoomLogoCoverDialogVisible = (visible) => {
this.roomLogoCoverDialogVisible = visible;
};
} }
export default DialogsStore; export default DialogsStore;