// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React, { memo } from 'react'; import { useSelector } from 'react-redux'; import type { VerificationTransport } from '../../types/VerificationTransport'; import { App } from '../../components/App'; import OS from '../../util/os/osMain'; import { strictAssert } from '../../util/assert'; import { SmartCallManager } from './CallManager'; import { SmartGlobalModalContainer } from './GlobalModalContainer'; import { SmartLightbox } from './Lightbox'; import { SmartStoryViewer } from './StoryViewer'; import { getTheme, getIsMainWindowMaximized, getIsMainWindowFullScreen, } from '../selectors/user'; import { hasSelectedStoryData } from '../selectors/stories'; import { useAppActions } from '../ducks/app'; import { useConversationsActions } from '../ducks/conversations'; import { useStoriesActions } from '../ducks/stories'; import { ErrorBoundary } from '../../components/ErrorBoundary'; import { ModalContainer } from '../../components/ModalContainer'; import { SmartInbox } from './Inbox'; import { getAppView } from '../selectors/app'; function renderInbox(): JSX.Element { return ; } export const SmartApp = memo(function SmartApp() { const appView = useSelector(getAppView); const { openInbox } = useAppActions(); const { scrollToMessage } = useConversationsActions(); const { viewStory } = useStoriesActions(); return ( ( )} renderGlobalModalContainer={() => } renderLightbox={() => } hasSelectedStoryData={useSelector(hasSelectedStoryData)} renderStoryViewer={(closeView: () => unknown) => ( )} renderInbox={renderInbox} requestVerification={( number: string, captcha: string, transport: VerificationTransport ): Promise<{ sessionId: string }> => { const { server } = window.textsecure; strictAssert(server !== undefined, 'WebAPI not available'); return server.requestVerification(number, captcha, transport); }} registerSingleDevice={( number: string, code: string, sessionId: string ): Promise => { return window .getAccountManager() .registerSingleDevice(number, code, sessionId); }} theme={useSelector(getTheme)} openInbox={openInbox} scrollToMessage={scrollToMessage} viewStory={viewStory} /> ); });