90 lines
2.3 KiB
JavaScript
90 lines
2.3 KiB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
|
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import withStyles from '../styles/withStyles';
|
|
export const styles = theme => ({
|
|
root: {
|
|
flex: '1 1 auto'
|
|
},
|
|
horizontal: {},
|
|
vertical: {
|
|
marginLeft: 12,
|
|
// half icon
|
|
padding: `0 0 ${theme.spacing.unit}px`
|
|
},
|
|
alternativeLabel: {
|
|
position: 'absolute',
|
|
top: theme.spacing.unit + 4,
|
|
left: 'calc(50% + 20px)',
|
|
right: 'calc(-50% + 20px)'
|
|
},
|
|
line: {
|
|
display: 'block',
|
|
borderColor: theme.palette.type === 'light' ? theme.palette.grey[400] : theme.palette.grey[600]
|
|
},
|
|
lineHorizontal: {
|
|
borderTopStyle: 'solid',
|
|
borderTopWidth: 1
|
|
},
|
|
lineVertical: {
|
|
borderLeftStyle: 'solid',
|
|
borderLeftWidth: 1,
|
|
minHeight: theme.spacing.unit * 3
|
|
}
|
|
});
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
|
|
function StepConnector(props) {
|
|
const {
|
|
alternativeLabel,
|
|
className: classNameProp,
|
|
classes,
|
|
orientation
|
|
} = props,
|
|
other = _objectWithoutProperties(props, ["alternativeLabel", "className", "classes", "orientation"]);
|
|
|
|
const className = classNames(classes.root, classes[orientation], {
|
|
[classes.alternativeLabel]: alternativeLabel
|
|
}, classNameProp);
|
|
const lineClassName = classNames(classes.line, {
|
|
[classes.lineHorizontal]: orientation === 'horizontal',
|
|
[classes.lineVertical]: orientation === 'vertical'
|
|
});
|
|
return React.createElement("div", _extends({
|
|
className: className
|
|
}, other), React.createElement("span", {
|
|
className: lineClassName
|
|
}));
|
|
}
|
|
|
|
StepConnector.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
/**
|
|
* @ignore
|
|
* Set internally by Step when it's supplied with the alternativeLabel property.
|
|
*/
|
|
alternativeLabel: PropTypes.bool,
|
|
|
|
/**
|
|
* Useful to extend the style applied to components.
|
|
*/
|
|
classes: PropTypes.object.isRequired,
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
orientation: PropTypes.oneOf(['horizontal', 'vertical'])
|
|
} : {};
|
|
StepConnector.defaultProps = {
|
|
alternativeLabel: false,
|
|
orientation: 'horizontal'
|
|
};
|
|
export default withStyles(styles)(StepConnector); |