signal-desktop/ts/state/smart/GlobalModalContainer.tsx

54 lines
1.5 KiB
TypeScript
Raw Normal View History

2021-05-28 16:15:17 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { connect } from 'react-redux';
import { mapDispatchToProps } from '../actions';
import { GlobalModalContainer } from '../../components/GlobalModalContainer';
import type { StateType } from '../reducer';
2021-09-21 22:37:10 +00:00
import { SmartContactModal } from './ContactModal';
2022-07-01 00:52:03 +00:00
import { SmartForwardMessageModal } from './ForwardMessageModal';
import { SmartProfileEditorModal } from './ProfileEditorModal';
import { SmartSafetyNumberModal } from './SafetyNumberModal';
import { SmartStoriesSettingsModal } from './StoriesSettingsModal';
2021-07-19 19:26:06 +00:00
import { getIntl } from '../selectors/user';
2021-07-19 19:26:06 +00:00
function renderProfileEditor(): JSX.Element {
return <SmartProfileEditorModal />;
2021-07-19 19:26:06 +00:00
}
2021-09-21 22:37:10 +00:00
function renderContactModal(): JSX.Element {
return <SmartContactModal />;
}
2022-07-01 00:52:03 +00:00
function renderForwardMessageModal(): JSX.Element {
return <SmartForwardMessageModal />;
}
function renderStoriesSettings(): JSX.Element {
return <SmartStoriesSettingsModal />;
}
2021-05-28 16:15:17 +00:00
const mapStateToProps = (state: StateType) => {
const i18n = getIntl(state);
2021-05-28 16:15:17 +00:00
return {
...state.globalModals,
i18n,
2021-09-21 22:37:10 +00:00
renderContactModal,
2022-07-01 00:52:03 +00:00
renderForwardMessageModal,
2021-07-19 19:26:06 +00:00
renderProfileEditor,
renderStoriesSettings,
renderSafetyNumber: () => (
<SmartSafetyNumberModal
contactID={String(state.globalModals.safetyNumberModalContactId)}
/>
),
2021-05-28 16:15:17 +00:00
};
};
const smart = connect(mapStateToProps, mapDispatchToProps);
export const SmartGlobalModalContainer = smart(GlobalModalContainer);