2019-09-18 13:40:00 +02:00
|
|
|
import { Action } from 'redux';
|
|
|
|
|
import { ThunkAction } from 'redux-thunk';
|
|
|
|
|
import { State } from '../reducers/rootReducer';
|
|
|
|
|
|
|
|
|
|
import ICommentJSON from '../interfaces/json/IComment';
|
2022-04-09 10:45:43 +02:00
|
|
|
import buildRequestHeaders from '../helpers/buildRequestHeaders';
|
2019-09-18 13:40:00 +02:00
|
|
|
|
|
|
|
|
export const COMMENT_SUBMIT_START = 'COMMENT_SUBMIT_START';
|
|
|
|
|
interface CommentSubmitStartAction {
|
|
|
|
|
type: typeof COMMENT_SUBMIT_START;
|
|
|
|
|
parentId: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const COMMENT_SUBMIT_SUCCESS = 'COMMENT_SUBMIT_SUCCESS';
|
|
|
|
|
interface CommentSubmitSuccessAction {
|
|
|
|
|
type: typeof COMMENT_SUBMIT_SUCCESS;
|
|
|
|
|
comment: ICommentJSON;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const COMMENT_SUBMIT_FAILURE = 'COMMENT_SUBMIT_FAILURE';
|
|
|
|
|
interface CommentSubmitFailureAction {
|
|
|
|
|
type: typeof COMMENT_SUBMIT_FAILURE;
|
|
|
|
|
parentId: number;
|
|
|
|
|
error: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type CommentSubmitActionTypes =
|
|
|
|
|
CommentSubmitStartAction |
|
|
|
|
|
CommentSubmitSuccessAction |
|
|
|
|
|
CommentSubmitFailureAction;
|
|
|
|
|
|
2019-09-26 16:03:41 +02:00
|
|
|
const commentSubmitStart = (parentId: number): CommentSubmitStartAction => ({
|
2019-09-18 13:40:00 +02:00
|
|
|
type: COMMENT_SUBMIT_START,
|
|
|
|
|
parentId,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const commentSubmitSuccess = (
|
|
|
|
|
commentJSON: ICommentJSON,
|
|
|
|
|
): CommentSubmitSuccessAction => ({
|
|
|
|
|
type: COMMENT_SUBMIT_SUCCESS,
|
|
|
|
|
comment: commentJSON,
|
|
|
|
|
});
|
|
|
|
|
|
2019-09-26 16:03:41 +02:00
|
|
|
const commentSubmitFailure = (parentId: number, error: string): CommentSubmitFailureAction => ({
|
2019-09-18 13:40:00 +02:00
|
|
|
type: COMMENT_SUBMIT_FAILURE,
|
|
|
|
|
parentId,
|
|
|
|
|
error,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const submitComment = (
|
2019-09-26 16:03:41 +02:00
|
|
|
postId: number,
|
|
|
|
|
body: string,
|
|
|
|
|
parentId: number,
|
|
|
|
|
authenticityToken: string,
|
2019-09-18 13:40:00 +02:00
|
|
|
): ThunkAction<void, State, null, Action<string>> => async (dispatch) => {
|
|
|
|
|
dispatch(commentSubmitStart(parentId));
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const res = await fetch(`/posts/${postId}/comments`, {
|
|
|
|
|
method: 'POST',
|
2022-04-09 10:45:43 +02:00
|
|
|
headers: buildRequestHeaders(authenticityToken),
|
2019-09-18 13:40:00 +02:00
|
|
|
body: JSON.stringify({
|
|
|
|
|
comment: {
|
|
|
|
|
body,
|
|
|
|
|
parent_id: parentId,
|
|
|
|
|
},
|
|
|
|
|
}),
|
|
|
|
|
});
|
|
|
|
|
const json = await res.json();
|
|
|
|
|
|
|
|
|
|
if (res.status === 201) {
|
|
|
|
|
dispatch(commentSubmitSuccess(json));
|
|
|
|
|
} else {
|
|
|
|
|
dispatch(commentSubmitFailure(parentId, json.error));
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
dispatch(commentSubmitFailure(parentId, e));
|
|
|
|
|
}
|
|
|
|
|
}
|