bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/chat/chat-graphql/chat-header/component.tsx

124 lines
4.1 KiB
TypeScript
Raw Normal View History

import React from 'react';
import Header from '/imports/ui/components/common/control-header/component';
import { useQuery } from '@apollo/client';
import { GET_CHAT_DATA, GetChatDataResponse } from './queries';
import { defineMessages, useIntl } from 'react-intl';
import { closePrivateChat } from './services';
import { layoutSelect, layoutDispatch } from '../../../layout/context';
import { useShortcutHelp } from '../../../shortcut-help/useShortcutHelp';
import { Layout } from '../../../layout/layoutTypes';
import { ACTIONS, PANELS } from '../../../layout/enums';
2023-05-20 02:35:04 +08:00
import { ChatActions } from './chat-actions/component';
interface ChatHeaderProps {
chatId: string;
isPublicChat: boolean;
title: string;
}
const intlMessages = defineMessages({
closeChatLabel: {
id: 'app.chat.closeChatLabel',
description: 'aria-label for closing chat button',
},
hideChatLabel: {
id: 'app.chat.hideChatLabel',
description: 'aria-label for hiding chat button',
},
titlePublic: {
id: 'app.chat.titlePublic',
description: 'Public chat title',
},
titlePrivate: {
id: 'app.chat.titlePrivate',
description: 'Private chat title',
},
});
const ChatHeader: React.FC<ChatHeaderProps> = ({ chatId, isPublicChat, title}) => {
const HIDE_CHAT_AK = useShortcutHelp('hideprivatechat');
const CLOSE_CHAT_AK = useShortcutHelp('closeprivatechat');
const layoutContextDispatch = layoutDispatch();
const intl = useIntl();
return (
<Header
data-test="chatTitle"
leftButtonProps={{
accessKey: chatId !== 'public' ? HIDE_CHAT_AK : null,
'aria-label': intl.formatMessage(intlMessages.hideChatLabel, { 0: title }),
'data-test': isPublicChat ? 'hidePublicChat' : 'hidePrivateChat',
label: title,
onClick: () => {
layoutContextDispatch({
type: ACTIONS.SET_SIDEBAR_CONTENT_IS_OPEN,
value: false,
});
layoutContextDispatch({
type: ACTIONS.SET_ID_CHAT_OPEN,
value: '',
});
layoutContextDispatch({
type: ACTIONS.SET_SIDEBAR_CONTENT_PANEL,
value: PANELS.NONE,
});
},
}}
rightButtonProps={{
accessKey: CLOSE_CHAT_AK,
'aria-label': intl.formatMessage(intlMessages.closeChatLabel, { 0: title }),
'data-test': 'closePrivateChat',
icon: 'close',
label: intl.formatMessage(intlMessages.closeChatLabel, { 0: title }),
onClick: () => {
closePrivateChat(chatId);
layoutContextDispatch({
type: ACTIONS.SET_SIDEBAR_CONTENT_IS_OPEN,
value: false,
});
layoutContextDispatch({
type: ACTIONS.SET_ID_CHAT_OPEN,
value: '',
});
layoutContextDispatch({
type: ACTIONS.SET_SIDEBAR_CONTENT_PANEL,
value: PANELS.NONE,
});
},
}}
customRightButton={isPublicChat? <ChatActions /> : null}
/>
);
};
const isChatResponse = (data: unknown): data is GetChatDataResponse => {
return (data as GetChatDataResponse).chat !== undefined;
};
const ChatHeaderContainer: React.FC<ChatHeaderProps> = () => {
const intl = useIntl();
const idChatOpen = layoutSelect((i: Layout) => i.idChatOpen);
const {
data: chatData,
loading: chatDataLoading,
error: chatDataError,
} = useQuery<GetChatDataResponse>(GET_CHAT_DATA, {
variables: { chatId: idChatOpen },
});
if (chatDataLoading) return null;
if (chatDataError) return (<div>Error: {JSON.stringify(chatDataError)}</div>);
if (!isChatResponse(chatData)) return (<div>Error: {JSON.stringify(chatData)}</div>);
const isPublicChat = chatData.chat[0]?.public;
const title = isPublicChat ? intl.formatMessage(intlMessages.titlePublic)
: intl.formatMessage(intlMessages.titlePrivate, { 0: chatData?.chat[0]?.participant?.name });
return (
<ChatHeader
chatId={idChatOpen}
isPublicChat={isPublicChat}
title={title}
/>
);
};
export default ChatHeaderContainer;