Client: added SelectIcon

This commit is contained in:
Dmitry Sychugov 2024-07-26 20:21:51 +05:00
parent e8cba0dcfd
commit 4856645404
2 changed files with 119 additions and 19 deletions

View File

@ -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<string>(logoColors[3]); // set room icon default color
const [withoutIcon, setWithoutIcon] = useState<boolean>(true);
// const onChangeColor: React.MouseEvent = (color: string) => {
// setColor(color);
@ -81,30 +87,28 @@ const RoomLogoCover = (props) => {
<CustomLogo color={color} />
</div>
<div className="color-select-container">
<SelectColor t={t} logoColors={logoColors} onChangeColor={setColor} />
<SelectColor
t={t}
selectedColor={color}
logoColors={logoColors}
onChangeColor={setColor}
/>
</div>
<div className="icon-select-container">
<SelectIcon
t={t}
withoutIcon={withoutIcon}
setWithoutIcon={setWithoutIcon}
/>
</div>
</RoomLogoCoverContainer>
);
};
export default inject<TStore>(({ settingsStore }) => {
const {
appearanceTheme,
// selectedThemeId,
// getAppearanceTheme,
// currentColorScheme,
// theme,
} = settingsStore;
const { appearanceTheme } = settingsStore;
return {
appearanceTheme,
// selectedThemeId,
// getAppearanceTheme,
// currentColorScheme,
// theme,
};
})(observer(RoomLogoCover));

View File

@ -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<WithoutIconProps>`
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 (
<div>
<div className="color-name">{t("CreateEditRoomDialog:Icon")}</div>
<StyledWithoutIcon onClick={toggleWithoutIcon} isSelected={withoutIcon}>
Without icon
</StyledWithoutIcon>
<div className="cover-icon-container">
{RoomCoverIcons.map((icon) => (
<StyledIconContainer key={icon}>
<img src={icon} alt="cover-icon" />
</StyledIconContainer>
))}
</div>
</div>
);
};