mattermost-redux
Version:
Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client
25 lines (24 loc) • 1.39 kB
JavaScript
;
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
Object.defineProperty(exports, "__esModule", { value: true });
const redux_1 = require("redux");
const action_types_1 = require("mattermost-redux/action_types");
const helpers_1 = require("./helpers");
function createPost(state = (0, helpers_1.initialRequestState)(), action) {
if (action.type === action_types_1.PostTypes.CREATE_POST_RESET_REQUEST) {
return (0, helpers_1.initialRequestState)();
}
return (0, helpers_1.handleRequest)(action_types_1.PostTypes.CREATE_POST_REQUEST, action_types_1.PostTypes.CREATE_POST_SUCCESS, action_types_1.PostTypes.CREATE_POST_FAILURE, state, action);
}
function editPost(state = (0, helpers_1.initialRequestState)(), action) {
return (0, helpers_1.handleRequest)(action_types_1.PostTypes.EDIT_POST_REQUEST, action_types_1.PostTypes.EDIT_POST_SUCCESS, action_types_1.PostTypes.EDIT_POST_FAILURE, state, action);
}
function getPostThread(state = (0, helpers_1.initialRequestState)(), action) {
return (0, helpers_1.handleRequest)(action_types_1.PostTypes.GET_POST_THREAD_REQUEST, action_types_1.PostTypes.GET_POST_THREAD_SUCCESS, action_types_1.PostTypes.GET_POST_THREAD_FAILURE, state, action);
}
exports.default = (0, redux_1.combineReducers)({
createPost,
editPost,
getPostThread,
});