import React, { useMemo } from 'react'; import { defineMessages, useIntl } from 'react-intl'; import { useHistory } from 'react-router-dom'; import { openModal } from 'soapbox/actions/modals'; import DropdownMenu from 'soapbox/components/dropdown-menu'; import RelativeTimestamp from 'soapbox/components/relative-timestamp'; import { Avatar, HStack, IconButton, Stack, Text } from 'soapbox/components/ui'; import VerificationBadge from 'soapbox/components/verification-badge'; import { useChatContext } from 'soapbox/contexts/chat-context'; import { useAppDispatch, useAppSelector, useFeatures } from 'soapbox/hooks'; import { IChat, useChatActions } from 'soapbox/queries/chats'; import type { Menu } from 'soapbox/components/dropdown-menu'; const messages = defineMessages({ blockedYou: { id: 'chat_list_item.blocked_you', defaultMessage: 'This user has blocked you' }, blocking: { id: 'chat_list_item.blocking', defaultMessage: 'You have blocked this user' }, leaveMessage: { id: 'chat_settings.leave.message', defaultMessage: 'Are you sure you want to leave this chat? Messages will be deleted for you and this chat will be removed from your inbox.' }, leaveHeading: { id: 'chat_settings.leave.heading', defaultMessage: 'Leave Chat' }, leaveConfirm: { id: 'chat_settings.leave.confirm', defaultMessage: 'Leave Chat' }, leaveChat: { id: 'chat_settings.options.leave_chat', defaultMessage: 'Leave Chat' }, }); interface IChatListItemInterface { chat: IChat, onClick: (chat: any) => void, } const ChatListItem: React.FC = ({ chat, onClick }) => { const dispatch = useAppDispatch(); const intl = useIntl(); const features = useFeatures(); const history = useHistory(); const { isUsingMainChatPage } = useChatContext(); const { deleteChat } = useChatActions(chat?.id as string); const isBlocked = useAppSelector((state) => state.getIn(['relationships', chat.account.id, 'blocked_by'])); const isBlocking = useAppSelector((state) => state.getIn(['relationships', chat?.account?.id, 'blocking'])); const menu = useMemo((): Menu => [{ text: intl.formatMessage(messages.leaveChat), action: (event) => { event.stopPropagation(); dispatch(openModal('CONFIRM', { heading: intl.formatMessage(messages.leaveHeading), message: intl.formatMessage(messages.leaveMessage), confirm: intl.formatMessage(messages.leaveConfirm), confirmationTheme: 'primary', onConfirm: () => { deleteChat.mutate(undefined, { onSuccess() { if (isUsingMainChatPage) { history.push('/chats'); } }, }); }, })); }, icon: require('@tabler/icons/logout.svg'), }], []); return ( // eslint-disable-next-line jsx-a11y/interactive-supports-focus
onClick(chat)} className='group flex w-full flex-col rounded-lg px-2 py-3 hover:bg-gray-100 focus:shadow-inset-ring dark:hover:bg-gray-800' data-testid='chat-list-item' >
{chat.account?.display_name || `@${chat.account.username}`} {chat.account?.verified && }
{(isBlocked || isBlocking) ? ( {intl.formatMessage(isBlocked ? messages.blockedYou : messages.blocking)} ) : ( <> {chat.last_message?.content && ( )} )}
{features.chatsDelete && (
)} {chat.last_message && ( <> {chat.last_message.unread && (
)} )}
); }; export default ChatListItem;