DocSpace-client/packages/asc-web-common/components/Section/sub-components/section-container.js

125 lines
2.2 KiB
JavaScript
Raw Normal View History

import React from "react";
import styled, { css } from "styled-components";
import { tablet, size, mobile } from "@appserver/components/utils/device";
import {
isIOS,
isTablet,
isSafari,
isChrome,
isMobileOnly,
isMobile,
} from "react-device-detect";
const tabletProps = css`
.section-header_header,
.section-header_filter {
display: none;
}
.section-body_header {
display: block;
position: sticky;
top: 0;
background: linear-gradient(
180deg,
#ffffff 2.81%,
rgba(255, 255, 255, 0.91) 63.03%,
rgba(255, 255, 255, 0) 100%
);
z-index: 200;
margin-right: -2px;
${isMobileOnly &&
css`
padding: 0 16px;
margin: 0 -16px;
`}
}
.section-body_filter {
display: block;
margin: ${(props) =>
props.viewAs === "tile" ? "4px 0 18px" : "4px 0 30px"};
margin-right: -1px;
}
`;
const StyledSectionContainer = styled.section`
padding: 0 0 0 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
.layout-progress-bar {
position: fixed;
right: 15px;
bottom: 21px;
${(props) =>
!props.visible &&
css`
@media ${tablet} {
bottom: 83px;
}
`}
}
.layout-progress-second-bar {
position: fixed;
right: 15px;
bottom: 83px;
${(props) =>
!props.visible &&
css`
@media ${tablet} {
bottom: 145px;
}
`}
}
.section-header_header,
.section-header_filter {
display: block;
}
.section-body_header,
.section-body_filter {
display: none;
}
@media ${tablet} {
padding: 0 0 0 16px;
${tabletProps};
}
${isMobile &&
css`
${tabletProps};
min-width: 100px;
`}
`;
class SectionContainer extends React.Component {
/*shouldComponentUpdate() {
return false;
}*/
componentDidUpdate() {
const { pinned } = this.props;
if (
isIOS &&
isTablet &&
(isSafari || isChrome) &&
window.innerWidth <= size.smallTablet &&
pinned
) {
2020-12-18 18:24:37 +00:00
this.props.unpinArticle();
}
}
render() {
//console.log("PageLayout Section render");
return <StyledSectionContainer id="section" {...this.props} />;
}
}
export default SectionContainer;