* add incindent messages * feat(proto): regenerated proto files * feat(proto): insert incident message to CH * added incidents * genereate mobs * feat(db): added incident event insertion to PG * add incidents to session config * fixed activity incident highlight * fixed incidents search --------- Co-authored-by: Андрей Бабушкин <andreybabushkin2000@gmail.com>
211 lines
5.5 KiB
TypeScript
211 lines
5.5 KiB
TypeScript
import { TYPES } from 'Types/session/event';
|
|
import React, { useMemo } from 'react';
|
|
import { observer } from 'mobx-react-lite';
|
|
import { useStore } from 'App/mstore';
|
|
import UxtEvent from 'Components/Session_/EventsBlock/UxtEvent';
|
|
import { Icon, TextEllipsis } from 'UI';
|
|
|
|
import cn from 'classnames';
|
|
import Event from './Event';
|
|
import NoteEvent from './NoteEvent';
|
|
import stl from './eventGroupWrapper.module.css';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
function EventGroupWrapper(props) {
|
|
const { userStore } = useStore();
|
|
const currentUserId = userStore.account.id;
|
|
|
|
const onEventClick = (e) => props.onEventClick(e, props.event);
|
|
|
|
const onCheckboxClick = (e) => props.onCheckboxClick(e, props.event);
|
|
|
|
const {
|
|
event,
|
|
isLastEvent,
|
|
isLastInGroup,
|
|
isSelected,
|
|
isCurrent,
|
|
isSearched,
|
|
isEditing,
|
|
showSelection,
|
|
isFirst,
|
|
presentInSearch,
|
|
isNote,
|
|
isTabChange,
|
|
isIncident,
|
|
filterOutNote,
|
|
} = props;
|
|
const { t } = useTranslation();
|
|
const isLocation = event.type === TYPES.LOCATION;
|
|
const isUxtEvent = event.type === TYPES.UXT_EVENT;
|
|
|
|
const whiteBg =
|
|
(isLastInGroup && event.type !== TYPES.LOCATION) ||
|
|
(!isLastEvent && event.type !== TYPES.LOCATION);
|
|
const safeRef = String(event.referrer || '');
|
|
|
|
const returnEvt = () => {
|
|
if (isUxtEvent) {
|
|
return <UxtEvent event={event} />;
|
|
}
|
|
if (isNote) {
|
|
return (
|
|
<NoteEvent
|
|
setActiveTab={props.setActiveTab}
|
|
note={event}
|
|
filterOutNote={filterOutNote}
|
|
noEdit={currentUserId !== event.userId}
|
|
/>
|
|
);
|
|
}
|
|
if (isIncident) {
|
|
return (
|
|
<Incident
|
|
isCurrent={isCurrent}
|
|
label={event.label}
|
|
onClick={onEventClick}
|
|
/>
|
|
)
|
|
}
|
|
if (isLocation) {
|
|
return (
|
|
<Event
|
|
extended={isFirst}
|
|
key={event.key}
|
|
event={event}
|
|
onClick={onEventClick}
|
|
selected={isSelected}
|
|
showLoadInfo
|
|
isCurrent={isCurrent}
|
|
presentInSearch={presentInSearch}
|
|
isLastInGroup={isLastInGroup}
|
|
whiteBg
|
|
/>
|
|
);
|
|
}
|
|
if (isTabChange) {
|
|
return (
|
|
<TabChange
|
|
onClick={onEventClick}
|
|
from={event.fromTab}
|
|
to={event.toTab}
|
|
activeUrl={event.activeUrl}
|
|
/>
|
|
);
|
|
}
|
|
return (
|
|
<Event
|
|
key={event.key}
|
|
event={event}
|
|
onClick={onEventClick}
|
|
onCheckboxClick={onCheckboxClick}
|
|
selected={isSelected}
|
|
isCurrent={isCurrent}
|
|
showSelection={showSelection}
|
|
overlayed={isEditing}
|
|
presentInSearch={presentInSearch}
|
|
isLastInGroup={isLastInGroup}
|
|
whiteBg={whiteBg}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const shadowColor = useMemo(() => {
|
|
if (isSearched) {
|
|
return '#F0A930';
|
|
}
|
|
if (props.isPrev) {
|
|
return '#A7BFFF';
|
|
}
|
|
if (props.isCurrent) {
|
|
return '#394EFF';
|
|
}
|
|
return 'transparent';
|
|
}, [isSearched, props.isPrev, props.isCurrent]);
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
<div
|
|
style={{
|
|
position: 'absolute',
|
|
left: 0,
|
|
top: 0,
|
|
width: 1.5,
|
|
height: '100%',
|
|
backgroundColor: shadowColor,
|
|
zIndex: 98,
|
|
}}
|
|
/>
|
|
{props.isCurrent ? (
|
|
<div
|
|
style={{
|
|
position: 'absolute',
|
|
top: '50%',
|
|
left: -10,
|
|
width: 10,
|
|
height: 10,
|
|
transform: 'rotate(45deg) translate(0, -50%)',
|
|
background: isSearched ? '#F0A930' : '#394EFF',
|
|
zIndex: 99,
|
|
borderRadius: '.15rem',
|
|
}}
|
|
/>
|
|
) : null}
|
|
{isFirst && isLocation && event.referrer && (
|
|
<TextEllipsis>
|
|
<div className={stl.referrer}>
|
|
{t('Referrer:')}{' '}
|
|
<span className={cn(stl.url, '!font-normal')}>{safeRef}</span>
|
|
</div>
|
|
</TextEllipsis>
|
|
)}
|
|
{returnEvt()}
|
|
</div>
|
|
{isLastInGroup && !isTabChange && (
|
|
<div className="border-color-gray-light-shade" />
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
function TabChange({ from, to, activeUrl, onClick }) {
|
|
if (!from) {
|
|
return null;
|
|
}
|
|
return (
|
|
<div
|
|
onClick={onClick}
|
|
className="cursor-pointer bg-gray-lightest w-full py-2 border-b hover:bg-active-blue"
|
|
>
|
|
<div className="flex items-center gap-2 px-4">
|
|
<span style={{ fontWeight: 500 }}>{from}</span>
|
|
<Icon name="arrow-right-short" size={18} color="gray-dark" />
|
|
<span style={{ fontWeight: 500 }}>{to}</span>
|
|
</div>
|
|
<div className="break-words mt-1 px-4 text-sm font-normal color-gray-medium whitespace-nowrap">
|
|
{activeUrl}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
function Incident({ label, onClick }: { label: string; onClick: () => void }) {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div
|
|
onClick={onClick}
|
|
className="pr-6 pl-4 py-2 relative user-select-none transition-all duration-200 cursor-pointer rounded-[3px] hover:bg-[var(--color-active-blue)] bg-[var(--color-white)]"
|
|
>
|
|
<div className='flex items-center py-2 gap-[10.5px]'>
|
|
<Icon name="console/warning" size={18} color="gray-dark" />
|
|
<div className="flex flex-col">
|
|
<span style={{ fontWeight: 500 }}>{t('Incident')}</span>
|
|
<span className="text-ellipsis overflow-hidden whitespace-nowrap max-w-full text-sm text-[var(--color-gray-medium)]">{label}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default observer(EventGroupWrapper);
|