DocSpace-client/packages/components/room-logo/styled-room-logo.js

138 lines
2.0 KiB
JavaScript
Raw Normal View History

import styled, { css } from "styled-components";
import { RoomsType } from "@docspace/common/constants";
const formCss = css`
border-color: #26acb8;
svg {
path {
fill: #26acb8;
}
}
`;
const archiveCss = css`
border-color: #a3a9ae;
svg {
path {
fill: #a3a9ae;
}
}
`;
const editingCss = css`
border-color: #eb7b0c;
svg {
path {
fill: #eb7b0c;
}
}
`;
const reviewCss = css`
border-color: #cc5bcc;
svg {
path {
fill: #cc5bcc;
}
}
`;
const viewCss = css`
border-color: #2869a9;
svg {
path {
fill: #2869a9;
}
}
`;
const customCss = css`
border-color: #f2557c;
svg {
path {
fill: #f2557c;
}
}
`;
const privacyCss = css`
border: none;
.room-logo_icon {
width: 32px;
height: 32px;
}
`;
2022-07-03 05:24:46 +00:00
const StyledContainer = styled.div`
width: 32px;
height: 32px;
min-width: 32px;
min-height: 32px;
2022-07-03 05:24:46 +00:00
display: flex;
align-items: center;
justify-content: center;
margin-right: 12px;
.room-logo_checkbox {
display: none;
.checkbox {
margin-right: 0;
}
}
`;
const StyledLogoContainer = styled.div`
width: 32px;
height: 32px;
2022-07-03 05:24:46 +00:00
box-sizing: border-box;
border: 2px solid black;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
.room-logo_icon {
width: 16px;
height: 16px;
}
border-color: #f2557c;
svg {
path {
fill: #f2557c;
}
}
${(props) =>
!props.isPrivacy && props.type === RoomsType.ReadOnlyRoom && viewCss}
${(props) =>
!props.isPrivacy && props.type === RoomsType.FillingFormsRoom && formCss}
${(props) =>
!props.isPrivacy && props.type === RoomsType.EditingRoom && editingCss}
${(props) =>
!props.isPrivacy && props.type === RoomsType.ReviewRoom && reviewCss}
${(props) =>
!props.isPrivacy && props.type === RoomsType.CustomRoom && customCss}
${(props) => !props.isPrivacy && props.isArchive && archiveCss}
${(props) => props.isPrivacy && privacyCss}
`;
2022-07-03 05:24:46 +00:00
export { StyledContainer, StyledLogoContainer };