142 lines
3.5 KiB
JavaScript
142 lines
3.5 KiB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
|
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
// @inheritedComponent FormLabel
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import withStyles from '../styles/withStyles';
|
|
import { FormLabel } from '../Form';
|
|
export const styles = theme => ({
|
|
root: {
|
|
transformOrigin: 'top left'
|
|
},
|
|
formControl: {
|
|
position: 'absolute',
|
|
left: 0,
|
|
top: 0,
|
|
// slight alteration to spec spacing to match visual spec result
|
|
transform: `translate(0, ${theme.spacing.unit * 3}px) scale(1)`
|
|
},
|
|
marginDense: {
|
|
// Compensation for the `Input.inputDense` style.
|
|
transform: `translate(0, ${theme.spacing.unit * 2.5 + 1}px) scale(1)`
|
|
},
|
|
shrink: {
|
|
transform: 'translate(0, 1.5px) scale(0.75)',
|
|
transformOrigin: 'top left',
|
|
width: '133.33%'
|
|
},
|
|
animated: {
|
|
transition: theme.transitions.create('transform', {
|
|
duration: theme.transitions.duration.shorter,
|
|
easing: theme.transitions.easing.easeOut
|
|
})
|
|
}
|
|
});
|
|
|
|
function InputLabel(props, context) {
|
|
const {
|
|
children,
|
|
classes,
|
|
className: classNameProp,
|
|
disableAnimation,
|
|
FormLabelClasses,
|
|
margin: marginProp,
|
|
shrink: shrinkProp
|
|
} = props,
|
|
other = _objectWithoutProperties(props, ["children", "classes", "className", "disableAnimation", "FormLabelClasses", "margin", "shrink"]);
|
|
|
|
const {
|
|
muiFormControl
|
|
} = context;
|
|
let shrink = shrinkProp;
|
|
|
|
if (typeof shrink === 'undefined' && muiFormControl) {
|
|
shrink = muiFormControl.filled || muiFormControl.focused || muiFormControl.adornedStart;
|
|
}
|
|
|
|
let margin = marginProp;
|
|
|
|
if (typeof margin === 'undefined' && muiFormControl) {
|
|
margin = muiFormControl.margin;
|
|
}
|
|
|
|
const className = classNames(classes.root, {
|
|
[classes.formControl]: muiFormControl,
|
|
[classes.animated]: !disableAnimation,
|
|
[classes.shrink]: shrink,
|
|
[classes.marginDense]: margin === 'dense'
|
|
}, classNameProp);
|
|
return React.createElement(FormLabel, _extends({
|
|
"data-shrink": shrink,
|
|
className: className,
|
|
classes: FormLabelClasses
|
|
}, other), children);
|
|
}
|
|
|
|
InputLabel.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
/**
|
|
* The contents of the `InputLabel`.
|
|
*/
|
|
children: PropTypes.node,
|
|
|
|
/**
|
|
* Useful to extend the style applied to components.
|
|
*/
|
|
classes: PropTypes.object.isRequired,
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
|
|
/**
|
|
* If `true`, the transition animation is disabled.
|
|
*/
|
|
disableAnimation: PropTypes.bool,
|
|
|
|
/**
|
|
* If `true`, apply disabled class.
|
|
*/
|
|
disabled: PropTypes.bool,
|
|
|
|
/**
|
|
* If `true`, the label will be displayed in an error state.
|
|
*/
|
|
error: PropTypes.bool,
|
|
|
|
/**
|
|
* If `true`, the input of this label is focused.
|
|
*/
|
|
focused: PropTypes.bool,
|
|
|
|
/**
|
|
* `classes` property applied to the `FormLabel` element.
|
|
*/
|
|
FormLabelClasses: PropTypes.object,
|
|
|
|
/**
|
|
* If `dense`, will adjust vertical spacing. This is normally obtained via context from
|
|
* FormControl.
|
|
*/
|
|
margin: PropTypes.oneOf(['dense']),
|
|
|
|
/**
|
|
* if `true`, the label will indicate that the input is required.
|
|
*/
|
|
required: PropTypes.bool,
|
|
|
|
/**
|
|
* If `true`, the label is shrunk.
|
|
*/
|
|
shrink: PropTypes.bool
|
|
} : {};
|
|
InputLabel.defaultProps = {
|
|
disableAnimation: false
|
|
};
|
|
InputLabel.contextTypes = {
|
|
muiFormControl: PropTypes.object
|
|
};
|
|
export default withStyles(styles, {
|
|
name: 'MuiInputLabel'
|
|
})(InputLabel); |