2023-05-25 16:15:16 +00:00
|
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
|
|
|
|
import type { StateType } from '../reducer';
|
|
|
|
import type { GlobalModalsStateType } from '../ducks/globalModals';
|
2024-01-29 20:09:54 +00:00
|
|
|
import { UsernameOnboardingState } from '../../types/globalModals';
|
2023-05-25 16:15:16 +00:00
|
|
|
|
|
|
|
export const getGlobalModalsState = (state: StateType): GlobalModalsStateType =>
|
|
|
|
state.globalModals;
|
|
|
|
|
|
|
|
export const isShowingAnyModal = createSelector(
|
|
|
|
getGlobalModalsState,
|
|
|
|
(globalModalsState): boolean =>
|
2024-01-29 20:09:54 +00:00
|
|
|
Object.entries(globalModalsState).some(([key, value]) => {
|
|
|
|
if (key === 'usernameOnboardingState') {
|
|
|
|
return value === UsernameOnboardingState.Open;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Boolean(value);
|
|
|
|
})
|
2023-05-25 16:15:16 +00:00
|
|
|
);
|