Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Aug 25, 2022
1 parent 26b5ed4 commit b3481ae
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 57 deletions.
43 changes: 0 additions & 43 deletions apps/meteor/client/hooks/omnichannel/useOmnichannelContact.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ const VoipFooterTemplate: ComponentStory<typeof VoipFooter> = (args) => {
callsInQueue='2 Calls In Queue'
dispatchEvent={() => null}
openedRoomInfo={{ v: { token: '' }, rid: '' }}
anonymousText={'Anonymous'}
options={{
deviceSettings: {
label: (
Expand Down
14 changes: 7 additions & 7 deletions apps/meteor/client/sidebar/footer/voip/VoipFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import React, { ReactElement, MouseEvent, ReactNode } from 'react';

import type { VoipFooterMenuOptions } from '../../../../ee/client/hooks/useVoipFooterMenu';
import { CallActionsType } from '../../../contexts/CallContext';
import { useOmnichannelContact } from '../../../hooks/omnichannel/useOmnichannelContact';
import { useOmnichannelContactLabel } from './hooks/useOmnichannelContactLabel';

type VoipFooterPropsType = {
caller: ICallerInfo;
Expand All @@ -32,7 +32,6 @@ type VoipFooterPropsType = {
openRoom: (rid: IVoipRoom['_id']) => void;
dispatchEvent: (params: { event: VoipClientEvents; rid: string; comment?: string }) => void;
openedRoomInfo: { v: { token?: string | undefined }; rid: string };
anonymousText: string;
isEnterprise: boolean;
children?: ReactNode;
options: VoipFooterMenuOptions;
Expand All @@ -54,12 +53,11 @@ export const VoipFooter = ({
callsInQueue,
dispatchEvent,
openedRoomInfo,
anonymousText,
isEnterprise = false,
children,
options,
}: VoipFooterPropsType): ReactElement => {
const { contact } = useOmnichannelContact(caller.callerId);
const contactLabel = useOmnichannelContactLabel(caller);
const t = useTranslation();

const cssClickable =
Expand All @@ -80,7 +78,6 @@ export const VoipFooter = ({
<SidebarFooter elevated>
<Box
className={cssClickable}
data-qa-id='omncVoipFooter'
onClick={(): void => {
if (callerState === 'IN_CALL' || callerState === 'ON_HOLD') {
openRoom(openedRoomInfo.rid);
Expand Down Expand Up @@ -121,8 +118,11 @@ export const VoipFooter = ({
</Box>
<Box display='flex' flexDirection='row' mi='16px' mbe='12px' justifyContent='space-between' alignItems='center'>
<Box>
<Box color='white' fontScale='p2' withTruncatedText data-qa-id='omncVoipTitle'>
{contact.name || caller.callerName || contact.phone || anonymousText}
<Box color='white' fontScale='p2' withTruncatedText>
{/* TODO: Check what is the point of having Anonymous here,
since callerId and callerName are required and they act as a fallback
*/}
{contactLabel || t('Anonymous')}
</Box>
<Box color='hint' fontScale='c1' withTruncatedText>
{subtitle}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { ICallerInfo } from '@rocket.chat/core-typings';
import { useEndpoint } from '@rocket.chat/ui-contexts';
import { useQuery } from '@tanstack/react-query';

import { parseOutboundPhoneNumber } from '../../../../../ee/client/lib/voip/parseOutboundPhoneNumber';

export const useOmnichannelContactLabel = (caller: ICallerInfo): string => {
const getContactBy = useEndpoint('GET', '/v1/omnichannel/contact.search');
const phone = parseOutboundPhoneNumber(caller.callerId);

const { data } = useQuery(['getContactsByPhone', phone], async () => getContactBy({ phone }).then(({ contact }) => contact));

// TODO: callerName is typed as required so maybe we should not use phone as fallback
return data?.name || caller.callerName || phone;
};
1 change: 0 additions & 1 deletion apps/meteor/client/sidebar/footer/voip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ export const VoipFooter = (): ReactElement | null => {
callsInQueue={getCallsInQueueText}
dispatchEvent={dispatchEvent}
openedRoomInfo={openedRoomInfo}
anonymousText={t('Anonymous')}
isEnterprise={isEnterprise}
options={options}
/>
Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/client/sidebar/sections/OmnichannelSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const OmnichannelSection = (props: typeof Box): ReactElement => {

// The className is a paliative while we make TopBar.ToolBox optional on fuselage
return (
<Sidebar.TopBar.ToolBox className='omnichannel-sidebar' data-qa-id='omncSection' {...props}>
<Sidebar.TopBar.ToolBox className='omnichannel-sidebar' {...props}>
<Sidebar.TopBar.Title>{t('Omnichannel')}</Sidebar.TopBar.Title>
<Sidebar.TopBar.Actions>
{showOmnichannelQueueLink && <Sidebar.TopBar.Action icon='queue' title={t('Queue')} onClick={(): void => handleRoute('queue')} />}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import React, { ReactElement } from 'react';

export const OmnichannelCallToggleError = ({ ...props }): ReactElement => {
const t = useTranslation();
return <Sidebar.TopBar.Action icon='phone' danger data-title={t('Error')} data-qa-id='omncVoipToggleButton' disabled {...props} />;
return <Sidebar.TopBar.Action icon='phone' danger data-title={t('Error')} disabled {...props} />;
};
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const DeviceManagementFeatureModal = ({ close }: { close: () => void }): ReactEl
};

return (
<Modal data-qa-id='deviceManagementFeatureModal'>
<Modal>
<Modal.Header>
<Modal.Title withTruncatedText={false}>{t('Workspace_now_using_device_management')}</Modal.Title>
<Modal.Close title={t('Close')} onClick={close} />
Expand Down
3 changes: 1 addition & 2 deletions apps/meteor/ee/client/voip/modal/DialPad/DialPadModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const DialPadModal = ({ initialValue, errorMessage, handleClose }: DialPadModalP
useEnterKey(handleCallButtonClick, isButtonDisabled);

return (
<Modal maxWidth='400px' data-qa-id='omncDialpadModal'>
<Modal maxWidth='400px'>
<Modal.Header>
<Modal.Title />
<Modal.Close onClick={handleClose} />
Expand Down Expand Up @@ -57,7 +57,6 @@ const DialPadModal = ({ initialValue, errorMessage, handleClose }: DialPadModalP
secondary
info
size='64px'
data-qa-id='omncDialpadCallButton'
onClick={(): void => {
handleCallButtonClick();
handleClose();
Expand Down

0 comments on commit b3481ae

Please sign in to comment.