1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import { List, ListItem, ListItemText } from '@material-ui/core';
import ConfirmationDialog from './ConfirmationDialog';
const styles = theme => ({
root: {
width: '100%',
maxWidth: 360,
backgroundColor: theme.palette.background.paper,
},
dialog: {
width: '80%',
maxHeight: 435,
},
});
class SelectRadioDialog extends React.Component {
state = {
open: false,
value: 'Dione',
};
button = undefined;
handleClickListItem = () => {
this.setState({ open: true });
};
handleClose = value => {
this.setState({ value, open: false });
};
render() {
const { classes } = this.props;
return (
<div className={classes.root}>
<List>
<ListItem
button
aria-haspopup="true"
aria-controls="ringtone-menu"
aria-label="Phone ringtone"
onClick={this.handleClickListItem}
>
<ListItemText primary="Phone ringtone" secondary={this.state.value} />
</ListItem>
<ConfirmationDialog
classes={{
paper: classes.dialog,
}}
open={this.state.open}
onClose={this.handleClose}
value={this.state.value}
/>
</List>
</div>
);
}
}
SelectRadioDialog.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(SelectRadioDialog);
|