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.
18 lines
718 B
TypeScript
18 lines
718 B
TypeScript
import { StateType } from '../reducer';
|
|
|
|
export const getAudioAutoplay = (state: StateType): boolean => state.userConfig.audioAutoplay;
|
|
|
|
export const getShowRecoveryPhrasePrompt = (state: StateType): boolean =>
|
|
state.userConfig?.showRecoveryPhrasePrompt || false;
|
|
|
|
export const getHideMessageRequestBanner = (state: StateType): boolean => {
|
|
// I am not too sure why, but it seems that state.userConfig is not set early enough and we try to somehow fetch this too early?
|
|
return state.userConfig?.hideMessageRequests || false;
|
|
};
|
|
|
|
export const getHideMessageRequestBannerOutsideRedux = (): boolean => {
|
|
const state = window.inboxStore?.getState();
|
|
|
|
return state ? getHideMessageRequestBanner(state) : true;
|
|
};
|