mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { Action } from 'redux';
|
|
import { ThunkAction } from 'redux-thunk';
|
|
import { State } from '../reducers/rootReducer';
|
|
|
|
export const CHANGE_POST_STATUS_SUCCESS = 'CHANGE_POST_STATUS_SUCCESS';
|
|
export interface ChangePostStatusSuccessAction {
|
|
type: typeof CHANGE_POST_STATUS_SUCCESS;
|
|
newPostStatusId: number;
|
|
}
|
|
|
|
const changePostStatusSuccess = (newPostStatusId: number): ChangePostStatusSuccessAction => ({
|
|
type: CHANGE_POST_STATUS_SUCCESS,
|
|
newPostStatusId,
|
|
});
|
|
|
|
export const changePostStatus = (
|
|
postId: number,
|
|
newPostStatusId: number,
|
|
authenticityToken: string,
|
|
): ThunkAction<void, State, null, Action<string>> => async (dispatch) => {
|
|
try {
|
|
const response = await fetch(`/posts/${postId}`, {
|
|
method: 'PATCH',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
'X-CSRF-Token': authenticityToken,
|
|
},
|
|
body: JSON.stringify({
|
|
post: {
|
|
post_status_id: newPostStatusId,
|
|
},
|
|
})
|
|
});
|
|
|
|
if (response.status === 204) {
|
|
dispatch(changePostStatusSuccess(newPostStatusId));
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
}
|
|
} |