118 lines
3.7 KiB
TypeScript
118 lines
3.7 KiB
TypeScript
// Copyright 2021 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 { getName as getOSName } from '../../OS';
|
|
import { SmartCallManager } from './CallManager';
|
|
import { SmartGlobalModalContainer } from './GlobalModalContainer';
|
|
import { SmartLightbox } from './Lightbox';
|
|
import { SmartStories } from './Stories';
|
|
import { SmartStoryViewer } from './StoryViewer';
|
|
import type { StateType } from '../reducer';
|
|
import {
|
|
getIntl,
|
|
getLocaleMessages,
|
|
getTheme,
|
|
getIsMainWindowMaximized,
|
|
getIsMainWindowFullScreen,
|
|
getMenuOptions,
|
|
} from '../selectors/user';
|
|
import {
|
|
hasSelectedStoryData,
|
|
shouldShowStoriesView,
|
|
} from '../selectors/stories';
|
|
import { getHideMenuBar } from '../selectors/items';
|
|
import { mapDispatchToProps } from '../actions';
|
|
import { ErrorBoundary } from '../../components/ErrorBoundary';
|
|
import { ModalContainer } from '../../components/ModalContainer';
|
|
import { SmartInbox } from './Inbox';
|
|
|
|
function renderInbox(): JSX.Element {
|
|
return <SmartInbox />;
|
|
}
|
|
|
|
const mapStateToProps = (state: StateType) => {
|
|
const i18n = getIntl(state);
|
|
|
|
const { osName } = state.user;
|
|
|
|
let osClassName = '';
|
|
|
|
if (osName === 'windows') {
|
|
osClassName = 'os-windows';
|
|
} else if (osName === 'macos') {
|
|
osClassName = 'os-macos';
|
|
} else if (osName === 'linux') {
|
|
osClassName = 'os-linux';
|
|
}
|
|
|
|
return {
|
|
...state.app,
|
|
i18n,
|
|
localeMessages: getLocaleMessages(state),
|
|
isMaximized: getIsMainWindowMaximized(state),
|
|
isFullScreen: getIsMainWindowFullScreen(state),
|
|
menuOptions: getMenuOptions(state),
|
|
hasCustomTitleBar: window.SignalContext.OS.hasCustomTitleBar(),
|
|
OS: getOSName(),
|
|
osClassName,
|
|
hideMenuBar: getHideMenuBar(state),
|
|
renderCallManager: () => (
|
|
<ModalContainer className="module-calling__modal-container">
|
|
<SmartCallManager />
|
|
</ModalContainer>
|
|
),
|
|
renderGlobalModalContainer: () => <SmartGlobalModalContainer />,
|
|
renderLightbox: () => <SmartLightbox />,
|
|
isShowingStoriesView: shouldShowStoriesView(state),
|
|
renderStories: (closeView: () => unknown) => (
|
|
<ErrorBoundary name="App/renderStories" closeView={closeView}>
|
|
<SmartStories />
|
|
</ErrorBoundary>
|
|
),
|
|
hasSelectedStoryData: hasSelectedStoryData(state),
|
|
renderStoryViewer: (closeView: () => unknown) => (
|
|
<ErrorBoundary name="App/renderStoryViewer" closeView={closeView}>
|
|
<SmartStoryViewer />
|
|
</ErrorBoundary>
|
|
),
|
|
renderInbox,
|
|
requestVerification: (
|
|
type: 'sms' | 'voice',
|
|
number: string,
|
|
token: string
|
|
): Promise<void> => {
|
|
const accountManager = window.getAccountManager();
|
|
|
|
if (type === 'sms') {
|
|
return accountManager.requestSMSVerification(number, token);
|
|
}
|
|
|
|
return accountManager.requestVoiceVerification(number, token);
|
|
},
|
|
registerSingleDevice: (number: string, code: string): Promise<void> => {
|
|
return window.getAccountManager().registerSingleDevice(number, code);
|
|
},
|
|
theme: getTheme(state),
|
|
|
|
executeMenuRole: (role: MenuItemConstructorOptions['role']): void => {
|
|
void window.SignalContext.executeMenuRole(role);
|
|
},
|
|
executeMenuAction: (action: MenuActionType): void => {
|
|
void window.SignalContext.executeMenuAction(action);
|
|
},
|
|
titleBarDoubleClick: (): void => {
|
|
window.IPC.titleBarDoubleClick();
|
|
},
|
|
toast: state.toast.toast,
|
|
};
|
|
};
|
|
|
|
const smart = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
export const SmartApp = smart(App);
|