73 lines
2.1 KiB
JavaScript
73 lines
2.1 KiB
JavaScript
|
|
import * as React from 'react';
|
||
|
|
import Grid from '@mui/material/Grid';
|
||
|
|
import Box from '@mui/material/Box';
|
||
|
|
import Button from '@mui/material/Button';
|
||
|
|
import Snackbar from '@mui/material/Snackbar';
|
||
|
|
|
||
|
|
export default function PositionedSnackbar() {
|
||
|
|
const [state, setState] = React.useState({
|
||
|
|
open: false,
|
||
|
|
vertical: 'top',
|
||
|
|
horizontal: 'center',
|
||
|
|
});
|
||
|
|
const { vertical, horizontal, open } = state;
|
||
|
|
|
||
|
|
const handleClick = (newState) => () => {
|
||
|
|
setState({ ...newState, open: true });
|
||
|
|
};
|
||
|
|
|
||
|
|
const handleClose = () => {
|
||
|
|
setState({ ...state, open: false });
|
||
|
|
};
|
||
|
|
|
||
|
|
const buttons = (
|
||
|
|
<React.Fragment>
|
||
|
|
<Box sx={{ display: 'flex', justifyContent: 'center' }}>
|
||
|
|
<Button onClick={handleClick({ vertical: 'top', horizontal: 'center' })}>
|
||
|
|
Top-Center
|
||
|
|
</Button>
|
||
|
|
</Box>
|
||
|
|
<Grid container sx={{ justifyContent: 'center' }}>
|
||
|
|
<Grid size={6}>
|
||
|
|
<Button onClick={handleClick({ vertical: 'top', horizontal: 'left' })}>
|
||
|
|
Top-Left
|
||
|
|
</Button>
|
||
|
|
</Grid>
|
||
|
|
<Grid sx={{ textAlign: 'right' }} size={6}>
|
||
|
|
<Button onClick={handleClick({ vertical: 'top', horizontal: 'right' })}>
|
||
|
|
Top-Right
|
||
|
|
</Button>
|
||
|
|
</Grid>
|
||
|
|
<Grid size={6}>
|
||
|
|
<Button onClick={handleClick({ vertical: 'bottom', horizontal: 'left' })}>
|
||
|
|
Bottom-Left
|
||
|
|
</Button>
|
||
|
|
</Grid>
|
||
|
|
<Grid sx={{ textAlign: 'right' }} size={6}>
|
||
|
|
<Button onClick={handleClick({ vertical: 'bottom', horizontal: 'right' })}>
|
||
|
|
Bottom-Right
|
||
|
|
</Button>
|
||
|
|
</Grid>
|
||
|
|
</Grid>
|
||
|
|
<Box sx={{ display: 'flex', justifyContent: 'center' }}>
|
||
|
|
<Button onClick={handleClick({ vertical: 'bottom', horizontal: 'center' })}>
|
||
|
|
Bottom-Center
|
||
|
|
</Button>
|
||
|
|
</Box>
|
||
|
|
</React.Fragment>
|
||
|
|
);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Box sx={{ width: 500 }}>
|
||
|
|
{buttons}
|
||
|
|
<Snackbar
|
||
|
|
anchorOrigin={{ vertical, horizontal }}
|
||
|
|
open={open}
|
||
|
|
onClose={handleClose}
|
||
|
|
message="I love snacks"
|
||
|
|
key={vertical + horizontal}
|
||
|
|
/>
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|