2016-11-20 18:39:18 +00:00
|
|
|
import { combineReducers } from 'redux-immutable';
|
2018-03-07 01:26:43 +00:00
|
|
|
import dropdown_menu from './dropdown_menu';
|
2016-11-20 18:39:18 +00:00
|
|
|
import timelines from './timelines';
|
|
|
|
import meta from './meta';
|
|
|
|
import alerts from './alerts';
|
2016-09-19 22:25:59 +01:00
|
|
|
import { loadingBarReducer } from 'react-redux-loading-bar';
|
2016-11-20 18:39:18 +00:00
|
|
|
import modal from './modal';
|
|
|
|
import user_lists from './user_lists';
|
2018-03-30 11:38:00 +01:00
|
|
|
import domain_lists from './domain_lists';
|
2016-11-20 18:39:18 +00:00
|
|
|
import accounts from './accounts';
|
2017-05-03 01:04:16 +01:00
|
|
|
import accounts_counters from './accounts_counters';
|
2016-11-20 18:39:18 +00:00
|
|
|
import statuses from './statuses';
|
|
|
|
import relationships from './relationships';
|
2017-01-09 13:00:55 +00:00
|
|
|
import settings from './settings';
|
2017-07-13 21:15:32 +01:00
|
|
|
import push_notifications from './push_notifications';
|
2017-01-16 12:27:58 +00:00
|
|
|
import status_lists from './status_lists';
|
2017-11-15 02:56:41 +00:00
|
|
|
import mutes from './mutes';
|
2017-02-14 19:59:26 +00:00
|
|
|
import reports from './reports';
|
2017-06-11 16:07:35 +01:00
|
|
|
import contexts from './contexts';
|
2017-07-09 11:16:08 +01:00
|
|
|
import compose from './compose';
|
|
|
|
import search from './search';
|
|
|
|
import media_attachments from './media_attachments';
|
|
|
|
import notifications from './notifications';
|
2017-09-13 09:24:33 +01:00
|
|
|
import height_cache from './height_cache';
|
2017-09-23 04:40:28 +01:00
|
|
|
import custom_emojis from './custom_emojis';
|
2017-11-24 23:35:37 +00:00
|
|
|
import lists from './lists';
|
2017-12-05 22:02:27 +00:00
|
|
|
import listEditor from './list_editor';
|
2018-11-05 17:52:38 +00:00
|
|
|
import listAdder from './list_adder';
|
2018-06-29 14:34:36 +01:00
|
|
|
import filters from './filters';
|
2018-10-07 22:44:58 +01:00
|
|
|
import conversations from './conversations';
|
2018-10-22 23:08:39 +01:00
|
|
|
import suggestions from './suggestions';
|
2019-03-03 21:18:23 +00:00
|
|
|
import polls from './polls';
|
2016-08-24 16:56:44 +01:00
|
|
|
|
2017-07-07 23:06:02 +01:00
|
|
|
const reducers = {
|
2018-03-07 01:26:43 +00:00
|
|
|
dropdown_menu,
|
2016-08-31 15:15:12 +01:00
|
|
|
timelines,
|
|
|
|
meta,
|
2016-11-20 18:39:18 +00:00
|
|
|
alerts,
|
2016-09-19 22:25:59 +01:00
|
|
|
loadingBar: loadingBarReducer,
|
2016-10-24 17:07:40 +01:00
|
|
|
modal,
|
2016-10-27 20:59:56 +01:00
|
|
|
user_lists,
|
2018-03-30 11:38:00 +01:00
|
|
|
domain_lists,
|
2017-01-16 12:27:58 +00:00
|
|
|
status_lists,
|
2016-10-30 14:06:43 +00:00
|
|
|
accounts,
|
2017-05-03 01:04:16 +01:00
|
|
|
accounts_counters,
|
2016-10-30 14:06:43 +00:00
|
|
|
statuses,
|
2016-11-13 12:04:18 +00:00
|
|
|
relationships,
|
2017-01-20 00:00:14 +00:00
|
|
|
settings,
|
2017-07-13 21:15:32 +01:00
|
|
|
push_notifications,
|
2017-11-15 02:56:41 +00:00
|
|
|
mutes,
|
2017-05-20 16:31:47 +01:00
|
|
|
reports,
|
2017-06-11 16:07:35 +01:00
|
|
|
contexts,
|
2017-07-09 11:16:08 +01:00
|
|
|
compose,
|
|
|
|
search,
|
|
|
|
media_attachments,
|
|
|
|
notifications,
|
2017-09-13 09:24:33 +01:00
|
|
|
height_cache,
|
2017-09-23 04:40:28 +01:00
|
|
|
custom_emojis,
|
2017-11-24 23:35:37 +00:00
|
|
|
lists,
|
2017-12-05 22:02:27 +00:00
|
|
|
listEditor,
|
2018-11-05 17:52:38 +00:00
|
|
|
listAdder,
|
2018-06-29 14:34:36 +01:00
|
|
|
filters,
|
2018-10-07 22:44:58 +01:00
|
|
|
conversations,
|
2018-10-22 23:08:39 +01:00
|
|
|
suggestions,
|
2019-03-03 21:18:23 +00:00
|
|
|
polls,
|
2017-07-07 23:06:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default combineReducers(reducers);
|