mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
Improve comment components and its reducers
This commit is contained in:
@@ -4,7 +4,7 @@ import NewComment from './NewComment';
|
|||||||
import Separator from '../shared/Separator';
|
import Separator from '../shared/Separator';
|
||||||
import { MutedText } from '../shared/CustomTexts';
|
import { MutedText } from '../shared/CustomTexts';
|
||||||
|
|
||||||
import { CommentRepliesState } from '../../reducers/commentRepliesReducer';
|
import { ReplyFormState } from '../../reducers/replyFormReducer';
|
||||||
|
|
||||||
import friendlyDate from '../../helpers/friendlyDate';
|
import friendlyDate from '../../helpers/friendlyDate';
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@ interface Props {
|
|||||||
userFullName: string;
|
userFullName: string;
|
||||||
updatedAt: string;
|
updatedAt: string;
|
||||||
|
|
||||||
reply: CommentRepliesState;
|
replyForm: ReplyFormState;
|
||||||
handleToggleCommentReply(): void;
|
handleToggleCommentReply(): void;
|
||||||
handleCommentReplyBodyChange(e: React.FormEvent): void;
|
handleCommentReplyBodyChange(e: React.FormEvent): void;
|
||||||
handleSubmitComment(body: string, parentId: number): void;
|
handleSubmitComment(body: string, parentId: number): void;
|
||||||
@@ -29,7 +29,7 @@ const Comment = ({
|
|||||||
userFullName,
|
userFullName,
|
||||||
updatedAt,
|
updatedAt,
|
||||||
|
|
||||||
reply,
|
replyForm,
|
||||||
handleToggleCommentReply,
|
handleToggleCommentReply,
|
||||||
handleCommentReplyBodyChange,
|
handleCommentReplyBodyChange,
|
||||||
handleSubmitComment,
|
handleSubmitComment,
|
||||||
@@ -44,7 +44,7 @@ const Comment = ({
|
|||||||
<p className="commentBody">{body}</p>
|
<p className="commentBody">{body}</p>
|
||||||
<div className="commentFooter">
|
<div className="commentFooter">
|
||||||
<a className="commentReplyButton" onClick={handleToggleCommentReply}>
|
<a className="commentReplyButton" onClick={handleToggleCommentReply}>
|
||||||
{ reply.isOpen ? 'Cancel' : 'Reply' }
|
{ replyForm.isOpen ? 'Cancel' : 'Reply' }
|
||||||
</a>
|
</a>
|
||||||
{
|
{
|
||||||
isPowerUser ?
|
isPowerUser ?
|
||||||
@@ -59,11 +59,12 @@ const Comment = ({
|
|||||||
<MutedText>{friendlyDate(updatedAt)}</MutedText>
|
<MutedText>{friendlyDate(updatedAt)}</MutedText>
|
||||||
</div>
|
</div>
|
||||||
{
|
{
|
||||||
reply.isOpen ?
|
replyForm.isOpen ?
|
||||||
<NewComment
|
<NewComment
|
||||||
body={reply.body}
|
body={replyForm.body}
|
||||||
parentId={id}
|
parentId={id}
|
||||||
isSubmitting={reply.isSubmitting}
|
isSubmitting={replyForm.isSubmitting}
|
||||||
|
error={replyForm.error}
|
||||||
handleChange={handleCommentReplyBodyChange}
|
handleChange={handleCommentReplyBodyChange}
|
||||||
handleSubmit={handleSubmitComment}
|
handleSubmit={handleSubmitComment}
|
||||||
|
|
||||||
|
|||||||
@@ -3,11 +3,11 @@ import * as React from 'react';
|
|||||||
import Comment from './Comment';
|
import Comment from './Comment';
|
||||||
|
|
||||||
import IComment from '../../interfaces/IComment';
|
import IComment from '../../interfaces/IComment';
|
||||||
import { CommentRepliesState } from '../../reducers/commentRepliesReducer';
|
import { ReplyFormState } from '../../reducers/replyFormReducer';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
comments: Array<IComment>;
|
comments: Array<IComment>;
|
||||||
replies: Array<CommentRepliesState>;
|
replyForms: Array<ReplyFormState>;
|
||||||
parentId: number;
|
parentId: number;
|
||||||
level: number;
|
level: number;
|
||||||
|
|
||||||
@@ -21,7 +21,7 @@ interface Props {
|
|||||||
|
|
||||||
const CommentList = ({
|
const CommentList = ({
|
||||||
comments,
|
comments,
|
||||||
replies,
|
replyForms,
|
||||||
parentId,
|
parentId,
|
||||||
level,
|
level,
|
||||||
|
|
||||||
@@ -38,7 +38,7 @@ const CommentList = ({
|
|||||||
return (
|
return (
|
||||||
<div className="commentList" key={i}>
|
<div className="commentList" key={i}>
|
||||||
<Comment
|
<Comment
|
||||||
reply={replies.find(reply => reply.commentId === comment.id)}
|
replyForm={replyForms.find(replyForm => replyForm.commentId === comment.id)}
|
||||||
handleToggleCommentReply={() => toggleCommentReply(comment.id)}
|
handleToggleCommentReply={() => toggleCommentReply(comment.id)}
|
||||||
handleCommentReplyBodyChange={
|
handleCommentReplyBodyChange={
|
||||||
(e: React.FormEvent) => (
|
(e: React.FormEvent) => (
|
||||||
@@ -54,7 +54,7 @@ const CommentList = ({
|
|||||||
|
|
||||||
<CommentList
|
<CommentList
|
||||||
comments={comments}
|
comments={comments}
|
||||||
replies={replies}
|
replyForms={replyForms}
|
||||||
parentId={comment.id}
|
parentId={comment.id}
|
||||||
level={level+1}
|
level={level+1}
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import Spinner from '../shared/Spinner';
|
|||||||
import { DangerText } from '../shared/CustomTexts';
|
import { DangerText } from '../shared/CustomTexts';
|
||||||
|
|
||||||
import IComment from '../../interfaces/IComment';
|
import IComment from '../../interfaces/IComment';
|
||||||
import { CommentRepliesState } from '../../reducers/commentRepliesReducer';
|
import { ReplyFormState } from '../../reducers/replyFormReducer';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
postId: number;
|
postId: number;
|
||||||
@@ -15,7 +15,7 @@ interface Props {
|
|||||||
authenticityToken: string;
|
authenticityToken: string;
|
||||||
|
|
||||||
comments: Array<IComment>;
|
comments: Array<IComment>;
|
||||||
replies: Array<CommentRepliesState>;
|
replyForms: Array<ReplyFormState>;
|
||||||
areLoading: boolean;
|
areLoading: boolean;
|
||||||
error: string;
|
error: string;
|
||||||
|
|
||||||
@@ -50,7 +50,7 @@ class CommentsP extends React.Component<Props> {
|
|||||||
isPowerUser,
|
isPowerUser,
|
||||||
|
|
||||||
comments,
|
comments,
|
||||||
replies,
|
replyForms,
|
||||||
areLoading,
|
areLoading,
|
||||||
error,
|
error,
|
||||||
|
|
||||||
@@ -58,7 +58,7 @@ class CommentsP extends React.Component<Props> {
|
|||||||
setCommentReplyBody,
|
setCommentReplyBody,
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
const postReply = replies.find(reply => reply.commentId === -1);
|
const postReply = replyForms.find(replyForm => replyForm.commentId === null);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="commentsContainer">
|
<div className="commentsContainer">
|
||||||
@@ -66,9 +66,10 @@ class CommentsP extends React.Component<Props> {
|
|||||||
body={postReply && postReply.body}
|
body={postReply && postReply.body}
|
||||||
parentId={null}
|
parentId={null}
|
||||||
isSubmitting={postReply && postReply.isSubmitting}
|
isSubmitting={postReply && postReply.isSubmitting}
|
||||||
|
error={postReply && postReply.error}
|
||||||
handleChange={
|
handleChange={
|
||||||
(e: React.FormEvent) => (
|
(e: React.FormEvent) => (
|
||||||
setCommentReplyBody(-1, (e.target as HTMLTextAreaElement).value)
|
setCommentReplyBody(null, (e.target as HTMLTextAreaElement).value)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
handleSubmit={this._handleSubmitComment}
|
handleSubmit={this._handleSubmitComment}
|
||||||
@@ -79,13 +80,13 @@ class CommentsP extends React.Component<Props> {
|
|||||||
{ areLoading ? <Spinner /> : null }
|
{ areLoading ? <Spinner /> : null }
|
||||||
{ error ? <DangerText>{error}</DangerText> : null }
|
{ error ? <DangerText>{error}</DangerText> : null }
|
||||||
|
|
||||||
<span className="commentsTitle">
|
<div className="commentsTitle">
|
||||||
activity • {comments.length} comments
|
activity • {comments.length} comments
|
||||||
</span>
|
</div>
|
||||||
|
|
||||||
<CommentList
|
<CommentList
|
||||||
comments={comments}
|
comments={comments}
|
||||||
replies={replies}
|
replyForms={replyForms}
|
||||||
toggleCommentReply={toggleCommentReply}
|
toggleCommentReply={toggleCommentReply}
|
||||||
setCommentReplyBody={setCommentReplyBody}
|
setCommentReplyBody={setCommentReplyBody}
|
||||||
handleSubmitComment={this._handleSubmitComment}
|
handleSubmitComment={this._handleSubmitComment}
|
||||||
|
|||||||
@@ -2,11 +2,13 @@ import * as React from 'react';
|
|||||||
|
|
||||||
import Button from '../shared/Button';
|
import Button from '../shared/Button';
|
||||||
import Spinner from '../shared/Spinner';
|
import Spinner from '../shared/Spinner';
|
||||||
|
import { DangerText } from '../shared/CustomTexts';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
body: string;
|
body: string;
|
||||||
parentId: number;
|
parentId: number;
|
||||||
isSubmitting: boolean;
|
isSubmitting: boolean;
|
||||||
|
error: string;
|
||||||
handleChange(e: React.FormEvent): void;
|
handleChange(e: React.FormEvent): void;
|
||||||
handleSubmit(body: string, parentId: number): void;
|
handleSubmit(body: string, parentId: number): void;
|
||||||
|
|
||||||
@@ -17,11 +19,13 @@ const NewComment = ({
|
|||||||
body,
|
body,
|
||||||
parentId,
|
parentId,
|
||||||
isSubmitting,
|
isSubmitting,
|
||||||
|
error,
|
||||||
handleChange,
|
handleChange,
|
||||||
handleSubmit,
|
handleSubmit,
|
||||||
|
|
||||||
isLoggedIn,
|
isLoggedIn,
|
||||||
}: Props) => (
|
}: Props) => (
|
||||||
|
<React.Fragment>
|
||||||
<div className="newCommentForm">
|
<div className="newCommentForm">
|
||||||
{
|
{
|
||||||
isLoggedIn ?
|
isLoggedIn ?
|
||||||
@@ -43,6 +47,8 @@ const NewComment = ({
|
|||||||
<a href="/users/sign_in" className="loginInfo">You need to log in to post comments.</a>
|
<a href="/users/sign_in" className="loginInfo">You need to log in to post comments.</a>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
{ error ? <DangerText>{error}</DangerText> : null }
|
||||||
|
</React.Fragment>
|
||||||
);
|
);
|
||||||
|
|
||||||
export default NewComment;
|
export default NewComment;
|
||||||
@@ -13,7 +13,7 @@ import CommentsP from '../components/Comments/CommentsP';
|
|||||||
|
|
||||||
const mapStateToProps = (state: State) => ({
|
const mapStateToProps = (state: State) => ({
|
||||||
comments: state.currentPost.comments.items,
|
comments: state.currentPost.comments.items,
|
||||||
replies: state.currentPost.comments.replies,
|
replyForms: state.currentPost.comments.replyForms,
|
||||||
areLoading: state.currentPost.comments.areLoading,
|
areLoading: state.currentPost.comments.areLoading,
|
||||||
error: state.currentPost.comments.error,
|
error: state.currentPost.comments.error,
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -21,22 +21,23 @@ import {
|
|||||||
} from '../actions/submitComment';
|
} from '../actions/submitComment';
|
||||||
|
|
||||||
import commentReducer from './commentReducer';
|
import commentReducer from './commentReducer';
|
||||||
import commentRepliesReducer from './commentRepliesReducer';
|
import replyFormsReducer from './replyFormsReducer';
|
||||||
|
|
||||||
|
import { ReplyFormState } from './replyFormReducer';
|
||||||
|
|
||||||
import IComment from '../interfaces/IComment';
|
import IComment from '../interfaces/IComment';
|
||||||
import ICommentJSON from '../interfaces/json/IComment';
|
import ICommentJSON from '../interfaces/json/IComment';
|
||||||
import { CommentRepliesState } from './commentRepliesReducer';
|
|
||||||
|
|
||||||
export interface CommentsState {
|
export interface CommentsState {
|
||||||
items: Array<IComment>;
|
items: Array<IComment>;
|
||||||
replies: Array<CommentRepliesState>;
|
replyForms: Array<ReplyFormState>;
|
||||||
areLoading: boolean;
|
areLoading: boolean;
|
||||||
error: string;
|
error: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const initialState: CommentsState = {
|
const initialState: CommentsState = {
|
||||||
items: [],
|
items: [],
|
||||||
replies: [],
|
replyForms: [],
|
||||||
areLoading: false,
|
areLoading: false,
|
||||||
error: '',
|
error: '',
|
||||||
};
|
};
|
||||||
@@ -61,10 +62,7 @@ const commentsReducer = (
|
|||||||
items: action.comments.map(
|
items: action.comments.map(
|
||||||
(comment: ICommentJSON) => commentReducer(undefined, commentRequestSuccess(comment))
|
(comment: ICommentJSON) => commentReducer(undefined, commentRequestSuccess(comment))
|
||||||
),
|
),
|
||||||
replies: [commentRepliesReducer(undefined, {type: 'COMMENT_REQUEST_SUCCESS', comment: { id: -1 } as ICommentJSON }),
|
replyForms: replyFormsReducer(state.replyForms, action),
|
||||||
...action.comments.map(
|
|
||||||
(comment: ICommentJSON) => commentRepliesReducer(undefined, commentRequestSuccess(comment))
|
|
||||||
)],
|
|
||||||
areLoading: false,
|
areLoading: false,
|
||||||
error: '',
|
error: '',
|
||||||
};
|
};
|
||||||
@@ -80,45 +78,21 @@ const commentsReducer = (
|
|||||||
case SET_COMMENT_REPLY_BODY:
|
case SET_COMMENT_REPLY_BODY:
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
replies: state.replies.map(
|
replyForms: replyFormsReducer(state.replyForms, action),
|
||||||
reply => (
|
|
||||||
reply.commentId === action.commentId ?
|
|
||||||
commentRepliesReducer(reply, action)
|
|
||||||
:
|
|
||||||
reply
|
|
||||||
)
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
|
|
||||||
case COMMENT_SUBMIT_START:
|
case COMMENT_SUBMIT_START:
|
||||||
case COMMENT_SUBMIT_FAILURE:
|
case COMMENT_SUBMIT_FAILURE:
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
replies: state.replies.map(
|
replyForms: replyFormsReducer(state.replyForms, action),
|
||||||
reply => (
|
|
||||||
reply.commentId === action.parentId ?
|
|
||||||
commentRepliesReducer(reply, action)
|
|
||||||
:
|
|
||||||
reply
|
|
||||||
)
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
|
|
||||||
case COMMENT_SUBMIT_SUCCESS:
|
case COMMENT_SUBMIT_SUCCESS:
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
items: [commentReducer(undefined, commentRequestSuccess(action.comment)), ...state.items],
|
items: [commentReducer(undefined, commentRequestSuccess(action.comment)), ...state.items],
|
||||||
replies: [
|
replyForms: replyFormsReducer(state.replyForms, action),
|
||||||
...state.replies.map(
|
|
||||||
reply => (
|
|
||||||
reply.commentId === action.comment.parent_id ?
|
|
||||||
commentRepliesReducer(reply, action)
|
|
||||||
:
|
|
||||||
reply
|
|
||||||
)
|
|
||||||
),
|
|
||||||
commentRepliesReducer(undefined, commentRequestSuccess(action.comment)),
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import {
|
|||||||
COMMENT_SUBMIT_FAILURE,
|
COMMENT_SUBMIT_FAILURE,
|
||||||
} from '../actions/submitComment';
|
} from '../actions/submitComment';
|
||||||
|
|
||||||
export interface CommentRepliesState {
|
export interface ReplyFormState {
|
||||||
commentId: number;
|
commentId: number;
|
||||||
isOpen: boolean;
|
isOpen: boolean;
|
||||||
body: string;
|
body: string;
|
||||||
@@ -24,7 +24,7 @@ export interface CommentRepliesState {
|
|||||||
error: string;
|
error: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const initialState: CommentRepliesState = {
|
const initialState: ReplyFormState = {
|
||||||
commentId: undefined,
|
commentId: undefined,
|
||||||
isOpen: false,
|
isOpen: false,
|
||||||
body: '',
|
body: '',
|
||||||
@@ -32,7 +32,7 @@ const initialState: CommentRepliesState = {
|
|||||||
error: '',
|
error: '',
|
||||||
}
|
}
|
||||||
|
|
||||||
const commentRepliesReducer = (
|
const replyFormReducer = (
|
||||||
state = initialState,
|
state = initialState,
|
||||||
action:
|
action:
|
||||||
CommentRequestSuccessAction |
|
CommentRequestSuccessAction |
|
||||||
@@ -77,6 +77,7 @@ const commentRepliesReducer = (
|
|||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
error: action.error,
|
error: action.error,
|
||||||
|
isSubmitting: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@@ -84,4 +85,4 @@ const commentRepliesReducer = (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default commentRepliesReducer;
|
export default replyFormReducer;
|
||||||
88
app/javascript/reducers/replyFormsReducer.ts
Normal file
88
app/javascript/reducers/replyFormsReducer.ts
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
import {
|
||||||
|
CommentsRequestActionTypes,
|
||||||
|
COMMENTS_REQUEST_SUCCESS,
|
||||||
|
} from '../actions/requestComments';
|
||||||
|
|
||||||
|
import { commentRequestSuccess } from '../actions/requestComment';
|
||||||
|
|
||||||
|
import {
|
||||||
|
HandleCommentRepliesType,
|
||||||
|
TOGGLE_COMMENT_REPLY,
|
||||||
|
SET_COMMENT_REPLY_BODY,
|
||||||
|
} from '../actions/handleCommentReplies';
|
||||||
|
|
||||||
|
import {
|
||||||
|
CommentSubmitActionTypes,
|
||||||
|
COMMENT_SUBMIT_START,
|
||||||
|
COMMENT_SUBMIT_SUCCESS,
|
||||||
|
COMMENT_SUBMIT_FAILURE,
|
||||||
|
} from '../actions/submitComment';
|
||||||
|
|
||||||
|
|
||||||
|
import replyFormReducer, { ReplyFormState } from './replyFormReducer';
|
||||||
|
|
||||||
|
import ICommentJSON from '../interfaces/json/IComment';
|
||||||
|
|
||||||
|
const initialState: Array<ReplyFormState> = [];
|
||||||
|
|
||||||
|
const ReplyFormsReducer = (
|
||||||
|
state = initialState,
|
||||||
|
action:
|
||||||
|
CommentsRequestActionTypes |
|
||||||
|
HandleCommentRepliesType |
|
||||||
|
CommentSubmitActionTypes
|
||||||
|
): Array<ReplyFormState> => {
|
||||||
|
switch (action.type) {
|
||||||
|
case COMMENTS_REQUEST_SUCCESS:
|
||||||
|
return ([
|
||||||
|
...action.comments.map(
|
||||||
|
(comment: ICommentJSON) => replyFormReducer(undefined, commentRequestSuccess(comment))
|
||||||
|
),
|
||||||
|
replyFormReducer(undefined, commentRequestSuccess({ id: null } as ICommentJSON)),
|
||||||
|
]);
|
||||||
|
|
||||||
|
case TOGGLE_COMMENT_REPLY:
|
||||||
|
case SET_COMMENT_REPLY_BODY:
|
||||||
|
return (
|
||||||
|
state.map(
|
||||||
|
replyForm => (
|
||||||
|
replyForm.commentId === action.commentId ?
|
||||||
|
replyFormReducer(replyForm, action)
|
||||||
|
:
|
||||||
|
replyForm
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
case COMMENT_SUBMIT_START:
|
||||||
|
case COMMENT_SUBMIT_FAILURE:
|
||||||
|
return (
|
||||||
|
state.map(
|
||||||
|
replyForm => (
|
||||||
|
replyForm.commentId === action.parentId ?
|
||||||
|
replyFormReducer(replyForm, action)
|
||||||
|
:
|
||||||
|
replyForm
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
case COMMENT_SUBMIT_SUCCESS:
|
||||||
|
return ([
|
||||||
|
...state.map(
|
||||||
|
replyForm => (
|
||||||
|
replyForm.commentId === action.comment.parent_id ?
|
||||||
|
replyFormReducer(replyForm, action)
|
||||||
|
:
|
||||||
|
replyForm
|
||||||
|
)
|
||||||
|
),
|
||||||
|
replyFormReducer(undefined, commentRequestSuccess(action.comment)),
|
||||||
|
]);
|
||||||
|
|
||||||
|
default:
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ReplyFormsReducer;
|
||||||
Reference in New Issue
Block a user