You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
| import { combineReducers } from '@reduxjs/toolkit';
 | |
| 
 | |
| import { callReducer as call, CallStateType } from './ducks/call';
 | |
| import { reducer as conversations, ConversationsStateType } from './ducks/conversations';
 | |
| import { defaultRoomReducer as defaultRooms, DefaultRoomsState } from './ducks/defaultRooms';
 | |
| import { reducer as primaryColor } from './ducks/primaryColor';
 | |
| import { reducer as search, SearchStateType } from './ducks/search';
 | |
| import { reducer as section, SectionStateType } from './ducks/section';
 | |
| import { ReduxSogsRoomInfos, SogsRoomInfoState } from './ducks/sogsRoomInfo';
 | |
| import { reducer as theme } from './ducks/theme';
 | |
| import { reducer as user, UserStateType } from './ducks/user';
 | |
| 
 | |
| import { PrimaryColorStateType, ThemeStateType } from '../themes/constants/colors';
 | |
| import { groupReducer, GroupState } from './ducks/metaGroups';
 | |
| import { modalReducer as modals, ModalState } from './ducks/modalDialog';
 | |
| import { defaultOnionReducer as onionPaths, OnionState } from './ducks/onion';
 | |
| import { settingsReducer, SettingsState } from './ducks/settings';
 | |
| import {
 | |
|   reducer as stagedAttachments,
 | |
|   StagedAttachmentsStateType,
 | |
| } from './ducks/stagedAttachments';
 | |
| import { userConfigReducer as userConfig, UserConfigState } from './ducks/userConfig';
 | |
| import { userGroupReducer, UserGroupState } from './ducks/userGroups';
 | |
| 
 | |
| export type StateType = {
 | |
|   search: SearchStateType;
 | |
|   user: UserStateType;
 | |
|   conversations: ConversationsStateType;
 | |
|   theme: ThemeStateType;
 | |
|   primaryColor: PrimaryColorStateType;
 | |
|   section: SectionStateType;
 | |
|   defaultRooms: DefaultRoomsState;
 | |
|   onionPaths: OnionState;
 | |
|   modals: ModalState;
 | |
|   userConfig: UserConfigState;
 | |
|   stagedAttachments: StagedAttachmentsStateType;
 | |
|   call: CallStateType;
 | |
|   sogsRoomInfo: SogsRoomInfoState;
 | |
|   settings: SettingsState;
 | |
|   groups: GroupState;
 | |
|   userGroups: UserGroupState;
 | |
| };
 | |
| 
 | |
| const reducers = {
 | |
|   search,
 | |
|   conversations,
 | |
|   user,
 | |
|   theme,
 | |
|   primaryColor,
 | |
|   section,
 | |
|   defaultRooms,
 | |
|   onionPaths,
 | |
|   modals,
 | |
|   userConfig,
 | |
|   stagedAttachments,
 | |
|   call,
 | |
|   sogsRoomInfo: ReduxSogsRoomInfos.sogsRoomInfoReducer,
 | |
|   settings: settingsReducer,
 | |
|   groups: groupReducer,
 | |
|   userGroups: userGroupReducer,
 | |
| };
 | |
| 
 | |
| // Making this work would require that our reducer signature supported AnyAction, not
 | |
| //   our restricted actions
 | |
| export const rootReducer = combineReducers(reducers);
 |