-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Dialog] Add dialog with close button to demos (#13845)
* Add dialog with close button to demos * let's do crazy
- Loading branch information
1 parent
a1e4d4b
commit 29eae3a
Showing
22 changed files
with
260 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
import React from 'react'; | ||
import { withStyles } from '@material-ui/core/styles'; | ||
import Button from '@material-ui/core/Button'; | ||
import Dialog from '@material-ui/core/Dialog'; | ||
import MuiDialogTitle from '@material-ui/core/DialogTitle'; | ||
import MuiDialogContent from '@material-ui/core/DialogContent'; | ||
import MuiDialogActions from '@material-ui/core/DialogActions'; | ||
import IconButton from '@material-ui/core/IconButton'; | ||
import CloseIcon from '@material-ui/icons/Close'; | ||
import Typography from '@material-ui/core/Typography'; | ||
|
||
const DialogTitle = withStyles(theme => ({ | ||
root: { | ||
borderBottom: `1px solid ${theme.palette.divider}`, | ||
margin: 0, | ||
padding: theme.spacing.unit * 2, | ||
}, | ||
closeButton: { | ||
position: 'absolute', | ||
right: theme.spacing.unit, | ||
top: theme.spacing.unit, | ||
color: theme.palette.grey[500], | ||
}, | ||
}))(props => { | ||
const { children, classes, onClose } = props; | ||
return ( | ||
<MuiDialogTitle disableTypography className={classes.root}> | ||
<Typography variant="h6">{children}</Typography> | ||
{onClose ? ( | ||
<IconButton aria-label="Close" className={classes.closeButton} onClick={onClose}> | ||
<CloseIcon /> | ||
</IconButton> | ||
) : null} | ||
</MuiDialogTitle> | ||
); | ||
}); | ||
|
||
const DialogContent = withStyles(theme => ({ | ||
root: { | ||
margin: 0, | ||
padding: theme.spacing.unit * 2, | ||
}, | ||
}))(MuiDialogContent); | ||
|
||
const DialogActions = withStyles(theme => ({ | ||
root: { | ||
borderTop: `1px solid ${theme.palette.divider}`, | ||
margin: 0, | ||
padding: theme.spacing.unit, | ||
}, | ||
}))(MuiDialogActions); | ||
|
||
class CustomizedDialogDemo extends React.Component { | ||
state = { | ||
open: false, | ||
}; | ||
|
||
handleClickOpen = () => { | ||
this.setState({ | ||
open: true, | ||
}); | ||
}; | ||
|
||
handleClose = () => { | ||
this.setState({ open: false }); | ||
}; | ||
|
||
render() { | ||
return ( | ||
<div> | ||
<Button variant="outlined" color="secondary" onClick={this.handleClickOpen}> | ||
Open dialog | ||
</Button> | ||
<Dialog | ||
onClose={this.handleClose} | ||
aria-labelledby="customized-dialog-title" | ||
open={this.state.open} | ||
> | ||
<DialogTitle id="customized-dialog-title" onClose={this.handleClose}> | ||
Modal title | ||
</DialogTitle> | ||
<DialogContent> | ||
<Typography gutterBottom> | ||
Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac | ||
facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum | ||
at eros. | ||
</Typography> | ||
<Typography gutterBottom> | ||
Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Vivamus sagittis | ||
lacus vel augue laoreet rutrum faucibus dolor auctor. | ||
</Typography> | ||
<Typography gutterBottom> | ||
Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus magna, vel | ||
scelerisque nisl consectetur et. Donec sed odio dui. Donec ullamcorper nulla non metus | ||
auctor fringilla. | ||
</Typography> | ||
</DialogContent> | ||
<DialogActions> | ||
<Button onClick={this.handleClose} color="primary"> | ||
Save changes | ||
</Button> | ||
</DialogActions> | ||
</Dialog> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default CustomizedDialogDemo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.