|
|
@ -1,24 +1,24 @@
|
|
|
|
import { combineReducers } from '@reduxjs/toolkit';
|
|
|
|
import { combineReducers } from '@reduxjs/toolkit';
|
|
|
|
|
|
|
|
|
|
|
|
import { callReducer as call, CallStateType } from './ducks/call'; // ok: importing only RingingManager.ts which is not importing anything else
|
|
|
|
import { callReducer as call, CallStateType } from './ducks/call';
|
|
|
|
import { reducer as conversations, ConversationsStateType } from './ducks/conversations'; // todo
|
|
|
|
import { reducer as conversations, ConversationsStateType } from './ducks/conversations';
|
|
|
|
import { defaultRoomReducer as defaultRooms, DefaultRoomsState } from './ducks/defaultRooms'; // todo
|
|
|
|
import { defaultRoomReducer as defaultRooms, DefaultRoomsState } from './ducks/defaultRooms';
|
|
|
|
import { reducer as primaryColor } from './ducks/primaryColor'; // ok: importing only Constants.tsx which is not importing anything else
|
|
|
|
import { reducer as primaryColor } from './ducks/primaryColor';
|
|
|
|
import { reducer as search, SearchStateType } from './ducks/search'; // todo
|
|
|
|
import { reducer as search, SearchStateType } from './ducks/search';
|
|
|
|
import { reducer as section, SectionStateType } from './ducks/section'; // ok: importing only SessionSettingsCategory which is not importing anything else
|
|
|
|
import { reducer as section, SectionStateType } from './ducks/section';
|
|
|
|
import { ReduxSogsRoomInfos, SogsRoomInfoState } from './ducks/sogsRoomInfo'; // ok: importing nothing else
|
|
|
|
import { ReduxSogsRoomInfos, SogsRoomInfoState } from './ducks/sogsRoomInfo';
|
|
|
|
import { reducer as theme } from './ducks/theme'; // ok: importing only Constants.tsx which is not importing anything else
|
|
|
|
import { reducer as theme } from './ducks/theme';
|
|
|
|
import { reducer as user, UserStateType } from './ducks/user'; // ok: not importing anything else
|
|
|
|
import { reducer as user, UserStateType } from './ducks/user';
|
|
|
|
|
|
|
|
|
|
|
|
import { PrimaryColorStateType, ThemeStateType } from '../themes/constants/colors'; // ok: not importing anything else
|
|
|
|
import { PrimaryColorStateType, ThemeStateType } from '../themes/constants/colors';
|
|
|
|
import { modalReducer as modals, ModalState } from './ducks/modalDialog'; // todo
|
|
|
|
import { modalReducer as modals, ModalState } from './ducks/modalDialog';
|
|
|
|
import { defaultOnionReducer as onionPaths, OnionState } from './ducks/onion'; // ok: not importing anything else
|
|
|
|
import { defaultOnionReducer as onionPaths, OnionState } from './ducks/onion';
|
|
|
|
import { settingsReducer, SettingsState } from './ducks/settings'; // ok: just importing settings-key.tsx which is not importing anything else
|
|
|
|
import { settingsReducer, SettingsState } from './ducks/settings';
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
reducer as stagedAttachments,
|
|
|
|
reducer as stagedAttachments,
|
|
|
|
StagedAttachmentsStateType,
|
|
|
|
StagedAttachmentsStateType,
|
|
|
|
} from './ducks/stagedAttachments';
|
|
|
|
} from './ducks/stagedAttachments';
|
|
|
|
import { userConfigReducer as userConfig, UserConfigState } from './ducks/userConfig'; // ok: not importing anything else
|
|
|
|
import { userConfigReducer as userConfig, UserConfigState } from './ducks/userConfig';
|
|
|
|
|
|
|
|
|
|
|
|
export type StateType = {
|
|
|
|
export type StateType = {
|
|
|
|
search: SearchStateType;
|
|
|
|
search: SearchStateType;
|
|
|
|