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

42 lines
1.3 KiB
TypeScript
Raw Normal View History

2023-01-03 11:55:46 -08:00
// Copyright 2020 Signal Messenger, LLC
2020-10-30 15:34:04 -05:00
// SPDX-License-Identifier: AGPL-3.0-only
2020-05-27 17:37:06 -04:00
import { connect } from 'react-redux';
import { mapDispatchToProps } from '../actions';
import { ConversationHero } from '../../components/conversation/ConversationHero';
import type { StateType } from '../reducer';
2021-11-02 18:01:13 -05:00
import { getPreferredBadgeSelector } from '../selectors/badges';
import { getIntl, getTheme } from '../selectors/user';
import { getHasStoriesSelector } from '../selectors/stories2';
2022-11-08 21:38:19 -05:00
import { isSignalConversation } from '../../util/isSignalConversation';
2020-05-27 17:37:06 -04:00
type ExternalProps = {
id: string;
};
const mapStateToProps = (state: StateType, props: ExternalProps) => {
const { id } = props;
const conversation = state.conversations.conversationLookup[id];
if (!conversation) {
throw new Error(`Did not find conversation ${id} in state!`);
}
return {
i18n: getIntl(state),
...conversation,
2020-05-27 17:37:06 -04:00
conversationType: conversation.type,
2022-07-21 20:44:35 -04:00
hasStories: getHasStoriesSelector(state)(id),
2021-11-02 18:01:13 -05:00
badge: getPreferredBadgeSelector(state)(conversation.badges),
2022-11-08 21:38:19 -05:00
isSignalConversation: isSignalConversation(conversation),
2021-11-02 18:01:13 -05:00
theme: getTheme(state),
2020-05-27 17:37:06 -04:00
};
};
const smart = connect(mapStateToProps, mapDispatchToProps);
export const SmartHeroRow = smart(ConversationHero);