mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-04 07:05:26 +01:00
127 lines
4.8 KiB
TypeScript
127 lines
4.8 KiB
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
import React, { memo, useCallback } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
|
|
import { AboutContactModal } from '../../components/conversation/AboutContactModal.dom.js';
|
|
import { isSignalConnection } from '../../util/getSignalConnections.preload.js';
|
|
import { getIntl, getVersion } from '../selectors/user.std.js';
|
|
import { getAboutContactModalState } from '../selectors/globalModals.std.js';
|
|
import {
|
|
getCachedConversationMemberColorsSelector,
|
|
getConversationSelector,
|
|
getPendingAvatarDownloadSelector,
|
|
} from '../selectors/conversations.dom.js';
|
|
import { useSharedGroupNamesOnMount } from '../../util/sharedGroupNames.dom.js';
|
|
import type { ConversationType } from '../ducks/conversations.preload.js';
|
|
import { useConversationsActions } from '../ducks/conversations.preload.js';
|
|
import { useGlobalModalActions } from '../ducks/globalModals.preload.js';
|
|
import { strictAssert } from '../../util/assert.std.js';
|
|
import { getAddedByForOurPendingInvitation } from '../../util/getAddedByForOurPendingInvitation.preload.js';
|
|
import { getItems } from '../selectors/items.dom.js';
|
|
import { isFeaturedEnabledSelector } from '../../util/isFeatureEnabled.dom.js';
|
|
import { getCanAddLabel } from '../../types/GroupMemberLabels.std.js';
|
|
import { createLogger } from '../../logging/log.std.js';
|
|
|
|
const log = createLogger('SmartAboutContactModal');
|
|
|
|
function isFromOrAddedByTrustedContact(
|
|
conversation: ConversationType
|
|
): boolean {
|
|
if (conversation.type === 'direct') {
|
|
return Boolean(conversation.name) || Boolean(conversation.profileSharing);
|
|
}
|
|
|
|
const addedByConv = getAddedByForOurPendingInvitation(conversation);
|
|
if (!addedByConv) {
|
|
return false;
|
|
}
|
|
|
|
return Boolean(
|
|
addedByConv.isMe || addedByConv.name || addedByConv.profileSharing
|
|
);
|
|
}
|
|
|
|
export const SmartAboutContactModal = memo(function SmartAboutContactModal() {
|
|
const i18n = useSelector(getIntl);
|
|
const version = useSelector(getVersion);
|
|
const items = useSelector(getItems);
|
|
const { conversationId, contactId } =
|
|
useSelector(getAboutContactModalState) ?? {};
|
|
const getConversation = useSelector(getConversationSelector);
|
|
const isPendingAvatarDownload = useSelector(getPendingAvatarDownloadSelector);
|
|
|
|
const isEditMemberLabelEnabled = isFeaturedEnabledSelector({
|
|
betaKey: 'desktop.groupMemberLabels.edit.beta',
|
|
currentVersion: version,
|
|
remoteConfig: items.remoteConfig,
|
|
prodKey: 'desktop.groupMemberLabels.edit.prod',
|
|
});
|
|
// TODO: DESKTOP-9711
|
|
log.info(
|
|
`Not using feature flag of ${isEditMemberLabelEnabled}; hardcoding to false`
|
|
);
|
|
|
|
const sharedGroupNames = useSharedGroupNamesOnMount(contactId ?? '');
|
|
|
|
const { startAvatarDownload } = useConversationsActions();
|
|
|
|
const contact = getConversation(contactId);
|
|
const conversation = getConversation(conversationId);
|
|
|
|
const getMemberColors = useSelector(
|
|
getCachedConversationMemberColorsSelector
|
|
);
|
|
const memberColors = getMemberColors(conversationId);
|
|
const contactNameColor = memberColors?.get(contact.id);
|
|
const contactMembership = conversation.memberships?.find(
|
|
membership => contact.serviceId && membership.aci === contact.serviceId
|
|
);
|
|
const { labelEmoji: contactLabelEmoji, labelString: contactLabelString } =
|
|
contactMembership || {};
|
|
const canAddLabel = getCanAddLabel(conversation, contactMembership);
|
|
|
|
const {
|
|
toggleAboutContactModal,
|
|
toggleSignalConnectionsModal,
|
|
toggleSafetyNumberModal,
|
|
toggleNotePreviewModal,
|
|
toggleProfileNameWarningModal,
|
|
} = useGlobalModalActions();
|
|
|
|
const handleOpenNotePreviewModal = useCallback(() => {
|
|
strictAssert(contactId != null, 'contactId is required');
|
|
toggleNotePreviewModal({ conversationId: contactId });
|
|
}, [toggleNotePreviewModal, contactId]);
|
|
|
|
if (contact == null) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<AboutContactModal
|
|
i18n={i18n}
|
|
canAddLabel={canAddLabel}
|
|
contact={contact}
|
|
contactLabelEmoji={contactLabelEmoji}
|
|
contactLabelString={contactLabelString}
|
|
contactNameColor={contactNameColor}
|
|
fromOrAddedByTrustedContact={isFromOrAddedByTrustedContact(contact)}
|
|
isEditMemberLabelEnabled={false}
|
|
isSignalConnection={isSignalConnection(contact)}
|
|
onClose={toggleAboutContactModal}
|
|
onOpenNotePreviewModal={handleOpenNotePreviewModal}
|
|
pendingAvatarDownload={
|
|
conversationId ? isPendingAvatarDownload(conversationId) : false
|
|
}
|
|
sharedGroupNames={sharedGroupNames}
|
|
startAvatarDownload={
|
|
conversationId ? () => startAvatarDownload(conversationId) : undefined
|
|
}
|
|
toggleProfileNameWarningModal={toggleProfileNameWarningModal}
|
|
toggleSafetyNumberModal={toggleSafetyNumberModal}
|
|
toggleSignalConnectionsModal={toggleSignalConnectionsModal}
|
|
/>
|
|
);
|
|
});
|