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