55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
// Copyright 2021-2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { connect } from 'react-redux';
|
|
import { mapDispatchToProps } from '../actions';
|
|
import type { PropsDataType as ProfileEditorModalPropsType } from '../../components/ProfileEditorModal';
|
|
import { ProfileEditorModal } from '../../components/ProfileEditorModal';
|
|
import type { PropsDataType } from '../../components/ProfileEditor';
|
|
import type { StateType } from '../reducer';
|
|
import { getIntl } from '../selectors/user';
|
|
import { getEmojiSkinTone, getUsernamesEnabled } from '../selectors/items';
|
|
import { getMe, getUsernameSaveState } from '../selectors/conversations';
|
|
import { selectRecentEmojis } from '../selectors/emojis';
|
|
|
|
function mapStateToProps(
|
|
state: StateType
|
|
): Omit<PropsDataType, 'onEditStateChange' | 'onProfileChanged'> &
|
|
ProfileEditorModalPropsType {
|
|
const {
|
|
avatarPath,
|
|
avatars: userAvatarData = [],
|
|
aboutText,
|
|
aboutEmoji,
|
|
color,
|
|
firstName,
|
|
familyName,
|
|
id: conversationId,
|
|
username,
|
|
} = getMe(state);
|
|
const recentEmojis = selectRecentEmojis(state);
|
|
const skinTone = getEmojiSkinTone(state);
|
|
const isUsernameFlagEnabled = getUsernamesEnabled(state);
|
|
|
|
return {
|
|
aboutEmoji,
|
|
aboutText,
|
|
avatarPath,
|
|
color,
|
|
conversationId,
|
|
familyName,
|
|
firstName: String(firstName),
|
|
hasError: state.globalModals.profileEditorHasError,
|
|
i18n: getIntl(state),
|
|
isUsernameFlagEnabled,
|
|
recentEmojis,
|
|
skinTone,
|
|
userAvatarData,
|
|
username,
|
|
usernameSaveState: getUsernameSaveState(state),
|
|
};
|
|
}
|
|
|
|
const smart = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
export const SmartProfileEditorModal = smart(ProfileEditorModal);
|