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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import { Grid, FormControl, FormLabel, FormControlLabel, RadioGroup, Radio, Paper } from '@material-ui/core';
const styles = theme => ({
root: {
flexGrow: 1,
},
demo: {
height: 240,
},
paper: {
padding: theme.spacing(2),
height: '100%',
backgroundColor: theme.palette.secondary.light,
},
control: {
padding: theme.spacing(2),
},
});
class InteractiveGrid extends React.Component {
state = {
direction: 'row',
justify: 'center',
alignItems: 'center',
};
handleChange = key => (event, value) => {
this.setState({
[key]: value,
});
};
render() {
const { classes } = this.props;
const { alignItems, direction, justify } = this.state;
return (
<Grid container className={classes.root}>
<Grid item xs={12}>
<Grid
container
className={classes.demo}
alignItems={alignItems}
direction={direction}
justify={justify}
>
{[0, 1, 2].map(value => (
<Grid key={value} item>
<Paper
className={classes.paper}
style={{ paddingTop: (value + 1) * 10, paddingBottom: (value + 1) * 10 }}
>
{`Cell ${value + 1}`}
</Paper>
</Grid>
))}
</Grid>
</Grid>
<Grid item xs={12}>
<Paper className={classes.control}>
<Grid container>
<Grid item xs={6} sm={4}>
<FormControl component="fieldset">
<FormLabel>direction</FormLabel>
<RadioGroup
name="direction"
aria-label="direction"
value={direction}
onChange={this.handleChange('direction')}
>
<FormControlLabel value="row" control={<Radio />} label="row" />
<FormControlLabel value="row-reverse" control={<Radio />} label="row-reverse" />
<FormControlLabel value="column" control={<Radio />} label="column" />
<FormControlLabel
value="column-reverse"
control={<Radio />}
label="column-reverse"
/>
</RadioGroup>
</FormControl>
</Grid>
<Grid item xs={6} sm={4}>
<FormControl component="fieldset">
<FormLabel>justify</FormLabel>
<RadioGroup
name="justify"
aria-label="justify"
value={justify}
onChange={this.handleChange('justify')}
>
<FormControlLabel value="flex-start" control={<Radio />} label="flex-start" />
<FormControlLabel value="center" control={<Radio />} label="center" />
<FormControlLabel value="flex-end" control={<Radio />} label="flex-end" />
<FormControlLabel
value="space-between"
control={<Radio />}
label="space-between"
/>
<FormControlLabel
value="space-around"
control={<Radio />}
label="space-around"
/>
</RadioGroup>
</FormControl>
</Grid>
<Grid item xs={6} sm={4}>
<FormControl component="fieldset">
<FormLabel>alignItems</FormLabel>
<RadioGroup
name="alignItems"
aria-label="alignItems"
value={alignItems}
onChange={this.handleChange('alignItems')}
>
<FormControlLabel value="flex-start" control={<Radio />} label="flex-start" />
<FormControlLabel value="center" control={<Radio />} label="center" />
<FormControlLabel value="flex-end" control={<Radio />} label="flex-end" />
<FormControlLabel value="stretch" control={<Radio />} label="stretch" />
<FormControlLabel value="baseline" control={<Radio />} label="baseline" />
</RadioGroup>
</FormControl>
</Grid>
</Grid>
</Paper>
</Grid>
</Grid>
);
}
}
InteractiveGrid.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(InteractiveGrid);
|