* feat spot: init commit for extension * nvmrc * fix login flow * Spots Gridview Updates (#2422) * feat ui: login flow for spot extension * spot list, store and service created * some fixing for header * start work on single spot * spot player start * header for player, comments, icons, etc * split stuff into compoennts, create player state manager * player controls, activity panel etc etc * comments, empty page, rename and stuff * interval buttons etc * access modal * pubkey support * fix tooltip * limit 10 -> 9 * hls lib instead of videojs * some warnings * fix date display for exp * change public links * display more client data * fix cleaning, init comment * map network to replay player network ev * stream support, console panel, close panels on X * fixing streaming, destroy on leave * fix autoplay * show notification on spot login * fix spot login * backup player added, fix audio issue * show thumbnail when no video, add spot roles * add poster thumbnail * some fixes to video check * fix events jump * fix play btn * try catch over pubkey * feat ui: login flow for spot extension * spot list, store and service created * some fixing for header * start work on single spot * spot player start * header for player, comments, icons, etc * split stuff into compoennts, create player state manager * player controls, activity panel etc etc * comments, empty page, rename and stuff * interval buttons etc * access modal * pubkey support * fix tooltip * limit 10 -> 9 * hls lib instead of videojs * some warnings * fix date display for exp * change public links * display more client data * fix cleaning, init comment * map network to replay player network ev * stream support, console panel, close panels on X * fixing streaming, destroy on leave * fix autoplay * show notification on spot login * fix spot login * backup player added, fix audio issue * show thumbnail when no video, add spot roles * add poster thumbnail * some fixes to video check * fix events jump * fix play btn * try catch over pubkey * icons * Various updates * Update SVG.tsx * Update SideMenu.tsx * SpotList & Menu updates * feat ui: login flow for spot extension * spot list, store and service created * some fixing for header * start work on single spot * spot player start * header for player, comments, icons, etc * split stuff into compoennts, create player state manager * player controls, activity panel etc etc * comments, empty page, rename and stuff * interval buttons etc * access modal * pubkey support * fix tooltip * limit 10 -> 9 * hls lib instead of videojs * some warnings * fix date display for exp * change public links * display more client data * fix cleaning, init comment * map network to replay player network ev * stream support, console panel, close panels on X * fixing streaming, destroy on leave * fix autoplay * show notification on spot login * fix spot login * backup player added, fix audio issue * show thumbnail when no video, add spot roles * add poster thumbnail * some fixes to video check * fix events jump * fix play btn * try catch over pubkey * icons * spot login pinging * Spot List & Player Updates * move spot login flow to login comp, use separate spot login path for unique jwt * invalidate spot jwt on logout * add visual data on page load event * typo fix * Spot Listing improvements post review. * Update SpotListItem.tsx * Improved Spot List and Item Details * Minor improvements * More improvements * Public player header improvements * Moved formatExpirationTime to utils * fixes after merge --------- Co-authored-by: nick-delirium <nikita@openreplay.com> * set sso link to <a>? * some small perf fixes * login duck reformat... * Update frontend.yaml * add observer to spot list header * split list header * update spotjwt param in router * fix toast in router * fix async fetch, move ctx * capture space btn ev * fix header link * public sharing error msg * fix err msg for unsuccessful rec start * fix list alignment * Caching assets. Finally!!! * fix typing in comment field * add pubkey to comments, fix console jump btn * no content comp * change refresh token logic * move thumbnail ts * move thumbnail ts * fix tab change * switch up toggler * early exit if no jwt present * regenerate icons * fix location str * fix ctx * change thumnail res, return autoplay for video player * parse links in console rows, fix injected method parse? * remove ts from js * fix console parsing order? * fixes for autoplay * xray for spot player * move to spot list after login; esc to cancel; fix signup link; move ux commit * kb sc for skipping; xray for spot ext * track aborted requests * tooltip for readability * fixing empty state * New blank state + various minor improvements (#2471) * New blank state + various minor improvements * apres merge --------- Co-authored-by: nick-delirium <nikita@openreplay.com> * rm temp v * init or card * empty state debug * empty state debug * empty state debug * fix initor img * spotonly scope support * Improved Spot dead-end pages (#2475) * Improved Spot dead-end pages * Initiate OpenReplay Setup and some more * get scope changes * fix crash * scope upgrade/downgrade * scope setup flow * ping for backend * upgrade wxt deps * cancel ping int on expiration * check rec status * fix ping * check video processing state * check video processing state * fix xray close, network highlight, fcp rounding * update wxt, move open spot stuff to settings * fix some history issues * fix spot login flow * fix spot login again * fix spot login again * don't send two requests * limit messages for logged users * limit messages for logged users * fix public ignore * microphone stuff * microphone stuff * Various improvements (#2509) * Various improvements - Updated icons in mic settings - Included prefix in Spot title - Save recording notification has been updated - Other minor UI improvements * Inline declaration of spot name field, and settings UI * str f --------- Co-authored-by: nick-delirium <nikita@openreplay.com> * UI changes in player header, spot list (#2510) * Added UI elements in player page - Badge with counts for comments - Download and Delete dropdown in player - Spot selection -- UI improvement * Minor copy updates * completing changes --------- Co-authored-by: nick-delirium <nikita@openreplay.com> * rm cmt * fix cellmeasurer * thumbnail dur * fix download * Minor fixes (#2512) - Spot delete confirmation - Spot comments UI update - Minor copy updates * limit number of notif messages * add spot title to doc title, add cache groups for webpack * drop mic controls from recording popup view * fix for webpack compress * fix for auto mic pickup * change status banners * move svgs around, remove undefined check * refactor svgs * fix timetable scaling * fix error popup * self contain css * pre-select spot on spot onboarding --------- Co-authored-by: Sudheer Salavadi <connect.uxmaster@gmail.com> Co-authored-by: Rajesh Rajendran <rjshrjndrn@users.noreply.github.com>
291 lines
11 KiB
TypeScript
291 lines
11 KiB
TypeScript
import React, { lazy, Suspense } from 'react';
|
|
import { Switch, Route, Redirect } from 'react-router-dom';
|
|
import { connect } from 'react-redux';
|
|
import { Loader } from 'UI';
|
|
import withSiteIdUpdater from 'HOCs/withSiteIdUpdater';
|
|
|
|
import APIClient from './api_client';
|
|
import { getScope } from "./duck/user";
|
|
import * as routes from './routes';
|
|
import { OB_DEFAULT_TAB } from 'App/routes';
|
|
import { GLOBAL_HAS_NO_RECORDINGS } from 'App/constants/storageKeys';
|
|
import { Map } from 'immutable';
|
|
import AdditionalRoutes from 'App/AdditionalRoutes';
|
|
|
|
const components: any = {
|
|
SessionPure: lazy(() => import('Components/Session/Session')),
|
|
LiveSessionPure: lazy(() => import('Components/Session/LiveSession')),
|
|
OnboardingPure: lazy(() => import('Components/Onboarding/Onboarding')),
|
|
ClientPure: lazy(() => import('Components/Client/Client')),
|
|
AssistPure: lazy(() => import('Components/Assist/AssistRouter')),
|
|
SessionsOverviewPure: lazy(() => import('Components/Overview')),
|
|
DashboardPure: lazy(() => import('Components/Dashboard/NewDashboard')),
|
|
FunnelDetailsPure: lazy(() => import('Components/Funnels/FunnelDetails')),
|
|
FunnelIssueDetails: lazy(() => import('Components/Funnels/FunnelIssueDetails')),
|
|
FunnelPagePure: lazy(() => import('Components/Funnels/FunnelPage')),
|
|
MultiviewPure: lazy(() => import('Components/Session_/Multiview/Multiview')),
|
|
UsabilityTestingPure: lazy(() => import('Components/UsabilityTesting/UsabilityTesting')),
|
|
UsabilityTestEditPure: lazy(() => import('Components/UsabilityTesting/TestEdit')),
|
|
UsabilityTestOverviewPure: lazy(() => import('Components/UsabilityTesting/TestOverview')),
|
|
SpotsListPure: lazy(() => import('Components/Spots/SpotsList')),
|
|
SpotPure: lazy(() => import('Components/Spots/SpotPlayer')),
|
|
ScopeSetup: lazy(() => import('Components/ScopeForm')),
|
|
};
|
|
|
|
const enhancedComponents: any = {
|
|
SessionsOverview: withSiteIdUpdater(components.SessionsOverviewPure),
|
|
Dashboard: withSiteIdUpdater(components.DashboardPure),
|
|
Session: withSiteIdUpdater(components.SessionPure),
|
|
LiveSession: withSiteIdUpdater(components.LiveSessionPure),
|
|
Assist: withSiteIdUpdater(components.AssistPure),
|
|
Client: withSiteIdUpdater(components.ClientPure),
|
|
Onboarding: withSiteIdUpdater(components.OnboardingPure),
|
|
FunnelPage: withSiteIdUpdater(components.FunnelPagePure),
|
|
FunnelsDetails: withSiteIdUpdater(components.FunnelDetailsPure),
|
|
FunnelIssue: withSiteIdUpdater(components.FunnelIssueDetails),
|
|
Multiview: withSiteIdUpdater(components.MultiviewPure),
|
|
UsabilityTesting: withSiteIdUpdater(components.UsabilityTestingPure),
|
|
UsabilityTestEdit: withSiteIdUpdater(components.UsabilityTestEditPure),
|
|
UsabilityTestOverview: withSiteIdUpdater(components.UsabilityTestOverviewPure),
|
|
SpotsList: withSiteIdUpdater(components.SpotsListPure),
|
|
Spot: components.SpotPure,
|
|
ScopeSetup: components.ScopeSetup
|
|
};
|
|
|
|
const withSiteId = routes.withSiteId;
|
|
|
|
const METRICS_PATH = routes.metrics();
|
|
const METRICS_DETAILS = routes.metricDetails();
|
|
const METRICS_DETAILS_SUB = routes.metricDetailsSub();
|
|
|
|
const ALERTS_PATH = routes.alerts();
|
|
const ALERT_CREATE_PATH = routes.alertCreate();
|
|
const ALERT_EDIT_PATH = routes.alertEdit();
|
|
|
|
const DASHBOARD_PATH = routes.dashboard();
|
|
const DASHBOARD_SELECT_PATH = routes.dashboardSelected();
|
|
const DASHBOARD_METRIC_CREATE_PATH = routes.dashboardMetricCreate();
|
|
const DASHBOARD_METRIC_DETAILS_PATH = routes.dashboardMetricDetails();
|
|
|
|
const SESSIONS_PATH = routes.sessions();
|
|
const FFLAGS_PATH = routes.fflags();
|
|
const FFLAG_PATH = routes.fflag();
|
|
const FFLAG_CREATE_PATH = routes.newFFlag();
|
|
const FFLAG_READ_PATH = routes.fflagRead();
|
|
const NOTES_PATH = routes.notes();
|
|
const BOOKMARKS_PATH = routes.bookmarks();
|
|
const RECORDINGS_PATH = routes.recordings();
|
|
const FUNNEL_PATH = routes.funnels();
|
|
const FUNNEL_CREATE_PATH = routes.funnelsCreate();
|
|
const FUNNEL_ISSUE_PATH = routes.funnelIssue();
|
|
const SESSION_PATH = routes.session();
|
|
const CLIENT_PATH = routes.client();
|
|
const ONBOARDING_PATH = routes.onboarding();
|
|
const ONBOARDING_REDIRECT_PATH = routes.onboarding(OB_DEFAULT_TAB);
|
|
|
|
const ASSIST_PATH = routes.assist();
|
|
const LIVE_SESSION_PATH = routes.liveSession();
|
|
const MULTIVIEW_PATH = routes.multiview();
|
|
const MULTIVIEW_INDEX_PATH = routes.multiviewIndex();
|
|
const ASSIST_STATS_PATH = routes.assistStats();
|
|
|
|
const USABILITY_TESTING_PATH = routes.usabilityTesting();
|
|
const USABILITY_TESTING_EDIT_PATH = routes.usabilityTestingEdit();
|
|
const USABILITY_TESTING_VIEW_PATH = routes.usabilityTestingView();
|
|
|
|
const SPOTS_LIST_PATH = routes.spotsList();
|
|
const SPOT_PATH = routes.spot();
|
|
const SCOPE_SETUP = routes.scopeSetup();
|
|
|
|
interface Props {
|
|
isEnterprise: boolean;
|
|
tenantId: string;
|
|
siteId: string;
|
|
jwt: string;
|
|
sites: Map<string, any>;
|
|
onboarding: boolean;
|
|
spotOnly?: boolean;
|
|
}
|
|
|
|
function PrivateRoutes(props: Props) {
|
|
const { onboarding, sites, siteId, jwt } = props;
|
|
const redirectToOnboarding =
|
|
!onboarding && localStorage.getItem(GLOBAL_HAS_NO_RECORDINGS) === 'true';
|
|
const siteIdList: any = sites.map(({ id }) => id).toJS();
|
|
|
|
return (
|
|
<Suspense fallback={<Loader loading={true} className="flex-1" />}>
|
|
<Switch key="content">
|
|
<Route path={CLIENT_PATH} component={enhancedComponents.Client} />
|
|
<Route
|
|
path={withSiteId(ONBOARDING_PATH, siteIdList)}
|
|
component={enhancedComponents.Onboarding}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={SPOTS_LIST_PATH}
|
|
component={enhancedComponents.SpotsList}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={SPOT_PATH}
|
|
component={enhancedComponents.Spot}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={SCOPE_SETUP}
|
|
component={enhancedComponents.ScopeSetup}
|
|
/>
|
|
{props.spotOnly ? null : <>
|
|
<Route
|
|
path="/integrations/"
|
|
render={({ location }) => {
|
|
const client = new APIClient();
|
|
switch (location.pathname) {
|
|
case "/integrations/slack":
|
|
client.post("integrations/slack/add", {
|
|
code: location.search.split("=")[1],
|
|
state: props.tenantId
|
|
});
|
|
break;
|
|
case "/integrations/msteams":
|
|
client.post("integrations/msteams/add", {
|
|
code: location.search.split("=")[1],
|
|
state: props.tenantId
|
|
});
|
|
break;
|
|
}
|
|
return <Redirect to={CLIENT_PATH} />;
|
|
}}
|
|
/>
|
|
{redirectToOnboarding && <Redirect to={withSiteId(ONBOARDING_REDIRECT_PATH, siteId)} />}
|
|
|
|
{/* DASHBOARD and Metrics */}
|
|
<Route
|
|
exact
|
|
strict
|
|
path={[
|
|
withSiteId(ALERTS_PATH, siteIdList),
|
|
withSiteId(ALERT_EDIT_PATH, siteIdList),
|
|
withSiteId(ALERT_CREATE_PATH, siteIdList),
|
|
withSiteId(METRICS_PATH, siteIdList),
|
|
withSiteId(METRICS_DETAILS, siteIdList),
|
|
withSiteId(METRICS_DETAILS_SUB, siteIdList),
|
|
withSiteId(DASHBOARD_PATH, siteIdList),
|
|
withSiteId(DASHBOARD_SELECT_PATH, siteIdList),
|
|
withSiteId(DASHBOARD_METRIC_CREATE_PATH, siteIdList),
|
|
withSiteId(DASHBOARD_METRIC_DETAILS_PATH, siteIdList)
|
|
]}
|
|
component={enhancedComponents.Dashboard}
|
|
/>
|
|
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(USABILITY_TESTING_PATH, siteIdList)}
|
|
component={enhancedComponents.UsabilityTesting}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(USABILITY_TESTING_EDIT_PATH, siteIdList)}
|
|
component={enhancedComponents.UsabilityTestEdit}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(USABILITY_TESTING_VIEW_PATH, siteIdList)}
|
|
component={enhancedComponents.UsabilityTestOverview}
|
|
/>
|
|
|
|
<Route
|
|
exact
|
|
path={withSiteId(MULTIVIEW_INDEX_PATH, siteIdList)}
|
|
component={enhancedComponents.Multiview}
|
|
/>
|
|
<Route
|
|
path={withSiteId(MULTIVIEW_PATH, siteIdList)}
|
|
component={enhancedComponents.Multiview}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(ASSIST_PATH, siteIdList)}
|
|
component={enhancedComponents.Assist}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(RECORDINGS_PATH, siteIdList)}
|
|
component={enhancedComponents.Assist}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(FUNNEL_PATH, siteIdList)}
|
|
component={enhancedComponents.FunnelPage}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(FUNNEL_CREATE_PATH, siteIdList)}
|
|
component={enhancedComponents.FunnelsDetails}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(FUNNEL_ISSUE_PATH, siteIdList)}
|
|
component={enhancedComponents.FunnelIssue}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={[
|
|
withSiteId(SESSIONS_PATH, siteIdList),
|
|
withSiteId(FFLAGS_PATH, siteIdList),
|
|
withSiteId(FFLAG_PATH, siteIdList),
|
|
withSiteId(FFLAG_READ_PATH, siteIdList),
|
|
withSiteId(FFLAG_CREATE_PATH, siteIdList),
|
|
withSiteId(NOTES_PATH, siteIdList),
|
|
withSiteId(BOOKMARKS_PATH, siteIdList)
|
|
]}
|
|
component={enhancedComponents.SessionsOverview}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(SESSION_PATH, siteIdList)}
|
|
component={enhancedComponents.Session}
|
|
/>
|
|
<Route
|
|
exact
|
|
strict
|
|
path={withSiteId(LIVE_SESSION_PATH, siteIdList)}
|
|
component={enhancedComponents.LiveSession}
|
|
/>
|
|
{Object.entries(routes.redirects).map(([fr, to]) => (
|
|
<Redirect key={fr} exact strict from={fr} to={to} />
|
|
))}
|
|
<AdditionalRoutes redirect={withSiteId(routes.sessions(), siteId)} />
|
|
</>}
|
|
{props.spotOnly ? <Redirect to={withSiteId(SPOTS_LIST_PATH, siteId)} /> : null}
|
|
</Switch>
|
|
</Suspense>
|
|
);
|
|
}
|
|
|
|
export default connect((state: any) => ({
|
|
changePassword: state.getIn(['user', 'account', 'changePassword']),
|
|
onboarding: state.getIn(['user', 'onboarding']),
|
|
sites: state.getIn(['site', 'list']),
|
|
siteId: state.getIn(['site', 'siteId']),
|
|
jwt: state.getIn(['user', 'jwt']),
|
|
spotOnly: getScope(state) === 'spot',
|
|
tenantId: state.getIn(['user', 'account', 'tenantId']),
|
|
isEnterprise:
|
|
state.getIn(['user', 'account', 'edition']) === 'ee' ||
|
|
state.getIn(['user', 'authDetails', 'edition']) === 'ee',
|
|
}))(PrivateRoutes);
|