mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 07:39:44 +02:00
76 lines
1.4 KiB
JavaScript
76 lines
1.4 KiB
JavaScript
|
import ActionTypes from '../constants/ActionTypes';
|
||
|
|
||
|
const createCommentActivity = (activity) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_CREATE,
|
||
|
payload: {
|
||
|
activity,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
createCommentActivity.success = (localId, activity) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_CREATE__SUCCESS,
|
||
|
payload: {
|
||
|
localId,
|
||
|
activity,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
createCommentActivity.failure = (localId, error) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_CREATE__FAILURE,
|
||
|
payload: {
|
||
|
localId,
|
||
|
error,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const updateCommentActivity = (id, data) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_UPDATE,
|
||
|
payload: {
|
||
|
id,
|
||
|
data,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
updateCommentActivity.success = (activity) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_UPDATE__SUCCESS,
|
||
|
payload: {
|
||
|
activity,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
updateCommentActivity.failure = (id, error) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_UPDATE__FAILURE,
|
||
|
payload: {
|
||
|
id,
|
||
|
error,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const deleteCommentActivity = (id) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_DELETE,
|
||
|
payload: {
|
||
|
id,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
deleteCommentActivity.success = (activity) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_DELETE__SUCCESS,
|
||
|
payload: {
|
||
|
activity,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
deleteCommentActivity.failure = (id, error) => ({
|
||
|
type: ActionTypes.COMMENT_ACTIVITY_DELETE__FAILURE,
|
||
|
payload: {
|
||
|
id,
|
||
|
error,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default {
|
||
|
createCommentActivity,
|
||
|
updateCommentActivity,
|
||
|
deleteCommentActivity,
|
||
|
};
|