2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2019 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-09-14 21:56:35 +00:00
|
|
|
/* eslint-disable no-console */
|
|
|
|
|
2022-02-23 18:48:40 +00:00
|
|
|
import type { Store } from 'redux';
|
2021-10-26 19:15:33 +00:00
|
|
|
import { applyMiddleware, createStore as reduxCreateStore } from 'redux';
|
2019-01-14 21:49:58 +00:00
|
|
|
|
|
|
|
import promise from 'redux-promise-middleware';
|
2020-10-30 18:00:01 +00:00
|
|
|
import thunk from 'redux-thunk';
|
2019-01-14 21:49:58 +00:00
|
|
|
import { createLogger } from 'redux-logger';
|
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { StateType } from './reducer';
|
|
|
|
import { reducer } from './reducer';
|
2021-08-18 20:08:14 +00:00
|
|
|
import { dispatchItemsMiddleware } from '../shims/dispatchItemsMiddleware';
|
2020-09-14 21:56:35 +00:00
|
|
|
|
|
|
|
declare global {
|
2021-01-14 18:07:05 +00:00
|
|
|
// We want to extend `window`'s properties, so we need an interface.
|
2022-06-03 21:07:51 +00:00
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
2020-09-14 21:56:35 +00:00
|
|
|
interface Console {
|
|
|
|
_log: Console['log'];
|
|
|
|
}
|
|
|
|
}
|
2019-01-14 21:49:58 +00:00
|
|
|
|
|
|
|
const env = window.getEnvironment();
|
|
|
|
|
|
|
|
// So Redux logging doesn't go to disk, and so we can get colors/styles
|
|
|
|
const directConsole = {
|
|
|
|
log: console._log,
|
|
|
|
groupCollapsed: console.groupCollapsed,
|
|
|
|
group: console.group,
|
|
|
|
groupEnd: console.groupEnd,
|
|
|
|
warn: console.warn,
|
|
|
|
error: console.error,
|
|
|
|
};
|
|
|
|
|
|
|
|
const logger = createLogger({
|
|
|
|
logger: directConsole,
|
2020-12-18 19:27:43 +00:00
|
|
|
predicate: (_getState, action) => {
|
|
|
|
if (action.type === 'network/CHECK_NETWORK_STATUS') {
|
|
|
|
return false;
|
|
|
|
}
|
2022-08-31 22:58:05 +00:00
|
|
|
if (action.type === 'calling/GROUP_CALL_AUDIO_LEVELS_CHANGE') {
|
|
|
|
return false;
|
|
|
|
}
|
2020-12-18 19:27:43 +00:00
|
|
|
return true;
|
|
|
|
},
|
2019-01-14 21:49:58 +00:00
|
|
|
});
|
|
|
|
|
2020-10-30 18:00:01 +00:00
|
|
|
const middlewareList = [
|
|
|
|
promise,
|
|
|
|
thunk,
|
2021-08-18 20:08:14 +00:00
|
|
|
dispatchItemsMiddleware,
|
2020-10-30 18:00:01 +00:00
|
|
|
...(env === 'production' ? [] : [logger]),
|
|
|
|
];
|
2019-01-14 21:49:58 +00:00
|
|
|
|
2020-09-14 21:56:35 +00:00
|
|
|
const enhancer = applyMiddleware(...middlewareList);
|
2019-01-14 21:49:58 +00:00
|
|
|
|
2021-01-26 23:12:23 +00:00
|
|
|
export const createStore = (
|
2022-02-23 18:48:40 +00:00
|
|
|
initialState: Readonly<StateType>
|
2021-01-26 23:12:23 +00:00
|
|
|
): Store<StateType> => reduxCreateStore(reducer, initialState, enhancer);
|