// Copyright 2021-2022 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { connect } from 'react-redux'; import type { MenuItemConstructorOptions } from 'electron'; import type { MenuActionType } from '../../types/menu'; import { App } from '../../components/App'; import { SmartCallManager } from './CallManager'; import { SmartCustomizingPreferredReactionsModal } from './CustomizingPreferredReactionsModal'; import { SmartGlobalModalContainer } from './GlobalModalContainer'; import { SmartSafetyNumberViewer } from './SafetyNumberViewer'; import { SmartStories } from './Stories'; import type { StateType } from '../reducer'; import { getPreferredBadgeSelector } from '../selectors/badges'; import { getIntl, getLocaleMessages, getTheme, getIsMainWindowMaximized, getIsMainWindowFullScreen, getMenuOptions, getPlatform, } from '../selectors/user'; import { shouldShowStoriesView } from '../selectors/stories'; import { getConversationsStoppingSend } from '../selectors/conversations'; import { getIsCustomizingPreferredReactions } from '../selectors/preferredReactions'; import { mapDispatchToProps } from '../actions'; import type { SafetyNumberProps } from '../../components/SafetyNumberChangeDialog'; const mapStateToProps = (state: StateType) => { return { ...state.app, conversationsStoppingSend: getConversationsStoppingSend(state), getPreferredBadge: getPreferredBadgeSelector(state), i18n: getIntl(state), localeMessages: getLocaleMessages(state), isCustomizingPreferredReactions: getIsCustomizingPreferredReactions(state), isMaximized: getIsMainWindowMaximized(state), isFullScreen: getIsMainWindowFullScreen(state), menuOptions: getMenuOptions(state), platform: getPlatform(state), isWindows11: window.SignalContext.OS.isWindows11(), renderCallManager: () => , renderCustomizingPreferredReactionsModal: () => ( ), renderGlobalModalContainer: () => , renderSafetyNumber: (props: SafetyNumberProps) => ( ), isShowingStoriesView: shouldShowStoriesView(state), renderStories: () => , requestVerification: ( type: 'sms' | 'voice', number: string, token: string ): Promise => { const accountManager = window.getAccountManager(); if (type === 'sms') { return accountManager.requestSMSVerification(number, token); } return accountManager.requestVoiceVerification(number, token); }, registerSingleDevice: (number: string, code: string): Promise => { return window.getAccountManager().registerSingleDevice(number, code); }, theme: getTheme(state), executeMenuRole: (role: MenuItemConstructorOptions['role']): void => { window.SignalContext.executeMenuRole(role); }, executeMenuAction: (action: MenuActionType): void => { window.SignalContext.executeMenuAction(action); }, titleBarDoubleClick: (): void => { window.titleBarDoubleClick(); }, }; }; const smart = connect(mapStateToProps, mapDispatchToProps); export const SmartApp = smart(App);