Socket
Book a DemoInstallSign in
Socket

mui-app-container

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mui-app-container

Orchestrates Material-UI's AppBar and Drawer components based on device width

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

Orchestrates Material-UI 1.0's AppBar, Drawer and content (ex. <main>) to provide a responsive application layout.

  • Sets <Drawer> props based on screen size
    • 960px (md) and up: sets variant to persistent and defaults open to true
    • Less than 960px (ex. phone): sets variant to temporary and defaults open to false
  • Shifts and resizes <AppBar> and content based when <Drawer> is persistent and open
  • Provides toggleDrawer to close drawer
    • Supports toggling drawer only when variant is temporary (onClick on list item on drawer) or on all calls (AppBar menu icon)
  • Access state via context using <AppContainer.Consumer>

Usage

import AppContainer from 'mui-app-container';

export default () => (
  <AppContainer>
    {({ getAppBarProps, getDrawerProps, toggleDrawer }) => (
      <div>
        <AppBar {...getAppBarProps()}>
          <Toolbar>
            <IconButton
              color="inherit"
              aria-label="open drawer"
              onClick={() => toggleDrawer()}
            >
              <MenuIcon />
            </IconButton>

            <Typography variant="title" color="inherit" style={{ flex: 1 }} noWrap>
              App Container Example
            </Typography>

            <IconButton color="inherit">
              <AccountCircle />
            </IconButton>
          </Toolbar>
        </AppBar>

        <Drawer {...getDrawerProps()}>
          <div>
            <Divider />
            <List>
              {mailFolderListItems(() => toggleDrawer(true))}
            </List>
            <Divider />
            <List>
              {otherMailFolderListItems(() => toggleDrawer(true))}
            </List>
          </div>
        </Drawer>

        <main>
          <Typography>{'Content goes here'}</Typography>
        </main>
      </div>
    )}
  </AppContainer>
);

FAQs

Package last updated on 25 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts