UNPKG

semantic-ui-react

Version:
65 lines (53 loc) 1.87 kB
import _extends from 'babel-runtime/helpers/extends'; import cx from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import { customPropTypes, getElementType, getUnhandledProps, META, useKeyOnly } from '../../lib'; import CommentAction from './CommentAction'; import CommentActions from './CommentActions'; import CommentAuthor from './CommentAuthor'; import CommentAvatar from './CommentAvatar'; import CommentContent from './CommentContent'; import CommentGroup from './CommentGroup'; import CommentMetadata from './CommentMetadata'; import CommentText from './CommentText'; /** * A comment displays user feedback to site content. */ function Comment(props) { var className = props.className, children = props.children, collapsed = props.collapsed; var classes = cx(useKeyOnly(collapsed, 'collapsed'), 'comment', className); var rest = getUnhandledProps(Comment, props); var ElementType = getElementType(Comment, props); return React.createElement( ElementType, _extends({}, rest, { className: classes }), children ); } Comment.handledProps = ['as', 'children', 'className', 'collapsed']; Comment._meta = { name: 'Comment', type: META.TYPES.VIEW }; process.env.NODE_ENV !== "production" ? Comment.propTypes = { /** An element type to render as (string or function). */ as: customPropTypes.as, /** Primary content. */ children: PropTypes.node, /** Additional classes. */ className: PropTypes.string, /** Comment can be collapsed, or hidden from view. */ collapsed: PropTypes.bool } : void 0; Comment.Author = CommentAuthor; Comment.Action = CommentAction; Comment.Actions = CommentActions; Comment.Avatar = CommentAvatar; Comment.Content = CommentContent; Comment.Group = CommentGroup; Comment.Metadata = CommentMetadata; Comment.Text = CommentText; export default Comment;