80 lines
2.4 KiB
TypeScript
80 lines
2.4 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { connect } from 'react-redux';
|
|
import { mapDispatchToProps } from '../actions';
|
|
import type { DataPropsType } from '../../components/ForwardMessageModal';
|
|
import { ForwardMessageModal } from '../../components/ForwardMessageModal';
|
|
import type { StateType } from '../reducer';
|
|
import type { BodyRangeType } from '../../types/Util';
|
|
import type { LinkPreviewType } from '../../types/message/LinkPreviews';
|
|
import { getPreferredBadgeSelector } from '../selectors/badges';
|
|
import { getAllComposableConversations } from '../selectors/conversations';
|
|
import { getLinkPreview } from '../selectors/linkPreviews';
|
|
import { getIntl, getTheme } from '../selectors/user';
|
|
import { getEmojiSkinTone } from '../selectors/items';
|
|
import { selectRecentEmojis } from '../selectors/emojis';
|
|
import type { AttachmentType } from '../../types/Attachment';
|
|
|
|
export type SmartForwardMessageModalProps = {
|
|
attachments?: Array<AttachmentType>;
|
|
doForwardMessage: (
|
|
selectedContacts: Array<string>,
|
|
messageBody?: string,
|
|
attachments?: Array<AttachmentType>,
|
|
linkPreview?: LinkPreviewType
|
|
) => void;
|
|
isSticker: boolean;
|
|
messageBody?: string;
|
|
onClose: () => void;
|
|
onEditorStateChange: (
|
|
messageText: string,
|
|
bodyRanges: Array<BodyRangeType>,
|
|
caretLocation?: number
|
|
) => unknown;
|
|
onTextTooLong: () => void;
|
|
};
|
|
|
|
const mapStateToProps = (
|
|
state: StateType,
|
|
props: SmartForwardMessageModalProps
|
|
): DataPropsType => {
|
|
const {
|
|
attachments,
|
|
doForwardMessage,
|
|
isSticker,
|
|
messageBody,
|
|
onClose,
|
|
onEditorStateChange,
|
|
onTextTooLong,
|
|
} = props;
|
|
|
|
const candidateConversations = getAllComposableConversations(state);
|
|
const recentEmojis = selectRecentEmojis(state);
|
|
const skinTone = getEmojiSkinTone(state);
|
|
const linkPreview = getLinkPreview(state);
|
|
|
|
return {
|
|
attachments,
|
|
candidateConversations,
|
|
doForwardMessage,
|
|
getPreferredBadge: getPreferredBadgeSelector(state),
|
|
i18n: getIntl(state),
|
|
isSticker,
|
|
linkPreview,
|
|
messageBody,
|
|
onClose,
|
|
onEditorStateChange,
|
|
recentEmojis,
|
|
skinTone,
|
|
onTextTooLong,
|
|
theme: getTheme(state),
|
|
};
|
|
};
|
|
|
|
const smart = connect(mapStateToProps, {
|
|
...mapDispatchToProps,
|
|
onPickEmoji: mapDispatchToProps.onUseEmoji,
|
|
});
|
|
|
|
export const SmartForwardMessageModal = smart(ForwardMessageModal);
|