2016-11-20 20:39:18 +02:00
|
|
|
import { combineReducers } from 'redux-immutable';
|
2018-03-30 13:45:23 +03:00
|
|
|
import dropdown_menu from './dropdown_menu';
|
2016-11-20 20:39:18 +02:00
|
|
|
import timelines from './timelines';
|
|
|
|
import meta from './meta';
|
|
|
|
import alerts from './alerts';
|
2016-09-20 00:25:59 +03:00
|
|
|
import { loadingBarReducer } from 'react-redux-loading-bar';
|
2016-11-20 20:39:18 +02:00
|
|
|
import modal from './modal';
|
|
|
|
import user_lists from './user_lists';
|
2018-03-04 22:33:08 +02:00
|
|
|
import domain_lists from './domain_lists';
|
2016-11-20 20:39:18 +02:00
|
|
|
import accounts from './accounts';
|
2017-05-03 03:04:16 +03:00
|
|
|
import accounts_counters from './accounts_counters';
|
2016-11-20 20:39:18 +02:00
|
|
|
import statuses from './statuses';
|
|
|
|
import relationships from './relationships';
|
2017-01-09 15:00:55 +02:00
|
|
|
import settings from './settings';
|
2017-11-18 05:11:18 +02:00
|
|
|
import local_settings from './local_settings';
|
2017-07-13 23:15:32 +03:00
|
|
|
import push_notifications from './push_notifications';
|
2017-01-16 14:27:58 +02:00
|
|
|
import status_lists from './status_lists';
|
2017-08-07 01:36:04 +03:00
|
|
|
import mutes from './mutes';
|
2019-09-29 22:46:05 +03:00
|
|
|
import blocks from './blocks';
|
2022-02-23 21:03:46 +02:00
|
|
|
import rules from './rules';
|
2021-02-11 01:53:12 +02:00
|
|
|
import boosts from './boosts';
|
2017-06-11 18:07:35 +03:00
|
|
|
import contexts from './contexts';
|
2017-07-09 13:16:08 +03:00
|
|
|
import compose from './compose';
|
|
|
|
import search from './search';
|
|
|
|
import media_attachments from './media_attachments';
|
|
|
|
import notifications from './notifications';
|
2017-09-13 11:24:33 +03:00
|
|
|
import height_cache from './height_cache';
|
2017-09-23 06:40:28 +03:00
|
|
|
import custom_emojis from './custom_emojis';
|
2017-12-09 03:40:49 +02:00
|
|
|
import lists from './lists';
|
2017-12-09 04:13:08 +02:00
|
|
|
import listEditor from './list_editor';
|
2018-11-06 18:44:28 +02:00
|
|
|
import listAdder from './list_adder';
|
2018-07-08 21:04:53 +03:00
|
|
|
import filters from './filters';
|
2019-06-09 13:07:23 +03:00
|
|
|
import conversations from './conversations';
|
2018-10-23 01:08:39 +03:00
|
|
|
import suggestions from './suggestions';
|
2018-08-20 15:22:19 +03:00
|
|
|
import pinnedAccountsEditor from './pinned_accounts_editor';
|
2019-03-03 23:18:23 +02:00
|
|
|
import polls from './polls';
|
2019-08-06 18:57:52 +03:00
|
|
|
import trends from './trends';
|
2020-01-23 23:00:13 +02:00
|
|
|
import announcements from './announcements';
|
2020-05-29 17:14:16 +03:00
|
|
|
import markers from './markers';
|
2020-06-30 20:19:50 +03:00
|
|
|
import account_notes from './account_notes';
|
2020-09-28 14:29:43 +03:00
|
|
|
import picture_in_picture from './picture_in_picture';
|
2021-09-26 06:46:13 +03:00
|
|
|
import accounts_map from './accounts_map';
|
2022-02-09 02:17:07 +02:00
|
|
|
import history from './history';
|
2016-08-24 18:56:44 +03:00
|
|
|
|
2017-07-08 01:06:02 +03:00
|
|
|
const reducers = {
|
2020-01-23 23:00:13 +02:00
|
|
|
announcements,
|
2018-03-30 13:45:23 +03:00
|
|
|
dropdown_menu,
|
2016-08-31 17:15:12 +03:00
|
|
|
timelines,
|
|
|
|
meta,
|
2016-11-20 20:39:18 +02:00
|
|
|
alerts,
|
2016-09-20 00:25:59 +03:00
|
|
|
loadingBar: loadingBarReducer,
|
2016-10-24 19:07:40 +03:00
|
|
|
modal,
|
2016-10-27 22:59:56 +03:00
|
|
|
user_lists,
|
2018-03-04 22:33:08 +02:00
|
|
|
domain_lists,
|
2017-01-16 14:27:58 +02:00
|
|
|
status_lists,
|
2016-10-30 16:06:43 +02:00
|
|
|
accounts,
|
2017-05-03 03:04:16 +03:00
|
|
|
accounts_counters,
|
2021-09-26 06:46:13 +03:00
|
|
|
accounts_map,
|
2016-10-30 16:06:43 +02:00
|
|
|
statuses,
|
2016-11-13 14:04:18 +02:00
|
|
|
relationships,
|
2017-01-20 02:00:14 +02:00
|
|
|
settings,
|
2017-06-29 08:00:54 +03:00
|
|
|
local_settings,
|
2017-07-13 23:15:32 +03:00
|
|
|
push_notifications,
|
2017-08-07 01:36:04 +03:00
|
|
|
mutes,
|
2019-09-29 22:46:05 +03:00
|
|
|
blocks,
|
2022-02-23 21:03:46 +02:00
|
|
|
rules,
|
2021-02-11 01:53:12 +02:00
|
|
|
boosts,
|
2017-06-11 18:07:35 +03:00
|
|
|
contexts,
|
2017-07-09 13:16:08 +03:00
|
|
|
compose,
|
|
|
|
search,
|
|
|
|
media_attachments,
|
|
|
|
notifications,
|
2017-09-13 11:24:33 +03:00
|
|
|
height_cache,
|
2017-09-23 06:40:28 +03:00
|
|
|
custom_emojis,
|
2017-12-09 03:40:49 +02:00
|
|
|
lists,
|
2017-12-09 04:13:08 +02:00
|
|
|
listEditor,
|
2018-11-06 18:44:28 +02:00
|
|
|
listAdder,
|
2018-07-08 21:04:53 +03:00
|
|
|
filters,
|
2019-06-09 13:07:23 +03:00
|
|
|
conversations,
|
2018-10-23 01:08:39 +03:00
|
|
|
suggestions,
|
2018-08-20 15:22:19 +03:00
|
|
|
pinnedAccountsEditor,
|
2019-03-03 23:18:23 +02:00
|
|
|
polls,
|
2019-08-06 18:57:52 +03:00
|
|
|
trends,
|
2020-05-29 17:14:16 +03:00
|
|
|
markers,
|
2020-06-30 20:19:50 +03:00
|
|
|
account_notes,
|
2020-09-28 14:29:43 +03:00
|
|
|
picture_in_picture,
|
2022-02-09 02:17:07 +02:00
|
|
|
history,
|
2017-07-08 01:06:02 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export default combineReducers(reducers);
|