materialuiupgraded
Version:
Material-UI's workspace package
157 lines (149 loc) • 4.22 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { withStyles } from '../styles';
import { capitalize } from '../utils/helpers';
export const styles = theme => {
const light = theme.palette.type === 'light';
const align = theme.direction === 'rtl' ? 'right' : 'left';
return {
/* Styles applied to the root element. */
root: {
position: 'absolute',
width: '100%',
height: '100%',
boxSizing: 'border-box',
top: 0,
left: 0,
margin: 0,
padding: 0,
pointerEvents: 'none',
borderRadius: theme.shape.borderRadius,
borderStyle: 'solid',
borderWidth: 1,
borderColor: light ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)',
// Match the Input Label
transition: theme.transitions.create([`padding-${align}`, 'border-color', 'border-width'], {
duration: theme.transitions.duration.shorter,
easing: theme.transitions.easing.easeOut,
}),
},
/* Styles applied to the legend element. */
legend: {
textAlign: 'left',
padding: 0,
transition: theme.transitions.create('width', {
duration: theme.transitions.duration.shorter,
easing: theme.transitions.easing.easeOut,
}),
// Firefox workaround. Firefox will only obscure the
// rendered height of the legend and, unlike other browsers,
// will not push fieldset contents.
'@supports (-moz-appearance:none)': {
height: 2,
},
},
/* Styles applied to the root element if the control is focused. */
focused: {
borderColor: theme.palette.primary.main,
borderWidth: 2,
},
/* Styles applied to the root element if `error={true}`. */
error: {
borderColor: theme.palette.error.main,
},
/* Styles applied to the root element if `disabled={true}`. */
disabled: {
borderColor: theme.palette.action.disabled,
},
};
};
/**
* @ignore - internal component.
*/
function NotchedOutline(props) {
const {
children,
classes,
className,
disabled,
error,
focused,
labelWidth: labelWidthProp,
notched,
style,
theme,
...other
} = props;
const align = theme.direction === 'rtl' ? 'right' : 'left';
const labelWidth = labelWidthProp > 0 ? labelWidthProp * 0.75 + 8 : 0;
return (
<fieldset
aria-hidden
style={{
[`padding${capitalize(align)}`]: 8 + (notched ? 0 : labelWidth / 2),
...style,
}}
className={classNames(
classes.root,
{
[classes.focused]: focused,
[classes.error]: error,
[classes.disabled]: disabled,
},
className,
)}
{...other}
>
<legend
className={classes.legend}
style={{
// IE 11: fieldset with legend does not render
// a border radius. This maintains consistency
// by always having a legend rendered
width: notched ? labelWidth : 0.01,
}}
/>
</fieldset>
);
}
NotchedOutline.propTypes = {
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css-api) below for more details.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* If `true`, the outline should be displayed in a disabled state.
*/
disabled: PropTypes.bool,
/**
* If `true`, the outline should be displayed in an error state.
*/
error: PropTypes.bool,
/**
* If `true`, the outline should be displayed in a focused state.
*/
focused: PropTypes.bool,
/**
* The width of the legend.
*/
labelWidth: PropTypes.number.isRequired,
/**
* If `true`, the outline is notched to accommodate the label.
*/
notched: PropTypes.bool.isRequired,
/**
* @ignore
*/
style: PropTypes.object,
/**
* @ignore
*/
theme: PropTypes.object,
};
export default withStyles(styles, { name: 'MuiNotchedOutline', withTheme: true })(NotchedOutline);