/** ******************************************************************************************************************* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. * ******************************************************************************************************************** */ import React, { Children, ReactElement, Fragment, FunctionComponent } from 'react'; import Divider from '@material-ui/core/Divider'; import { makeStyles, useTheme } from '@material-ui/core/styles'; import useMediaQuery from '@material-ui/core/useMediaQuery'; import Grid from '../../layouts/Grid'; import Column, { ColumnProps as _ColumnProps } from './components/Column'; export type ColumnProps = _ColumnProps; type BreakPoint = 'xs' | 'sm' | 'md' | 'lg'; export interface ColumnLayoutProps { /** Indicate whether to render divider between columns*/ renderDivider?: boolean; /** A list of column elements*/ children: Array | null> | ReactElement | null; /** Collapse the columns below certain breakpoint.
* Available options: 'xs' | 'sm' | 'md' | 'lg'.
* The columns always collapse at xs and are alawys displayed as column layout at xl*/ collapseBelow?: BreakPoint; } const useStyles = makeStyles((theme) => ({ root: { width: '100%', '& hr': { margin: theme.spacing(0, 2), }, marginTop: -theme.spacing(1), '&>*': { marginTop: theme.spacing(1), }, }, column: { overflow: 'hidden', }, })); const covertBreakpoint = (breakpoint: BreakPoint) => { const breakpoints = { lg: 3, md: 2, sm: 1, }; return breakpoints[breakpoint] || 0; }; const getBreakpointValue = (collapseBelow: BreakPoint, breakpoint: BreakPoint): 12 | true => { return covertBreakpoint(collapseBelow) - covertBreakpoint(breakpoint) >= 0 ? 12 : true; }; /** * The column layout is a helper component to ease the layout process. * Within containers, users can position their content in typical layouts, for example: two columns in a row. */ const ColumnLayout: FunctionComponent = ({ children, renderDivider = true, collapseBelow = 'xs', ...props }) => { const classes = useStyles(); const theme = useTheme(); const matched = useMediaQuery(theme.breakpoints.up(collapseBelow)); const columns = Children.toArray(children); return ( {columns.map((column, index) => ( {column} {index !== columns.length - 1 && renderDivider && matched && ( )} ))} ); }; export default ColumnLayout; export { Column };