60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
import _extends from "@babel/runtime-corejs2/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime-corejs2/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _inheritsLoose from "@babel/runtime-corejs2/helpers/esm/inheritsLoose";
|
|
import classNames from 'classnames';
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import elementType from 'prop-types-extra/lib/elementType';
|
|
import Media from './Media';
|
|
import { bsClass, getClassSet, prefix, splitBsProps } from './utils/bootstrapUtils';
|
|
var propTypes = {
|
|
/**
|
|
* Align the media to the top, middle, or bottom of the media object.
|
|
*/
|
|
align: PropTypes.oneOf(['top', 'middle', 'bottom']),
|
|
componentClass: elementType
|
|
};
|
|
var defaultProps = {
|
|
componentClass: 'div'
|
|
};
|
|
|
|
var MediaBody =
|
|
/*#__PURE__*/
|
|
function (_React$Component) {
|
|
_inheritsLoose(MediaBody, _React$Component);
|
|
|
|
function MediaBody() {
|
|
return _React$Component.apply(this, arguments) || this;
|
|
}
|
|
|
|
var _proto = MediaBody.prototype;
|
|
|
|
_proto.render = function render() {
|
|
var _this$props = this.props,
|
|
Component = _this$props.componentClass,
|
|
align = _this$props.align,
|
|
className = _this$props.className,
|
|
props = _objectWithoutPropertiesLoose(_this$props, ["componentClass", "align", "className"]);
|
|
|
|
var _splitBsProps = splitBsProps(props),
|
|
bsProps = _splitBsProps[0],
|
|
elementProps = _splitBsProps[1];
|
|
|
|
var classes = getClassSet(bsProps);
|
|
|
|
if (align) {
|
|
// The class is e.g. `media-top`, not `media-left-top`.
|
|
classes[prefix(Media.defaultProps, align)] = true;
|
|
}
|
|
|
|
return React.createElement(Component, _extends({}, elementProps, {
|
|
className: classNames(className, classes)
|
|
}));
|
|
};
|
|
|
|
return MediaBody;
|
|
}(React.Component);
|
|
|
|
MediaBody.propTypes = propTypes;
|
|
MediaBody.defaultProps = defaultProps;
|
|
export default bsClass('media-body', MediaBody); |