import React from 'react';

import {
  Typography,
  Divider,
  makeStyles
} from '@material-ui/core';


interface PropTypes {
  sectionName: string;
  level?: number;
}

const useStyles = makeStyles(theme => ({
  content: {
    padding: theme.spacing(2, 2, 1, 3),
    marginBottom: theme.spacing(1),

    '& .MuiButton-root': {
      margin: theme.spacing(1, 2, 2, 0),
    },
  },
}));

const ContentSection: React.FC<PropTypes> = ({ sectionName, children, level = 0 }) => {
  const classes = useStyles();

  level += 2; // Make everything smaller
  if (level > 6) level = 6;

  type Variant = 'h3' | 'h4' | 'h5' | 'h6';
  const variant: Variant = 'h' + level as Variant;

  return (
    <>
      <Typography variant={variant}>{sectionName}</Typography>
      <Divider variant="middle"/>
      <Typography component="div" className={classes.content}>
        {children}
      </Typography>
    </>
  );

};


export default ContentSection;