UNPKG

mattermost-redux

Version:

Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client

26 lines (25 loc) 1.6 kB
"use strict"; // 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 myChannels(state = (0, helpers_1.initialRequestState)(), action) { return (0, helpers_1.handleRequest)(action_types_1.ChannelTypes.CHANNELS_REQUEST, action_types_1.ChannelTypes.CHANNELS_SUCCESS, action_types_1.ChannelTypes.CHANNELS_FAILURE, state, action); } function createChannel(state = (0, helpers_1.initialRequestState)(), action) { return (0, helpers_1.handleRequest)(action_types_1.ChannelTypes.CREATE_CHANNEL_REQUEST, action_types_1.ChannelTypes.CREATE_CHANNEL_SUCCESS, action_types_1.ChannelTypes.CREATE_CHANNEL_FAILURE, state, action); } function getChannels(state = (0, helpers_1.initialRequestState)(), action) { return (0, helpers_1.handleRequest)(action_types_1.ChannelTypes.GET_CHANNELS_REQUEST, action_types_1.ChannelTypes.GET_CHANNELS_SUCCESS, action_types_1.ChannelTypes.GET_CHANNELS_FAILURE, state, action); } function getAllChannels(state = (0, helpers_1.initialRequestState)(), action) { return (0, helpers_1.handleRequest)(action_types_1.ChannelTypes.GET_ALL_CHANNELS_REQUEST, action_types_1.ChannelTypes.GET_ALL_CHANNELS_SUCCESS, action_types_1.ChannelTypes.GET_ALL_CHANNELS_FAILURE, state, action); } exports.default = (0, redux_1.combineReducers)({ getChannels, getAllChannels, myChannels, createChannel, });