materialuiupgraded
Version:
Material-UI's workspace package
142 lines (133 loc) • 3.59 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import withStyles from '../styles/withStyles';
import { formControlState } from '../InputBase/InputBase';
export const styles = theme => ({
/* Styles applied to the root element. */
root: {
fontFamily: theme.typography.fontFamily,
color: theme.palette.text.secondary,
fontSize: theme.typography.pxToRem(16),
lineHeight: 1,
padding: 0,
'&$focused': {
color: theme.palette.primary[theme.palette.type === 'light' ? 'dark' : 'light'],
},
'&$disabled': {
color: theme.palette.text.disabled,
},
'&$error': {
color: theme.palette.error.main,
},
},
/* Styles applied to the root element if `focused={true}`. */
focused: {},
/* Styles applied to the root element if `disabled={true}`. */
disabled: {},
/* Styles applied to the root element if `error={true}`. */
error: {},
/* Styles applied to the root element if `filled={true}`. */
filled: {},
/* Styles applied to the root element if `required={true}`. */
required: {},
asterisk: {
'&$error': {
color: theme.palette.error.main,
},
},
});
function FormLabel(props, context) {
const {
children,
classes,
className: classNameProp,
component: Component,
disabled,
error,
filled,
focused,
required,
...other
} = props;
const fcs = formControlState({
props,
context,
states: ['required', 'focused', 'disabled', 'error', 'filled'],
});
return (
<Component
className={classNames(
classes.root,
{
[]: fcs.disabled,
[]: fcs.error,
[]: fcs.filled,
[]: fcs.focused,
[]: fcs.required,
},
classNameProp,
)}
{...other}
>
{children}
{fcs.required && (
<span
className={classNames(classes.asterisk, {
[]: fcs.error,
})}
data-mui-test="FormLabelAsterisk"
>
{'\u2009*'}
</span>
)}
</Component>
);
}
FormLabel.propTypes = {
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css-api) below for more details.
*/
classes: PropTypes.object.isRequired,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The component used for the root node.
* Either a string to use a DOM element or a component.
*/
component: PropTypes.oneOfType([PropTypes.string, PropTypes.func, PropTypes.object]),
/**
* If `true`, the label should be displayed in a disabled state.
*/
disabled: PropTypes.bool,
/**
* If `true`, the label should be displayed in an error state.
*/
error: PropTypes.bool,
/**
* If `true`, the label should use filled classes key.
*/
filled: PropTypes.bool,
/**
* If `true`, the input of this label is focused (used by `FormGroup` components).
*/
focused: PropTypes.bool,
/**
* If `true`, the label will indicate that the input is required.
*/
required: PropTypes.bool,
};
FormLabel.defaultProps = {
component: 'label',
};
FormLabel.contextTypes = {
muiFormControl: PropTypes.object,
};
export default withStyles(styles, { name: 'MuiFormLabel' })(FormLabel);