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';
|
2019-09-29 20:46:05 +01:00
|
|
|
import blocks from './blocks';
|
2021-02-10 23:53:12 +00:00
|
|
|
import boosts from './boosts';
|
2022-10-05 02:47:56 +01:00
|
|
|
import server from './server';
|
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';
|
2019-08-06 16:57:52 +01:00
|
|
|
import trends from './trends';
|
2019-08-13 11:22:16 +01:00
|
|
|
import missed_updates from './missed_updates';
|
2020-01-23 21:00:13 +00:00
|
|
|
import announcements from './announcements';
|
2020-05-29 15:14:16 +01:00
|
|
|
import markers from './markers';
|
2020-09-28 12:29:43 +01:00
|
|
|
import picture_in_picture from './picture_in_picture';
|
2021-09-26 04:46:13 +01:00
|
|
|
import accounts_map from './accounts_map';
|
2022-02-09 00:17:07 +00:00
|
|
|
import history from './history';
|
2022-07-22 14:52:06 +01:00
|
|
|
import tags from './tags';
|
2016-08-24 16:56:44 +01:00
|
|
|
|
2017-07-07 23:06:02 +01:00
|
|
|
const reducers = {
|
2020-01-23 21:00:13 +00:00
|
|
|
announcements,
|
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,
|
2021-09-26 04:46:13 +01: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-07-13 21:15:32 +01:00
|
|
|
push_notifications,
|
2017-11-15 02:56:41 +00:00
|
|
|
mutes,
|
2019-09-29 20:46:05 +01:00
|
|
|
blocks,
|
2021-02-10 23:53:12 +00:00
|
|
|
boosts,
|
2022-10-05 02:47:56 +01:00
|
|
|
server,
|
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,
|
2019-08-06 16:57:52 +01:00
|
|
|
trends,
|
2019-08-13 11:22:16 +01:00
|
|
|
missed_updates,
|
2020-05-29 15:14:16 +01:00
|
|
|
markers,
|
2020-09-28 12:29:43 +01:00
|
|
|
picture_in_picture,
|
2022-02-09 00:17:07 +00:00
|
|
|
history,
|
2022-07-22 14:52:06 +01:00
|
|
|
tags,
|
2017-07-07 23:06:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default combineReducers(reducers);
|