* 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 * 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 * issue to copy change * share spot url f
65 lines
2.3 KiB
TypeScript
65 lines
2.3 KiB
TypeScript
import AiService from 'App/services/AiService';
|
|
import FFlagsService from 'App/services/FFlagsService';
|
|
import TagWatchService from 'App/services/TagWatchService';
|
|
|
|
import AlertsService from './AlertsService';
|
|
import AssistStatsService from './AssistStatsService';
|
|
import AuditService from './AuditService';
|
|
import ConfigService from './ConfigService';
|
|
import DashboardService from './DashboardService';
|
|
import ErrorService from './ErrorService';
|
|
import FunnelService from './FunnelService';
|
|
import HealthService from './HealthService';
|
|
import MetricService from './MetricService';
|
|
import NotesService from './NotesService';
|
|
import RecordingsService from './RecordingsService';
|
|
import SessionService from './SessionService';
|
|
import UserService from './UserService';
|
|
import UxtestingService from './UxtestingService';
|
|
import WebhookService from './WebhookService';
|
|
import SpotService from './spotService';
|
|
import LoginService from "./loginService";
|
|
|
|
export const dashboardService = new DashboardService();
|
|
export const metricService = new MetricService();
|
|
export const sessionService = new SessionService();
|
|
export const userService = new UserService();
|
|
export const funnelService = new FunnelService();
|
|
export const auditService = new AuditService();
|
|
export const errorService = new ErrorService();
|
|
export const notesService = new NotesService();
|
|
export const recordingsService = new RecordingsService();
|
|
export const configService = new ConfigService();
|
|
export const alertsService = new AlertsService();
|
|
export const webhookService = new WebhookService();
|
|
export const healthService = new HealthService();
|
|
export const fflagsService = new FFlagsService();
|
|
export const assistStatsService = new AssistStatsService();
|
|
export const uxtestingService = new UxtestingService();
|
|
export const tagWatchService = new TagWatchService();
|
|
export const aiService = new AiService();
|
|
export const spotService = new SpotService();
|
|
export const loginService = new LoginService();
|
|
|
|
export const services = [
|
|
dashboardService,
|
|
metricService,
|
|
sessionService,
|
|
userService,
|
|
funnelService,
|
|
auditService,
|
|
errorService,
|
|
notesService,
|
|
recordingsService,
|
|
configService,
|
|
alertsService,
|
|
webhookService,
|
|
healthService,
|
|
fflagsService,
|
|
assistStatsService,
|
|
uxtestingService,
|
|
tagWatchService,
|
|
aiService,
|
|
spotService,
|
|
loginService,
|
|
];
|