* feat(tracker): add support for multi tab sessions
* feat(backend): added support of multitabs
* fix(backend): added support of deprecated batch meta message to pre-decoder
* fix(backend): fixed nil meta issue for TabData messages in sink
* feat(player): add tabmanager
* feat(player): basic tabchange event support
* feat(player): pick tabstate for console panel and timeline
* fix(player): only display tabs that are created
* feat(player): connect performance, xray and events to tab state
* feat(player): merge all tabs data for overview
* feat(backend/tracker): extract tabdata into separate message from batchmeta
* fix(tracker): fix new session check
* fix(backend): remove batchmetadeprecated
* fix(backend): fix switch case
* fix(player): fix for tab message size
* feat(tracker): check for active tabs with broadcast channel
* feat(tracker): prevent multiple messages
* fix(tracker): ignore beacons from same tab, only ask if token isnt present yet, add small delay before start to wait for answer
* feat(player): support new msg struct in assist player
* fix(player): fix some livepl components for multi tab states
* feat(tracker): add option to disable multitab
* feat(tracker): add multitab to assist plugin
* feat(player): back compat for tab id
* fix(ui): fix missing list in controls
* fix(ui): optional list update
* feat(ui): fix visuals for multitab; use window focus event for tabs
* fix(tracker): fix for dying tests (added tabid to writer, refactored other tests)
* feat(ui): update LivePlayerSubHeader.tsx to support tabs
* feat(backend): added tabs support to devtools mob files
* feat(ui): connect state to current tab properly
* feat(backend): added multitab support to assits
* feat(backend): removed data check in agent message
* feat(backend): debug on
* fix(backend): fixed typo in message broadcast
* feat(backend): fixed issue in connect method
* fix(assist): fixed typo
* feat(assist): added more debug logs
* feat(assist): removed one log
* feat(assist): more logs
* feat(assist): use query.peerId
* feat(assist): more logs
* feat(assist): fixed session update
* fix(assist): fixed getSessions
* fix(assist): fixed request_control broadcast
* fix(assist): fixed typo
* fix(assist): added missed line
* fix(assist): fix typo
* feat(tracker): multitab support for assist sessions
* fix(tracker): fix dead tests (tabid prop)
* fix(tracker): fix yaml
* fix(tracker): timers issue
* fix(ui): fix ui E2E tests with magic?
* feat(assist): multitabs support for ee version
* fix(assist): added missed method import
* fix(tracker): fix fix events in assist
* feat(assist): added back compatibility for sessions without tabId
* fix(assist): apply message's top layer structure before broadcast call
* fix(assist): added random tabID for prev version
* fix(assist): added random tabID for prev version (ee)
* feat(assist): added debug logs
* fix(assist): fix typo in sessions_agents_count method
* fix(assist): fixed more typos in copy-pastes
* fix(tracker): fix restart timings
* feat(backend): added tabIDs for some events
* feat(ui): add tab change event to the user steps bar
* Revert "feat(backend): added tabIDs for some events"
This reverts commit 1467ad7f9f.
* feat(ui): revert timeline and xray to grab events from all tabs
* fix(ui): fix typo
---------
Co-authored-by: Alexander Zavorotynskiy <zavorotynskiy@pm.me>
172 lines
7 KiB
JavaScript
172 lines
7 KiB
JavaScript
import React, { useMemo } from 'react';
|
|
import { Icon, Tooltip, Button } from 'UI';
|
|
import QueueControls from './QueueControls';
|
|
import Bookmark from 'Shared/Bookmark';
|
|
import SharePopup from '../shared/SharePopup/SharePopup';
|
|
import Issues from './Issues/Issues';
|
|
import NotePopup from './components/NotePopup';
|
|
import ItemMenu from './components/HeaderMenu';
|
|
import { useModal } from 'App/components/Modal';
|
|
import BugReportModal from './BugReport/BugReportModal';
|
|
import { PlayerContext } from 'App/components/Session/playerContext';
|
|
import { observer } from 'mobx-react-lite';
|
|
import AutoplayToggle from 'Shared/AutoplayToggle';
|
|
import { connect } from 'react-redux';
|
|
import Tab from 'Components/Session/Player/SharedComponents/Tab';
|
|
|
|
const localhostWarn = (project) => project + '_localhost_warn';
|
|
|
|
function SubHeader(props) {
|
|
const localhostWarnKey = localhostWarn(props.siteId);
|
|
const defaultLocalhostWarn = localStorage.getItem(localhostWarnKey) !== '1';
|
|
const [showWarningModal, setWarning] = React.useState(defaultLocalhostWarn);
|
|
const { player, store } = React.useContext(PlayerContext);
|
|
const { width, height, endTime, tabStates, currentTab, tabs } = store.get();
|
|
|
|
const currentLocation = tabStates[currentTab]?.location || '';
|
|
const resourceList = tabStates[currentTab]?.resourceList || [];
|
|
const exceptionsList = tabStates[currentTab]?.exceptionsList || [];
|
|
const eventsList = tabStates[currentTab]?.eventList || [];
|
|
const graphqlList = tabStates[currentTab]?.graphqlList || [];
|
|
const fetchList = tabStates[currentTab]?.fetchList || [];
|
|
|
|
const enabledIntegration = useMemo(() => {
|
|
const { integrations } = props;
|
|
if (!integrations || !integrations.size) {
|
|
return false;
|
|
}
|
|
|
|
return integrations.some((i) => i.token);
|
|
});
|
|
|
|
const mappedResourceList = resourceList
|
|
.filter((r) => r.isRed || r.isYellow)
|
|
.concat(fetchList.filter((i) => parseInt(i.status) >= 400))
|
|
.concat(graphqlList.filter((i) => parseInt(i.status) >= 400));
|
|
|
|
const { showModal, hideModal } = useModal();
|
|
|
|
const location =
|
|
currentLocation && currentLocation.length > 70
|
|
? `${currentLocation.slice(0, 25)}...${currentLocation.slice(-40)}`
|
|
: currentLocation;
|
|
|
|
const showReportModal = () => {
|
|
player.pause();
|
|
const xrayProps = {
|
|
currentLocation: currentLocation,
|
|
resourceList: mappedResourceList,
|
|
exceptionsList: exceptionsList,
|
|
eventsList: eventsList,
|
|
endTime: endTime,
|
|
};
|
|
showModal(
|
|
<BugReportModal width={width} height={height} xrayProps={xrayProps} hideModal={hideModal} />,
|
|
{ right: true, width: 620 }
|
|
);
|
|
};
|
|
|
|
const showWarning =
|
|
location && /(localhost)|(127.0.0.1)|(0.0.0.0)/.test(location) && showWarningModal;
|
|
const closeWarning = () => {
|
|
localStorage.setItem(localhostWarnKey, '1');
|
|
setWarning(false);
|
|
};
|
|
return (
|
|
<>
|
|
<div className="w-full px-4 flex items-center border-b relative">
|
|
{showWarning ? (
|
|
<div
|
|
className="px-3 py-1 border border-gray-light drop-shadow-md rounded bg-active-blue flex items-center justify-between"
|
|
style={{
|
|
zIndex: 999,
|
|
position: 'absolute',
|
|
left: '50%',
|
|
bottom: '-24px',
|
|
transform: 'translate(-50%, 0)',
|
|
fontWeight: 500,
|
|
}}
|
|
>
|
|
Some assets may load incorrectly on localhost.
|
|
<a
|
|
href="https://docs.openreplay.com/en/troubleshooting/session-recordings/#testing-in-localhost"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="link ml-1"
|
|
>
|
|
Learn More
|
|
</a>
|
|
<div className="py-1 ml-3 cursor-pointer" onClick={closeWarning}>
|
|
<Icon name="close" size={16} color="black" />
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
{tabs.map((tab, i) => (
|
|
<React.Fragment key={tab}>
|
|
<Tab
|
|
i={i}
|
|
tab={tab}
|
|
currentTab={tabs.length === 1 ? tab : currentTab}
|
|
changeTab={(changeTo) => player.changeTab(changeTo)}
|
|
/>
|
|
</React.Fragment>
|
|
))}
|
|
<div
|
|
className="ml-auto text-sm flex items-center color-gray-medium gap-2"
|
|
style={{ width: 'max-content' }}
|
|
>
|
|
<Button icon="file-pdf" variant="text" onClick={showReportModal}>
|
|
Create Bug Report
|
|
</Button>
|
|
<NotePopup />
|
|
{enabledIntegration && <Issues sessionId={props.sessionId} />}
|
|
<SharePopup
|
|
entity="sessions"
|
|
id={props.sessionId}
|
|
showCopyLink={true}
|
|
trigger={
|
|
<div className="relative">
|
|
<Button icon="share-alt" variant="text" className="relative">
|
|
Share
|
|
</Button>
|
|
</div>
|
|
}
|
|
/>
|
|
<ItemMenu
|
|
items={[
|
|
{
|
|
key: 1,
|
|
component: <AutoplayToggle />,
|
|
},
|
|
{
|
|
key: 2,
|
|
component: <Bookmark noMargin sessionId={props.sessionId} />,
|
|
},
|
|
]}
|
|
/>
|
|
|
|
<div>
|
|
<QueueControls />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{location && (
|
|
<div className={'w-full bg-white border-b border-gray-light'}>
|
|
<div className="flex w-fit items-center cursor-pointer color-gray-medium text-sm p-1">
|
|
<Icon size="20" name="event/link" className="mr-1" />
|
|
<Tooltip title="Open in new tab" delay={0}>
|
|
<a href={currentLocation} target="_blank">
|
|
{location}
|
|
</a>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default connect((state) => ({
|
|
siteId: state.getIn(['site', 'siteId']),
|
|
integrations: state.getIn(['issues', 'list']),
|
|
}))(observer(SubHeader));
|