@material-ui/core#SwipeableDrawer JavaScript Examples
The following examples show how to use
@material-ui/core#SwipeableDrawer.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AnnounceMessage.js From treetracker-admin-client with GNU Affero General Public License v3.0 | 5 votes |
AnnounceMessage = ({
toggleAnnounceMessage,
setToggleAnnounceMessage,
}) => {
const iOS =
typeof navigator !== 'undefined' &&
typeof navigator.userAgent !== 'undefined' &&
/iPad|iPhone|iPod/.test(navigator.userAgent);
const { drawer, title, formTitle, directions, closeAnnounce } = useStyles();
return (
<SwipeableDrawer
disablebackdroptransition={!iOS ? 'true' : 'false'}
disablediscovery={iOS ? 'true' : 'false'}
anchor={'right'}
open={toggleAnnounceMessage}
onOpen={() => setToggleAnnounceMessage(true)}
onClose={() => setToggleAnnounceMessage(false)}
classes={{ paper: drawer }}
PaperProps={{ elevation: 6 }}
>
<Grid container spacing={2}>
<Grid item className={title}>
<Typography variant="h4" className={formTitle}>
Announce Message
</Typography>
<IconButton
color="primary"
className={closeAnnounce}
onClick={() => setToggleAnnounceMessage(false)}
>
<Close fontSize="inherit" />
</IconButton>
</Grid>
<Grid item>
<Typography variant="body1" className={directions}>
Write a group message or notification below. Then select the target
audience for your message. All replies will be available in your
Messaging Inbox.
</Typography>
</Grid>
<Grid item>
<AnnounceMessageForm
setToggleAnnounceMessage={setToggleAnnounceMessage}
/>
</Grid>
</Grid>
</SwipeableDrawer>
);
}
Example #2
Source File: Survey.js From treetracker-admin-client with GNU Affero General Public License v3.0 | 5 votes |
Survey = ({ toggleSurvey, setToggleSurvey }) => {
const iOS =
typeof navigator !== 'undefined' &&
typeof navigator.userAgent !== 'undefined' &&
/iPad|iPhone|iPod/.test(navigator.userAgent);
const {
title,
formTitle,
directions,
drawer,
surveyCloseButton,
} = useStyles();
return (
<>
<SwipeableDrawer
disablebackdroptransition={!iOS ? 'true' : 'false'}
disablediscovery={iOS ? 'true' : 'false'}
anchor={'right'}
open={toggleSurvey}
onClose={() => setToggleSurvey(false)}
onOpen={() => setToggleSurvey}
classes={{ paper: drawer }}
PaperProps={{ elevation: 6 }}
>
<Grid container spacing={2}>
<Grid item className={title}>
<Typography variant="h3" className={formTitle}>
Quick Survey
</Typography>
<IconButton
color="primary"
className={surveyCloseButton}
onClick={() => setToggleSurvey(false)}
>
<Close variant="inherit" />
</IconButton>
</Grid>
<Grid item>
<Typography variant="body1" className={directions}>
Write a survey question and up to three answer options. Then
select the target audience for the survey. All replies will be
available in your Messaging Inbox.
</Typography>
</Grid>
<Grid item>
<SurveyForm setToggleSurvey={setToggleSurvey} />
</Grid>
</Grid>
</SwipeableDrawer>
</>
);
}