DocSpace-buildtools/web/ASC.Web.Common/src/components/Layout/index.js

39 lines
902 B
JavaScript
Raw Normal View History

2020-11-17 08:36:49 +00:00
import React, { useEffect, useState } from "react";
2020-10-22 17:09:44 +00:00
import styled from "styled-components";
2020-11-17 08:36:49 +00:00
import MobileLayout from "./MobileLayout";
import { utils } from "asc-web-components";
const { size } = utils.device;
2020-10-22 17:09:44 +00:00
const StyledContainer = styled.div`
2020-11-17 08:36:49 +00:00
width: 100%;
height: 100vh;
`;
2020-10-27 08:13:42 +00:00
const Layout = (props) => {
2020-11-17 08:36:49 +00:00
const { children } = props;
const isTablet = window.innerWidth <= size.tablet;
2020-10-22 17:09:44 +00:00
const [windowWidth, setWindowWidth] = useState({
matches: isTablet,
});
useEffect(() => {
let mediaQuery = window.matchMedia("(max-width: 1024px)");
mediaQuery.addListener(setWindowWidth);
return () => mediaQuery.removeListener(setWindowWidth);
}, []);
2020-11-17 08:36:49 +00:00
return (
<StyledContainer className="Layout">
2020-11-17 08:36:49 +00:00
{windowWidth && windowWidth.matches ? (
<MobileLayout {...props} />
) : (
children
)}
</StyledContainer>
);
2020-11-17 08:36:49 +00:00
};
export default Layout;