mattermost-redux
Version:
Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client
48 lines (42 loc) • 1.54 kB
text/typescript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {combineReducers} from 'redux';
import {PostTypes} from 'action_types';
import {handleRequest, initialRequestState} from './helpers';
import {GenericAction} from 'types/actions';
import {PostsRequestsStatuses, RequestStatusType} from 'types/requests';
function createPost(state: RequestStatusType = initialRequestState(), action: GenericAction): RequestStatusType {
if (action.type === PostTypes.CREATE_POST_RESET_REQUEST) {
return initialRequestState();
}
return handleRequest(
PostTypes.CREATE_POST_REQUEST,
PostTypes.CREATE_POST_SUCCESS,
PostTypes.CREATE_POST_FAILURE,
state,
action,
);
}
function editPost(state: RequestStatusType = initialRequestState(), action: GenericAction): RequestStatusType {
return handleRequest(
PostTypes.EDIT_POST_REQUEST,
PostTypes.EDIT_POST_SUCCESS,
PostTypes.EDIT_POST_FAILURE,
state,
action,
);
}
function getPostThread(state: RequestStatusType = initialRequestState(), action: GenericAction): RequestStatusType {
return handleRequest(
PostTypes.GET_POST_THREAD_REQUEST,
PostTypes.GET_POST_THREAD_SUCCESS,
PostTypes.GET_POST_THREAD_FAILURE,
state,
action,
);
}
export default (combineReducers({
createPost,
editPost,
getPostThread,
}) as (b: PostsRequestsStatuses, a: GenericAction) => PostsRequestsStatuses);