| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import Button from 'react-bootstrap/es/Button';
- import { withTranslation } from 'react-i18next';
- import AppContainer from '../services/AppContainer';
- import CommentContainer from '../services/CommentContainer';
- import { createSubscribedElement } from './UnstatedUtils';
- import CommentEditor from './PageComment/CommentEditor';
- import Comment from './PageComment/Comment';
- import DeleteCommentModal from './PageComment/DeleteCommentModal';
- import PageContainer from '../services/PageContainer';
- /**
- * Load data of comments and render the list of <Comment />
- *
- * @author Yuki Takei <yuki@weseek.co.jp>
- *
- * @export
- * @class PageComments
- * @extends {React.Component}
- */
- class PageComments extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- isLayoutTypeGrowi: false,
- // for deleting comment
- commentToDelete: undefined,
- isDeleteConfirmModalShown: false,
- errorMessageForDeleting: undefined,
- showEditorIds: new Set(),
- };
- this.growiRenderer = this.props.appContainer.getRenderer('comment');
- this.init = this.init.bind(this);
- this.confirmToDeleteComment = this.confirmToDeleteComment.bind(this);
- this.deleteComment = this.deleteComment.bind(this);
- this.showDeleteConfirmModal = this.showDeleteConfirmModal.bind(this);
- this.closeDeleteConfirmModal = this.closeDeleteConfirmModal.bind(this);
- this.replyButtonClickedHandler = this.replyButtonClickedHandler.bind(this);
- this.commentButtonClickedHandler = this.commentButtonClickedHandler.bind(this);
- }
- componentWillMount() {
- this.init();
- }
- init() {
- if (!this.props.pageContainer.state.pageId) {
- return;
- }
- const layoutType = this.props.appContainer.getConfig().layoutType;
- this.setState({ isLayoutTypeGrowi: layoutType === 'crowi-plus' || layoutType === 'growi' });
- this.props.commentContainer.retrieveComments();
- }
- confirmToDeleteComment(comment) {
- this.setState({ commentToDelete: comment });
- this.showDeleteConfirmModal();
- }
- deleteComment() {
- const comment = this.state.commentToDelete;
- this.props.commentContainer.deleteComment(comment)
- .then(() => {
- this.closeDeleteConfirmModal();
- })
- .catch((err) => {
- this.setState({ errorMessageForDeleting: err.message });
- });
- }
- showDeleteConfirmModal() {
- this.setState({ isDeleteConfirmModalShown: true });
- }
- closeDeleteConfirmModal() {
- this.setState({
- commentToDelete: undefined,
- isDeleteConfirmModalShown: false,
- errorMessageForDeleting: undefined,
- });
- }
- replyButtonClickedHandler(commentId) {
- const ids = this.state.showEditorIds.add(commentId);
- this.setState({ showEditorIds: ids });
- }
- commentButtonClickedHandler(commentId) {
- this.setState((prevState) => {
- prevState.showEditorIds.delete(commentId);
- return {
- showEditorIds: prevState.showEditorIds,
- };
- });
- }
- // adds replies to specific comment object
- addRepliesToComments(comment, replies) {
- const replyList = [];
- replies.forEach((reply) => {
- if (reply.replyTo === comment._id) {
- replyList.push(reply);
- }
- });
- return replyList;
- }
- /**
- * generate Elements of Comment
- *
- * @param {any} comments Array of Comment Model Obj
- *
- * @memberOf PageComments
- */
- generateCommentElements(comments, replies) {
- return comments.map((comment) => {
- const commentId = comment._id;
- const showEditor = this.state.showEditorIds.has(commentId);
- const username = this.props.appContainer.me;
- const replyList = this.addRepliesToComments(comment, replies);
- return (
- <div key={commentId}>
- <Comment
- comment={comment}
- deleteBtnClicked={this.confirmToDeleteComment}
- growiRenderer={this.growiRenderer}
- replyList={replyList}
- />
- <div className="container-fluid">
- <div className="row">
- <div className="col-xs-offset-1 col-xs-11 col-sm-offset-1 col-sm-11 col-md-offset-1 col-md-11 col-lg-offset-1 col-lg-11">
- { !showEditor && (
- <div>
- { username
- && (
- <div className="col-xs-offset-6 col-sm-offset-6 col-md-offset-6 col-lg-offset-6">
- <Button
- bsStyle="primary"
- className="fcbtn btn btn-outline btn-rounded btn-xxs"
- onClick={() => { return this.replyButtonClickedHandler(commentId) }}
- >
- Reply <i className="fa fa-mail-reply"></i>
- </Button>
- </div>
- )
- }
- </div>
- )}
- { showEditor && (
- <CommentEditor
- growiRenderer={this.growiRenderer}
- replyTo={commentId}
- commentButtonClickedHandler={this.commentButtonClickedHandler}
- />
- )}
- </div>
- </div>
- </div>
- <br />
- </div>
- );
- });
- }
- render() {
- const currentComments = [];
- const currentReplies = [];
- let comments = this.props.commentContainer.state.comments;
- if (this.state.isLayoutTypeGrowi) {
- // replace with asc order array
- comments = comments.slice().reverse(); // non-destructive reverse
- }
- comments.forEach((comment) => {
- if (comment.replyTo === undefined) {
- // comment is not a reply
- currentComments.push(comment);
- }
- else {
- // comment is a reply
- currentReplies.push(comment);
- }
- });
- // generate elements
- const currentElements = this.generateCommentElements(currentComments, currentReplies);
- // generate blocks
- const currentBlock = (
- <div className="page-comments-list-current" id="page-comments-list-current">
- {currentElements}
- </div>
- );
- // layout blocks
- const commentsElements = (<div>{currentBlock}</div>);
- return (
- <div>
- {commentsElements}
- <DeleteCommentModal
- isShown={this.state.isDeleteConfirmModalShown}
- comment={this.state.commentToDelete}
- errorMessage={this.state.errorMessageForDeleting}
- cancel={this.closeDeleteConfirmModal}
- confirmedToDelete={this.deleteComment}
- />
- </div>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const PageCommentsWrapper = (props) => {
- return createSubscribedElement(PageComments, props, [AppContainer, PageContainer, CommentContainer]);
- };
- PageComments.propTypes = {
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- pageContainer: PropTypes.instanceOf(PageContainer).isRequired,
- commentContainer: PropTypes.instanceOf(CommentContainer).isRequired,
- };
- export default withTranslation()(PageCommentsWrapper);
|