From 48566454047526232575686481b451aa3a7933f6 Mon Sep 17 00:00:00 2001 From: DmitrySychugov Date: Fri, 26 Jul 2024 20:21:51 +0500 Subject: [PATCH] Client: added SelectIcon --- .../sub-components/RoomLogoCover.tsx | 42 ++++---- .../sub-components/SelectIcon.tsx | 96 +++++++++++++++++++ 2 files changed, 119 insertions(+), 19 deletions(-) create mode 100644 packages/client/src/components/dialogs/RoomLogoCoverDialog/sub-components/SelectIcon.tsx diff --git a/packages/client/src/components/dialogs/RoomLogoCoverDialog/sub-components/RoomLogoCover.tsx b/packages/client/src/components/dialogs/RoomLogoCoverDialog/sub-components/RoomLogoCover.tsx index d064d4cc36..0d1cec515d 100644 --- a/packages/client/src/components/dialogs/RoomLogoCoverDialog/sub-components/RoomLogoCover.tsx +++ b/packages/client/src/components/dialogs/RoomLogoCoverDialog/sub-components/RoomLogoCover.tsx @@ -27,10 +27,10 @@ import React, { useState } from "react"; import { inject, observer } from "mobx-react"; import { useTranslation } from "react-i18next"; import styled from "styled-components"; -import { RoomLogoCoverProps } from "./RoomLogoCover.types"; import { CustomLogo } from "./CustomLogo"; import { SelectColor } from "./SelectColor"; +import { SelectIcon } from "./SelectIcon"; const logoColors = [ "#FF6680", @@ -59,17 +59,23 @@ const RoomLogoCoverContainer = styled.div` line-height: 20px; } - .colors-container { + .colors-container, + .cover-icon-container { display: flex; flex-wrap: wrap; } + + .select-color-container { + margin: 14px 0; + } `; const RoomLogoCover = (props) => { // const { appearanceTheme } = props; - const { t } = useTranslation(["Common"]); + const { t } = useTranslation(["Common", "CreateEditRoomDialog"]); const [color, setColor] = useState(logoColors[3]); // set room icon default color + const [withoutIcon, setWithoutIcon] = useState(true); // const onChangeColor: React.MouseEvent = (color: string) => { // setColor(color); @@ -81,30 +87,28 @@ const RoomLogoCover = (props) => {
- + +
+
+
); }; export default inject(({ settingsStore }) => { - const { - appearanceTheme, - // selectedThemeId, - - // getAppearanceTheme, - // currentColorScheme, - - // theme, - } = settingsStore; + const { appearanceTheme } = settingsStore; return { appearanceTheme, - // selectedThemeId, - - // getAppearanceTheme, - // currentColorScheme, - - // theme, }; })(observer(RoomLogoCover)); diff --git a/packages/client/src/components/dialogs/RoomLogoCoverDialog/sub-components/SelectIcon.tsx b/packages/client/src/components/dialogs/RoomLogoCoverDialog/sub-components/SelectIcon.tsx new file mode 100644 index 0000000000..7c2af5b786 --- /dev/null +++ b/packages/client/src/components/dialogs/RoomLogoCoverDialog/sub-components/SelectIcon.tsx @@ -0,0 +1,96 @@ +// (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 styled, { css } from "styled-components"; + +import { SelectIconProps } from "../RoomLogoCoverDialog.types"; +import { RoomCoverIcons } from "../data"; + +interface WithoutIconProps { + isSelected?: boolean; +} + +const StyledWithoutIcon = styled.div` + display: flex; + white-space: nowrap; + flex-direction: column; + margin: 8px 0; + gap: 4px; + width: max-content; + font-weight: 600; + line-height: 20px; + user-select: none; + padding: 4px 16px; + color: #657077; + background-color: #eceef1; + border: 1px solid rgb(236, 238, 241); + border-radius: 16px; + &:hover { + cursor: pointer; + } + + ${(props) => + props.isSelected && + css` + background-color: #fff; + `} +`; + +const StyledIconContainer = styled.div` + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: center; + width: 30px; + height: 30px; + margin-right: 10px; + margin-top: 8px; +`; + +export const SelectIcon = ({ + t, + withoutIcon, + setWithoutIcon, +}: SelectIconProps) => { + const toggleWithoutIcon = () => setWithoutIcon((state: boolean) => !state); + return ( +
+
{t("CreateEditRoomDialog:Icon")}
+ + Without icon + +
+ {RoomCoverIcons.map((icon) => ( + + cover-icon + + ))} +
+
+ ); +};