openreplay/frontend/app/components/Session_/EventsBlock/EventGroupWrapper.js
Delirium 64cde1fb7c
feat ui: highlight current event plus fix scroll (#2076)
* feat ui: highlight current event plus fix scroll

* change icon styles

* saas fix

* rm cons
2024-04-11 15:38:38 +02:00

194 lines
5.3 KiB
JavaScript

import UxtEvent from "Components/Session_/EventsBlock/UxtEvent";
import React from 'react';
import { connect } from 'react-redux';
import { TextEllipsis, Icon } from 'UI';
import withToggle from 'HOCs/withToggle';
import { TYPES } from 'Types/session/event';
import Event from './Event';
import stl from './eventGroupWrapper.module.css';
import NoteEvent from './NoteEvent';
// TODO: incapsulate toggler in LocationEvent
@withToggle('showLoadInfo', 'toggleLoadInfo')
@connect(
(state) => ({
members: state.getIn(['members', 'list']),
currentUserId: state.getIn(['user', 'account', 'id'])
}),
)
class EventGroupWrapper extends React.Component {
toggleLoadInfo = (e) => {
e.stopPropagation();
this.props.toggleLoadInfo();
};
componentDidUpdate(prevProps) {
if (
prevProps.showLoadInfo !== this.props.showLoadInfo ||
prevProps.query !== this.props.query ||
prevProps.event.timestamp !== this.props.event.timestamp ||
prevProps.isNote !== this.props.isNote
) {
this.props.mesureHeight();
}
}
componentDidMount() {
this.props.toggleLoadInfo(this.props.isFirst);
this.props.mesureHeight();
}
onEventClick = (e) => this.props.onEventClick(e, this.props.event);
onCheckboxClick = (e) => this.props.onCheckboxClick(e, this.props.event);
render() {
const {
event,
isLastEvent,
isLastInGroup,
isSelected,
isCurrent,
isEditing,
showSelection,
showLoadInfo,
isFirst,
presentInSearch,
isNote,
isTabChange,
filterOutNote,
} = this.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
note={event}
filterOutNote={filterOutNote}
noEdit={this.props.currentUserId !== event.userId}
/>
)
}
if (isLocation) {
return (
<Event
extended={isFirst}
key={event.key}
event={event}
onClick={this.onEventClick}
selected={isSelected}
showLoadInfo={showLoadInfo}
toggleLoadInfo={this.toggleLoadInfo}
isCurrent={isCurrent}
presentInSearch={presentInSearch}
isLastInGroup={isLastInGroup}
whiteBg={true}
/>
)
}
if (isTabChange) {
return (
<TabChange onClick={this.onEventClick} from={event.fromTab} to={event.toTab} activeUrl={event.activeUrl} />
)
}
return (
<Event
key={event.key}
event={event}
onClick={this.onEventClick}
onCheckboxClick={this.onCheckboxClick}
selected={isSelected}
isCurrent={isCurrent}
showSelection={showSelection}
overlayed={isEditing}
presentInSearch={presentInSearch}
isLastInGroup={isLastInGroup}
whiteBg={whiteBg}
/>
)
}
const shadowColor = this.props.isPrev
? '#A7BFFF'
: this.props.isCurrent ? '#394EFF' : 'transparent'
return (
<>
<div>
<div
style={{
position: 'absolute',
left: 0,
top: 0,
width: 1.5,
height: '100%',
backgroundColor: shadowColor,
zIndex: 98,
}}
/>
{this.props.isCurrent ? (
<div
style={{
position: 'absolute',
top: '50%',
left: -7,
width: 10,
height: 10,
transform: 'rotate(45deg) translate(0, -50%)',
background: '#394EFF',
zIndex: 99,
}}
/>
) : null}
{isFirst && isLocation && event.referrer && (
<TextEllipsis>
<div className={stl.referrer}>
Referrer: <span className={stl.url}>{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 React.memo(EventGroupWrapper);