React.js-抽屉封面内容

时间:2018-08-14 21:16:46

标签: reactjs material-ui

我决定在Material-ui库中的我的react项目中实现Drawer组件,就像这样:

class RightDrawer extends React.Component {
  state = {
    open: false,
  };

  handleDrawerOpen = () => {
    this.setState({ open: true });
  };

  handleDrawerClose = () => {
    this.setState({ open: false });
  };

  render() {
    const { classes, children, theme } = this.props;

    return (
      <div className={classes.root}>
        <AppBar
          position="absolute"
          className={classNames(classes.appBar, this.state.open && classes.appBarShift)}
        >
          <Toolbar disableGutters={!this.state.open}>
            <IconButton
              color="inherit"
              aria-label="Open drawer"
              onClick={this.handleDrawerOpen}
              className={classNames(classes.menuButton, this.state.open && classes.hide)}
            >
              <MenuIcon />
            </IconButton>
            <Typography variant="title" color="inherit" noWrap>
              Mini variant drawer
            </Typography>
          </Toolbar>
        </AppBar>
        <Drawer
          variant="permanent"
          classes={{
            paper: classNames(classes.drawerPaper, !this.state.open && classes.drawerPaperClose),
          }}
          open={this.state.open}
        >
          <div className={classes.toolbar}>
            <IconButton onClick={this.handleDrawerClose}>
              {theme.direction === 'rtl' ? <ChevronRightIcon /> : <ChevronLeftIcon />}
            </IconButton>
          </div>
          <Divider />

            <List>{mailFolderListItems}</List>
        </Drawer>
        <main className={classes.content}>
          <div className={classes.toolbar} />
          {children}
        </main>
      </div>
    );
  }
}

RightDrawer.propTypes = {
  classes: PropTypes.object.isRequired,
  theme: PropTypes.object.isRequired,
};

export default withStyles(styles, { withTheme: true })(RightDrawer);

因此,我将所有组件包装在RightDrawer组件中,并仅通过{children}注入它们。 最终结果是: enter image description here

因此,当表格被填充时,它被裁剪为一页的1/3。 enter image description here

是否应该将Drawer直接插入App.js中,而不是将每个组件都包装在其中?也许是由className={classes.root}引起的吗?

1 个答案:

答案 0 :(得分:2)

您提供的问题描述和代码不足以回答此问题。 到目前为止,我发现,如果要使用全高抽屉,可以将height添加到根类中。 例如:

root: {
    height: '100vh',
}
相关问题