| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- /* eslint-disable react/no-multi-comp */
- /* eslint-disable react/no-access-state-in-setstate */
- import React from 'react';
- import PropTypes from 'prop-types';
- import { Subscribe } from 'unstated';
- import { withTranslation } from 'react-i18next';
- import GrowiRenderer from '../util/GrowiRenderer';
- import CommentContainer from './PageComment/CommentContainer';
- import CommentEditor from './PageComment/CommentEditor';
- import Comment from './PageComment/Comment';
- import DeleteCommentModal from './PageComment/DeleteCommentModal';
- /**
- * 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 = new GrowiRenderer(this.props.crowi, this.props.crowiOriginRenderer, { mode: '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);
- }
- componentWillMount() {
- this.init();
- }
- init() {
- if (!this.props.pageId) {
- return;
- }
- const layoutType = this.props.crowi.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 });
- }
- // adds replies to specific comment object
- addRepliesToComments(comments, replies) {
- const commentsWithReplies = [];
- const commentsCopy = comments.slice();
- commentsCopy.forEach((comment) => {
- comment.replyList = [];
- replies.forEach((reply) => {
- if (reply.replyTo === comment._id) {
- comment.replyList.push(reply);
- }
- });
- commentsWithReplies.push(comment);
- });
- return commentsWithReplies;
- }
- // returns replies
- renderReplies(comment) {
- return comment.replyList.map((reply) => {
- return (
- <div key={reply._id} 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">
- <Comment
- comment={reply}
- deleteBtnClicked={this.confirmToDeleteComment}
- crowiRenderer={this.growiRenderer}
- onReplyButtonClicked={() => { this.replyButtonClickedHandler(reply._id) }}
- crowi={this.props.crowi}
- replyTo={comment._id}
- />
- </div>
- );
- });
- }
- /**
- * generate Elements of Comment
- *
- * @param {any} comments Array of Comment Model Obj
- *
- * @memberOf PageComments
- */
- generateCommentElements(comments, replies) {
- const commentsWithReplies = this.addRepliesToComments(comments, replies);
- return commentsWithReplies.map((comment) => {
- const commentId = comment._id;
- const showEditor = this.state.showEditorIds.has(commentId);
- return (
- <div key={commentId}>
- <Comment
- comment={comment}
- deleteBtnClicked={this.confirmToDeleteComment}
- crowiRenderer={this.growiRenderer}
- onReplyButtonClicked={() => { this.replyButtonClickedHandler(commentId) }}
- crowi={this.props.crowi}
- replyTo={undefined}
- />
- <div className="container-fluid">
- <div className="row">
- {this.renderReplies(comment)}
- <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 && (
- <CommentEditor
- crowi={this.props.crowi}
- crowiOriginRenderer={this.props.crowiOriginRenderer}
- editorOptions={this.props.editorOptions}
- slackChannels={this.props.slackChannels}
- replyTo={commentId}
- />
- )}
- </div>
- </div>
- </div>
- </div>
- );
- });
- }
- render() {
- const currentComments = [];
- const newerComments = [];
- const olderComments = [];
- const currentReplies = [];
- const newerReplies = [];
- const olderReplies = [];
- let comments = this.props.commentContainer.state.comments;
- if (this.state.isLayoutTypeGrowi) {
- // replace with asc order array
- comments = comments.slice().reverse(); // non-destructive reverse
- }
- // divide by revisionId and createdAt
- const revisionId = this.props.revisionId;
- const revisionCreatedAt = this.props.revisionCreatedAt;
- comments.forEach((comment) => {
- // comparing ObjectId
- // eslint-disable-next-line eqeqeq
- if (comment.replyTo === undefined) {
- // comment is not a reply
- if (comment.revision === revisionId) {
- currentComments.push(comment);
- }
- else if (Date.parse(comment.createdAt) / 1000 > revisionCreatedAt) {
- newerComments.push(comment);
- }
- else {
- olderComments.push(comment);
- }
- }
- else
- // comment is a reply
- if (comment.revision === revisionId) {
- currentReplies.push(comment);
- }
- else if (Date.parse(comment.createdAt) / 1000 > revisionCreatedAt) {
- newerReplies.push(comment);
- }
- else {
- olderReplies.push(comment);
- }
- });
- // generate elements
- const currentElements = this.generateCommentElements(currentComments, currentReplies);
- const newerElements = this.generateCommentElements(newerComments, newerReplies);
- const olderElements = this.generateCommentElements(olderComments, olderReplies);
- // generate blocks
- const currentBlock = (
- <div className="page-comments-list-current" id="page-comments-list-current">
- {currentElements}
- </div>
- );
- const newerBlock = (
- <div className="page-comments-list-newer collapse in" id="page-comments-list-newer">
- {newerElements}
- </div>
- );
- const olderBlock = (
- <div className="page-comments-list-older collapse in" id="page-comments-list-older">
- {olderElements}
- </div>
- );
- // generate toggle elements
- const iconForNewer = (this.state.isLayoutTypeGrowi)
- ? <i className="fa fa-angle-double-down"></i>
- : <i className="fa fa-angle-double-up"></i>;
- const toggleNewer = (newerElements.length === 0)
- ? <div></div>
- : (
- <a className="page-comments-list-toggle-newer text-center" data-toggle="collapse" href="#page-comments-list-newer">
- {iconForNewer} Comments for Newer Revision {iconForNewer}
- </a>
- );
- const iconForOlder = (this.state.isLayoutTypeGrowi)
- ? <i className="fa fa-angle-double-up"></i>
- : <i className="fa fa-angle-double-down"></i>;
- const toggleOlder = (olderElements.length === 0)
- ? <div></div>
- : (
- <a className="page-comments-list-toggle-older text-center" data-toggle="collapse" href="#page-comments-list-older">
- {iconForOlder} Comments for Older Revision {iconForOlder}
- </a>
- );
- // layout blocks
- const commentsElements = (this.state.isLayoutTypeGrowi)
- ? (
- <div>
- {olderBlock}
- {toggleOlder}
- {currentBlock}
- {toggleNewer}
- {newerBlock}
- </div>
- )
- : (
- <div>
- {newerBlock}
- {toggleNewer}
- {currentBlock}
- {toggleOlder}
- {olderBlock}
- </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
- */
- class PageCommentsWrapper extends React.Component {
- render() {
- return (
- <Subscribe to={[CommentContainer]}>
- { commentContainer => (
- // eslint-disable-next-line arrow-body-style
- <PageComments commentContainer={commentContainer} {...this.props} />
- )}
- </Subscribe>
- );
- }
- }
- PageCommentsWrapper.propTypes = {
- crowi: PropTypes.object.isRequired,
- crowiOriginRenderer: PropTypes.object.isRequired,
- pageId: PropTypes.string.isRequired,
- revisionId: PropTypes.string.isRequired,
- revisionCreatedAt: PropTypes.number,
- pagePath: PropTypes.string,
- editorOptions: PropTypes.object,
- slackChannels: PropTypes.string,
- };
- PageComments.propTypes = {
- commentContainer: PropTypes.object.isRequired,
- crowi: PropTypes.object.isRequired,
- crowiOriginRenderer: PropTypes.object.isRequired,
- pageId: PropTypes.string.isRequired,
- revisionId: PropTypes.string.isRequired,
- revisionCreatedAt: PropTypes.number,
- pagePath: PropTypes.string,
- editorOptions: PropTypes.object,
- slackChannels: PropTypes.string,
- };
- export default withTranslation(null, { withRef: true })(PageCommentsWrapper);
|