2022-03-08 09:10:30 +00:00
|
|
|
import Spinner from '@atlaskit/spinner';
|
|
|
|
import React, { useCallback } from 'react';
|
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import { useDispatch } from 'react-redux';
|
2022-09-13 07:36:00 +00:00
|
|
|
import { makeStyles } from 'tss-react/mui';
|
2022-03-08 09:10:30 +00:00
|
|
|
|
2022-10-11 10:47:54 +00:00
|
|
|
import { hideDialog } from '../../../base/dialog/actions';
|
2022-08-25 11:35:19 +00:00
|
|
|
import Icon from '../../../base/icons/components/Icon';
|
2022-09-06 17:32:20 +00:00
|
|
|
import { IconSearch } from '../../../base/icons/svg';
|
2022-10-17 11:27:48 +00:00
|
|
|
import { getFieldValue } from '../../../base/react/functions';
|
2022-09-13 07:36:00 +00:00
|
|
|
import { withPixelLineHeight } from '../../../base/styles/functions.web';
|
2022-10-18 10:56:08 +00:00
|
|
|
import Dialog from '../../../base/ui/components/web/Dialog';
|
2022-03-08 09:10:30 +00:00
|
|
|
import { NOTES_MAX_LENGTH } from '../../constants';
|
|
|
|
import { useSalesforceLinkDialog } from '../../useSalesforceLinkDialog';
|
|
|
|
|
|
|
|
import { RecordItem } from './RecordItem';
|
|
|
|
|
2022-11-15 07:50:22 +00:00
|
|
|
const useStyles = makeStyles()(theme => {
|
2022-03-08 09:10:30 +00:00
|
|
|
return {
|
|
|
|
container: {
|
2022-12-12 17:15:45 +00:00
|
|
|
height: '450px',
|
2022-03-08 09:10:30 +00:00
|
|
|
overflowY: 'auto',
|
|
|
|
position: 'relative'
|
|
|
|
},
|
|
|
|
recordsSearchContainer: {
|
|
|
|
position: 'relative',
|
|
|
|
padding: '1px'
|
|
|
|
},
|
|
|
|
searchIcon: {
|
|
|
|
display: 'block',
|
|
|
|
position: 'absolute',
|
|
|
|
color: theme.palette.text03,
|
|
|
|
left: 16,
|
|
|
|
top: 10,
|
|
|
|
width: 20,
|
|
|
|
height: 20
|
|
|
|
},
|
|
|
|
resultLabel: {
|
|
|
|
fontSize: '15px',
|
|
|
|
margin: '16px 0 8px'
|
|
|
|
},
|
|
|
|
recordsSearch: {
|
|
|
|
backgroundColor: theme.palette.field01,
|
|
|
|
border: '1px solid',
|
|
|
|
borderRadius: theme.shape.borderRadius,
|
2022-07-12 12:28:20 +00:00
|
|
|
borderColor: theme.palette.ui05,
|
2022-03-08 09:10:30 +00:00
|
|
|
color: theme.palette.text01,
|
|
|
|
padding: '10px 16px 10px 44px',
|
|
|
|
width: '100%',
|
|
|
|
height: 40,
|
|
|
|
'&::placeholder': {
|
|
|
|
color: theme.palette.text03,
|
2022-09-13 07:36:00 +00:00
|
|
|
...withPixelLineHeight(theme.typography.bodyShortRegular)
|
2022-03-08 09:10:30 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
spinner: {
|
|
|
|
alignItems: 'center',
|
|
|
|
display: 'flex',
|
2022-12-12 17:15:45 +00:00
|
|
|
height: 'calc(100% - 70px)',
|
2022-03-08 09:10:30 +00:00
|
|
|
justifyContent: 'center',
|
2022-12-12 17:15:45 +00:00
|
|
|
width: '100%',
|
|
|
|
|
|
|
|
'@media (max-width: 448px)': {
|
|
|
|
height: 'auto',
|
|
|
|
marginTop: '24px'
|
|
|
|
}
|
2022-03-08 09:10:30 +00:00
|
|
|
},
|
|
|
|
noRecords: {
|
|
|
|
height: 'calc(100% - 150px)',
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
2022-12-12 17:15:45 +00:00
|
|
|
flexDirection: 'column',
|
|
|
|
|
|
|
|
'@media (max-width: 448px)': {
|
|
|
|
height: 'auto',
|
|
|
|
marginTop: '24px'
|
|
|
|
}
|
2022-03-08 09:10:30 +00:00
|
|
|
},
|
|
|
|
recordsError: {
|
2022-12-12 17:15:45 +00:00
|
|
|
height: 'calc(100% - 42px)',
|
2022-03-08 09:10:30 +00:00
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
2022-12-12 17:15:45 +00:00
|
|
|
flexDirection: 'column',
|
|
|
|
|
|
|
|
'@media (max-width: 448px)': {
|
|
|
|
height: 'auto',
|
|
|
|
marginTop: '24px'
|
|
|
|
}
|
2022-03-08 09:10:30 +00:00
|
|
|
},
|
|
|
|
recordList: {
|
|
|
|
listStyle: 'none',
|
|
|
|
margin: '10px 0',
|
|
|
|
padding: 0
|
|
|
|
},
|
|
|
|
recordInfo: {
|
|
|
|
backgroundColor: theme.palette.ui03,
|
|
|
|
padding: '0 16px',
|
|
|
|
borderRadius: theme.shape.borderRadius,
|
|
|
|
marginBottom: '28px'
|
|
|
|
},
|
|
|
|
detailsError: {
|
|
|
|
padding: '10px 0'
|
|
|
|
},
|
|
|
|
addNote: {
|
|
|
|
padding: '10px 0'
|
|
|
|
},
|
|
|
|
notes: {
|
|
|
|
lineHeight: '18px',
|
|
|
|
minHeight: '130px',
|
|
|
|
resize: 'vertical',
|
|
|
|
width: '100%',
|
2022-10-17 11:27:48 +00:00
|
|
|
boxSizing: 'border-box',
|
2022-03-08 09:10:30 +00:00
|
|
|
overflow: 'hidden',
|
|
|
|
border: '1px solid',
|
2022-07-12 12:28:20 +00:00
|
|
|
borderColor: theme.palette.ui05,
|
2022-03-08 09:10:30 +00:00
|
|
|
backgroundColor: theme.palette.field01,
|
2022-11-28 10:52:45 +00:00
|
|
|
|
2022-09-13 07:36:00 +00:00
|
|
|
// @ts-ignore
|
2022-03-08 09:10:30 +00:00
|
|
|
color: theme.palette.field02,
|
|
|
|
borderRadius: theme.shape.borderRadius,
|
|
|
|
padding: '10px 16px'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component that renders the Salesforce link dialog.
|
|
|
|
*
|
|
|
|
* @returns {React$Element<any>}
|
|
|
|
*/
|
|
|
|
function SalesforceLinkDialog() {
|
|
|
|
const { t } = useTranslation();
|
2022-09-13 07:36:00 +00:00
|
|
|
const { classes, theme } = useStyles();
|
2022-03-08 09:10:30 +00:00
|
|
|
const dispatch = useDispatch();
|
|
|
|
const {
|
|
|
|
hasDetailsErrors,
|
|
|
|
hasRecordsErrors,
|
|
|
|
isLoading,
|
|
|
|
linkMeeting,
|
|
|
|
notes,
|
|
|
|
records,
|
|
|
|
searchTerm,
|
|
|
|
selectedRecord,
|
|
|
|
selectedRecordOwner,
|
|
|
|
setNotes,
|
|
|
|
setSearchTerm,
|
|
|
|
setSelectedRecord,
|
|
|
|
showNoResults,
|
|
|
|
showSearchResults
|
|
|
|
} = useSalesforceLinkDialog();
|
|
|
|
|
2022-08-25 11:35:19 +00:00
|
|
|
const handleChange = useCallback((event: React.ChangeEvent<HTMLInputElement>) => {
|
2022-03-08 09:10:30 +00:00
|
|
|
const value = getFieldValue(event);
|
|
|
|
|
|
|
|
setSearchTerm(value);
|
|
|
|
}, [ getFieldValue ]);
|
|
|
|
|
|
|
|
const handleSubmit = useCallback(() => {
|
|
|
|
dispatch(hideDialog());
|
2022-12-12 17:15:45 +00:00
|
|
|
selectedRecord && linkMeeting();
|
2022-03-08 09:10:30 +00:00
|
|
|
}, [ hideDialog, linkMeeting ]);
|
|
|
|
|
|
|
|
const renderSpinner = () => (
|
|
|
|
<div className = { classes.spinner }>
|
|
|
|
<Spinner
|
2022-11-28 10:52:45 +00:00
|
|
|
|
2022-08-25 11:35:19 +00:00
|
|
|
// @ts-ignore
|
2022-03-08 09:10:30 +00:00
|
|
|
isCompleting = { false }
|
|
|
|
size = 'medium' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const renderDetailsErrors = () => (
|
|
|
|
<div className = { classes.detailsError }>
|
|
|
|
{t('dialog.searchResultsDetailsError')}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const renderSelection = () => (
|
|
|
|
<div>
|
|
|
|
<div className = { classes.recordInfo }>
|
2022-10-28 08:53:24 +00:00
|
|
|
{/* @ts-ignore */}
|
2022-03-08 09:10:30 +00:00
|
|
|
<RecordItem { ...selectedRecord } />
|
2022-10-28 08:53:24 +00:00
|
|
|
{/* @ts-ignore */}
|
2022-03-08 09:10:30 +00:00
|
|
|
{selectedRecordOwner && <RecordItem { ...selectedRecordOwner } />}
|
|
|
|
{hasDetailsErrors && renderDetailsErrors()}
|
|
|
|
</div>
|
|
|
|
<div className = { classes.addNote }>{t('dialog.addOptionalNote')}</div>
|
|
|
|
<textarea
|
|
|
|
autoFocus = { true }
|
|
|
|
className = { classes.notes }
|
|
|
|
maxLength = { NOTES_MAX_LENGTH }
|
|
|
|
/* eslint-disable-next-line react/jsx-no-bind */
|
|
|
|
onChange = { e => setNotes(e.target.value) }
|
|
|
|
placeholder = { t('dialog.addMeetingNote') }
|
2022-08-25 11:35:19 +00:00
|
|
|
rows = { 4 }
|
2022-03-08 09:10:30 +00:00
|
|
|
value = { notes } />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const renderRecordsSearch = () => !selectedRecord && (
|
|
|
|
<div className = { classes.recordsSearchContainer }>
|
|
|
|
<Icon
|
|
|
|
className = { classes.searchIcon }
|
2022-09-13 07:36:00 +00:00
|
|
|
color = { theme.palette.icon03 }
|
2022-03-08 09:10:30 +00:00
|
|
|
src = { IconSearch } />
|
|
|
|
<input
|
|
|
|
autoComplete = 'off'
|
|
|
|
autoFocus = { false }
|
|
|
|
className = { classes.recordsSearch }
|
|
|
|
name = 'recordsSearch'
|
|
|
|
onChange = { handleChange }
|
|
|
|
placeholder = { t('dialog.searchInSalesforce') }
|
|
|
|
tabIndex = { 0 }
|
2022-10-28 08:53:24 +00:00
|
|
|
value = { searchTerm ?? '' } />
|
2022-03-08 09:10:30 +00:00
|
|
|
{(!isLoading && !hasRecordsErrors) && (
|
|
|
|
<div className = { classes.resultLabel }>
|
|
|
|
{showSearchResults
|
|
|
|
? t('dialog.searchResults', { count: records.length })
|
|
|
|
: t('dialog.recentlyUsedObjects')
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const renderNoRecords = () => showNoResults && (
|
|
|
|
<div className = { classes.noRecords }>
|
|
|
|
<div>{t('dialog.searchResultsNotFound')}</div>
|
|
|
|
<div>{t('dialog.searchResultsTryAgain')}</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const renderRecordsError = () => (
|
|
|
|
<div className = { classes.recordsError }>
|
|
|
|
{t('dialog.searchResultsError')}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const renderContent = () => {
|
|
|
|
if (isLoading) {
|
|
|
|
return renderSpinner();
|
|
|
|
}
|
|
|
|
if (hasRecordsErrors) {
|
|
|
|
return renderRecordsError();
|
|
|
|
}
|
|
|
|
if (showNoResults) {
|
|
|
|
return renderNoRecords();
|
|
|
|
}
|
|
|
|
if (selectedRecord) {
|
|
|
|
return renderSelection();
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ul className = { classes.recordList }>
|
2022-08-25 11:35:19 +00:00
|
|
|
{records.map((item: any) => (
|
2022-03-08 09:10:30 +00:00
|
|
|
<RecordItem
|
|
|
|
key = { `record-${item.id}` }
|
|
|
|
/* eslint-disable-next-line react/jsx-no-bind */
|
|
|
|
onClick = { () => setSelectedRecord(item) }
|
|
|
|
{ ...item } />
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Dialog
|
2022-10-18 10:56:08 +00:00
|
|
|
back = {{
|
|
|
|
hidden: !selectedRecord,
|
|
|
|
onClick: () => setSelectedRecord(null),
|
|
|
|
translationKey: 'dialog.Back'
|
|
|
|
}}
|
|
|
|
cancel = {{ hidden: true }}
|
2022-03-08 09:10:30 +00:00
|
|
|
disableEnter = { true }
|
2022-10-18 10:56:08 +00:00
|
|
|
ok = {{
|
|
|
|
translationKey: 'dialog.linkMeeting',
|
|
|
|
hidden: !selectedRecord
|
|
|
|
}}
|
2022-03-08 09:10:30 +00:00
|
|
|
onSubmit = { handleSubmit }
|
2022-10-18 10:56:08 +00:00
|
|
|
titleKey = 'dialog.linkMeetingTitle'>
|
2022-03-08 09:10:30 +00:00
|
|
|
<div className = { classes.container } >
|
|
|
|
{renderRecordsSearch()}
|
|
|
|
{renderContent()}
|
|
|
|
</div>
|
|
|
|
</Dialog>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default SalesforceLinkDialog;
|