You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/components/conversation/message/message-item/notification-bubble/CallNotification.tsx

71 lines
2.1 KiB
TypeScript

import { PubKey } from '../../../../../session/types';
import { CallNotificationType, PropsForCallNotification } from '../../../../../state/ducks/types';
import {
useSelectedConversationKey,
useSelectedDisplayNameInProfile,
useSelectedNickname,
} from '../../../../../state/selectors/selectedConversation';
import { LocalizerToken } from '../../../../../types/Localizer';
import { SessionIconType } from '../../../../icon';
import { ExpirableReadableMessage } from '../ExpirableReadableMessage';
import { NotificationBubble } from './NotificationBubble';
type StyleType = Record<
CallNotificationType,
{ notificationTextKey: LocalizerToken; iconType: SessionIconType; iconColor: string }
>;
const style = {
'missed-call': {
notificationTextKey: 'callsMissedCallFrom',
iconType: 'callMissed',
iconColor: 'var(--danger-color)',
},
'started-call': {
notificationTextKey: 'callsYouCalled',
iconType: 'callOutgoing',
iconColor: 'inherit',
},
'answered-a-call': {
notificationTextKey: 'callsInProgress',
iconType: 'callIncoming',
iconColor: 'inherit',
},
} satisfies StyleType;
export const CallNotification = (props: PropsForCallNotification) => {
const { messageId, notificationType } = props;
const selectedConvoId = useSelectedConversationKey();
const displayNameInProfile = useSelectedDisplayNameInProfile();
const nickname = useSelectedNickname();
const displayName =
nickname || displayNameInProfile || (selectedConvoId && PubKey.shorten(selectedConvoId));
const styleItem = style[notificationType];
const notificationText = window.i18n(styleItem.notificationTextKey, {
name: displayName ?? window.i18n('unknown'),
});
const iconType = styleItem.iconType;
const iconColor = styleItem.iconColor;
return (
<ExpirableReadableMessage
messageId={messageId}
key={`readable-message-${messageId}`}
dataTestId={`call-notification-${notificationType}`}
isControlMessage={true}
>
<NotificationBubble
notificationText={notificationText}
iconType={iconType}
iconColor={iconColor}
/>
</ExpirableReadableMessage>
);
};