Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
37 lines
823 B
TypeScript
37 lines
823 B
TypeScript
import PersistenceRegistry from '../base/redux/PersistenceRegistry';
|
|
import ReducerRegistry from '../base/redux/ReducerRegistry';
|
|
|
|
import {
|
|
SET_NOISE_SUPPRESSION_ENABLED
|
|
} from './actionTypes';
|
|
|
|
export interface INoiseSuppressionState {
|
|
enabled: boolean;
|
|
}
|
|
|
|
const STORE_NAME = 'features/noise-suppression';
|
|
|
|
const DEFAULT_STATE = {
|
|
enabled: false
|
|
};
|
|
|
|
PersistenceRegistry.register(STORE_NAME);
|
|
|
|
/**
|
|
* Reduces the Redux actions of the feature features/noise-suppression.
|
|
*/
|
|
ReducerRegistry.register<INoiseSuppressionState>(STORE_NAME,
|
|
(state = DEFAULT_STATE, action): INoiseSuppressionState => {
|
|
const { enabled } = action;
|
|
|
|
switch (action.type) {
|
|
case SET_NOISE_SUPPRESSION_ENABLED:
|
|
return {
|
|
...state,
|
|
enabled
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
});
|