25 lines
631 B
JavaScript
25 lines
631 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import CommentsList from 'component/commentsList';
|
|
import Empty from 'component/common/empty';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
linkedCommentId?: string,
|
|
commentsDisabled: boolean,
|
|
};
|
|
|
|
function ChannelDiscussion(props: Props) {
|
|
const { uri, linkedCommentId, commentsDisabled } = props;
|
|
|
|
if (commentsDisabled) {
|
|
return <Empty text={__('This channel has disabled comments on their page.')} />;
|
|
}
|
|
return (
|
|
<section className="section">
|
|
<CommentsList uri={uri} linkedCommentId={linkedCommentId} commentsAreExpanded />
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default ChannelDiscussion;
|