openreplay/frontend/app/components/Session_/EventsBlock/EventGroupWrapper.js
Delirium 2cd96b0df0
Highlight UI (#2951)
* ui: start highlight ui

* ui: tag items

* ui: connecting highlights to notes api...

* Highlight feature refinements (#2948)

* ui: move clips player to foss, connect notes api to hl

* ui: tune note/hl editing, prevent zoom slider body from jumping around

* ui: safe check for tag

* ui: fix thumbnail gen

* ui: fix thumbnail gen

* ui: make player modal wider, add shadow

* ui: custom warn barge for clips

* ui: swap icon for note event wrapper

* ui: rm other, fix cancel

* ui: moving around creation modal

* ui: bg tint

* ui: rm disabled for text btn

* ui: fix ownership sorting

* ui: close player on bg click

* ui: fix query, fix min distance for default range

* ui: move hl list header out of list comp

* ui: spot list header segmented size

* Various improvements in highlights (#2955)

* ui: update hl in hlPanel comp

* ui: rm debug

* ui: fix icons file

---------

Co-authored-by: Sudheer Salavadi <connect.uxmaster@gmail.com>
2025-01-24 09:59:54 +01:00

177 lines
4.4 KiB
JavaScript

import { TYPES } from 'Types/session/event';
import React 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 Event from './Event';
import NoteEvent from './NoteEvent';
import stl from './eventGroupWrapper.module.css';
import cn from 'classnames'
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,
isEditing,
showSelection,
isFirst,
presentInSearch,
isNote,
isTabChange,
filterOutNote,
} = props;
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 (isLocation) {
return (
<Event
extended={isFirst}
key={event.key}
event={event}
onClick={onEventClick}
selected={isSelected}
showLoadInfo
isCurrent={isCurrent}
presentInSearch={presentInSearch}
isLastInGroup={isLastInGroup}
whiteBg={true}
/>
);
}
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 = props.isPrev
? '#A7BFFF'
: props.isCurrent
? '#394EFF'
: 'transparent';
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: '#394EFF',
zIndex: 99,
borderRadius: '.15rem',
}}
/>
) : null}
{isFirst && isLocation && event.referrer && (
<TextEllipsis>
<div className={stl.referrer}>
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>
);
}
export default observer(EventGroupWrapper);