-
-
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.
[docs] Migrate Checkbox demos to emotion (#25394)
- Loading branch information
Showing
21 changed files
with
321 additions
and
477 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,117 +1,20 @@ | ||
import * as React from 'react'; | ||
import { withStyles } from '@material-ui/core/styles'; | ||
import { green } from '@material-ui/core/colors'; | ||
import FormGroup from '@material-ui/core/FormGroup'; | ||
import FormControlLabel from '@material-ui/core/FormControlLabel'; | ||
import Checkbox from '@material-ui/core/Checkbox'; | ||
import CheckBoxOutlineBlankIcon from '@material-ui/icons/CheckBoxOutlineBlank'; | ||
import CheckBoxIcon from '@material-ui/icons/CheckBox'; | ||
import Favorite from '@material-ui/icons/Favorite'; | ||
import FavoriteBorder from '@material-ui/icons/FavoriteBorder'; | ||
|
||
const GreenCheckbox = withStyles({ | ||
root: { | ||
color: green[400], | ||
'&$checked': { | ||
color: green[600], | ||
}, | ||
}, | ||
checked: {}, | ||
})((props) => <Checkbox color="default" {...props} />); | ||
|
||
export default function CheckboxLabels() { | ||
const [state, setState] = React.useState({ | ||
checkedA: true, | ||
checkedB: true, | ||
checkedF: true, | ||
checkedG: true, | ||
}); | ||
|
||
const handleChange = (event) => { | ||
setState({ | ||
...state, | ||
[event.target.name]: event.target.checked, | ||
}); | ||
}; | ||
|
||
return ( | ||
<FormGroup row> | ||
<FormGroup> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
checked={state.checkedA} | ||
onChange={handleChange} | ||
name="checkedA" | ||
/> | ||
} | ||
control={<Checkbox defaultChecked name="checkedA" />} | ||
label="Secondary" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
checked={state.checkedB} | ||
onChange={handleChange} | ||
name="checkedB" | ||
color="primary" | ||
/> | ||
} | ||
label="Primary" | ||
/> | ||
<FormControlLabel | ||
control={<Checkbox name="checkedC" />} | ||
label="Uncontrolled" | ||
/> | ||
<FormControlLabel | ||
disabled | ||
control={<Checkbox name="checkedD" />} | ||
control={<Checkbox name="checkedB" />} | ||
label="Disabled" | ||
/> | ||
<FormControlLabel | ||
disabled | ||
control={<Checkbox checked name="checkedE" />} | ||
label="Disabled" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
checked={state.checkedF} | ||
onChange={handleChange} | ||
name="checkedF" | ||
indeterminate | ||
/> | ||
} | ||
label="Indeterminate" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<GreenCheckbox | ||
checked={state.checkedG} | ||
onChange={handleChange} | ||
name="checkedG" | ||
/> | ||
} | ||
label="Custom color" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
icon={<FavoriteBorder />} | ||
checkedIcon={<Favorite />} | ||
name="checkedH" | ||
/> | ||
} | ||
label="Custom icon" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
icon={<CheckBoxOutlineBlankIcon fontSize="small" />} | ||
checkedIcon={<CheckBoxIcon fontSize="small" />} | ||
name="checkedI" | ||
/> | ||
} | ||
label="Custom size" | ||
/> | ||
</FormGroup> | ||
); | ||
} |
105 changes: 4 additions & 101 deletions
105
docs/src/pages/components/checkboxes/CheckboxLabels.tsx
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 |
---|---|---|
@@ -1,117 +1,20 @@ | ||
import * as React from 'react'; | ||
import { withStyles } from '@material-ui/core/styles'; | ||
import { green } from '@material-ui/core/colors'; | ||
import FormGroup from '@material-ui/core/FormGroup'; | ||
import FormControlLabel from '@material-ui/core/FormControlLabel'; | ||
import Checkbox, { CheckboxProps } from '@material-ui/core/Checkbox'; | ||
import CheckBoxOutlineBlankIcon from '@material-ui/icons/CheckBoxOutlineBlank'; | ||
import CheckBoxIcon from '@material-ui/icons/CheckBox'; | ||
import Favorite from '@material-ui/icons/Favorite'; | ||
import FavoriteBorder from '@material-ui/icons/FavoriteBorder'; | ||
|
||
const GreenCheckbox = withStyles({ | ||
root: { | ||
color: green[400], | ||
'&$checked': { | ||
color: green[600], | ||
}, | ||
}, | ||
checked: {}, | ||
})((props: CheckboxProps) => <Checkbox color="default" {...props} />); | ||
import Checkbox from '@material-ui/core/Checkbox'; | ||
|
||
export default function CheckboxLabels() { | ||
const [state, setState] = React.useState({ | ||
checkedA: true, | ||
checkedB: true, | ||
checkedF: true, | ||
checkedG: true, | ||
}); | ||
|
||
const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => { | ||
setState({ | ||
...state, | ||
[event.target.name]: event.target.checked, | ||
}); | ||
}; | ||
|
||
return ( | ||
<FormGroup row> | ||
<FormGroup> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
checked={state.checkedA} | ||
onChange={handleChange} | ||
name="checkedA" | ||
/> | ||
} | ||
control={<Checkbox defaultChecked name="checkedA" />} | ||
label="Secondary" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
checked={state.checkedB} | ||
onChange={handleChange} | ||
name="checkedB" | ||
color="primary" | ||
/> | ||
} | ||
label="Primary" | ||
/> | ||
<FormControlLabel | ||
control={<Checkbox name="checkedC" />} | ||
label="Uncontrolled" | ||
/> | ||
<FormControlLabel | ||
disabled | ||
control={<Checkbox name="checkedD" />} | ||
control={<Checkbox name="checkedB" />} | ||
label="Disabled" | ||
/> | ||
<FormControlLabel | ||
disabled | ||
control={<Checkbox checked name="checkedE" />} | ||
label="Disabled" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
checked={state.checkedF} | ||
onChange={handleChange} | ||
name="checkedF" | ||
indeterminate | ||
/> | ||
} | ||
label="Indeterminate" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<GreenCheckbox | ||
checked={state.checkedG} | ||
onChange={handleChange} | ||
name="checkedG" | ||
/> | ||
} | ||
label="Custom color" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
icon={<FavoriteBorder />} | ||
checkedIcon={<Favorite />} | ||
name="checkedH" | ||
/> | ||
} | ||
label="Custom icon" | ||
/> | ||
<FormControlLabel | ||
control={ | ||
<Checkbox | ||
icon={<CheckBoxOutlineBlankIcon fontSize="small" />} | ||
checkedIcon={<CheckBoxIcon fontSize="small" />} | ||
name="checkedI" | ||
/> | ||
} | ||
label="Custom size" | ||
/> | ||
</FormGroup> | ||
); | ||
} |
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.