Skip to content

Commit

Permalink
fix(sw): fix UI mode on codespaces by not passing server (#33664)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skn0tt authored Nov 19, 2024
1 parent 6e19bc3 commit 8c1002a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ export async function installRootRedirect(server: HttpServer, traceUrls: string[
for (const reporter of options.reporter || [])
params.append('reporter', reporter);

params.set('server', server.urlPrefix('precise'));

const urlPath = `./trace/${options.webApp || 'index.html'}?${params.toString()}`;
server.routePath('/', (_, response) => {
response.statusCode = 302;
Expand Down
9 changes: 3 additions & 6 deletions packages/trace-viewer/src/sw/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,9 @@ async function loadTrace(traceUrl: string, traceFileName: string | null, client:
const clientId = client?.id ?? '';
let data = clientIdToTraceUrls.get(clientId);
if (!data) {
let traceViewerServerBaseUrl = self.registration.scope;
if (client?.url) {
const clientUrl = new URL(client.url);
if (clientUrl.searchParams.has('server'))
traceViewerServerBaseUrl = clientUrl.searchParams.get('server')!;
}
let traceViewerServerBaseUrl = new URL('../', client?.url ?? self.registration.scope);
if (traceViewerServerBaseUrl.searchParams.has('server'))
traceViewerServerBaseUrl = new URL(traceViewerServerBaseUrl.searchParams.get('server')!, traceViewerServerBaseUrl);

data = { limit, traceUrls: new Set(), traceViewerServer: new TraceViewerServer(traceViewerServerBaseUrl) };
clientIdToTraceUrls.set(clientId, data);
Expand Down
2 changes: 1 addition & 1 deletion packages/trace-viewer/src/sw/traceModelBackends.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function formatUrl(trace: string, server: TraceViewerServer) {
}

export class TraceViewerServer {
constructor(private readonly baseUrl: string) {}
constructor(private readonly baseUrl: URL) {}

getFileURL(path: string): URL {
const url = new URL('trace/file', this.baseUrl);
Expand Down
8 changes: 5 additions & 3 deletions packages/trace-viewer/src/ui/uiModeView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ const xtermDataSource: XtermDataSource = {
};

const searchParams = new URLSearchParams(window.location.search);
const guid = searchParams.get('ws');
const wsURL = new URL(`../${guid}`, window.location.toString());
wsURL.protocol = (window.location.protocol === 'https:' ? 'wss:' : 'ws:');
let testServerBaseUrl = new URL('../', window.location.href);
if (testServerBaseUrl.searchParams.has('server'))
testServerBaseUrl = new URL(testServerBaseUrl.searchParams.get('server')!, testServerBaseUrl);
const wsURL = new URL(searchParams.get('ws')!, testServerBaseUrl);
wsURL.protocol = (wsURL.protocol === 'https:' ? 'wss:' : 'ws:');
const queryParams = {
args: searchParams.getAll('arg'),
grep: searchParams.get('grep') || undefined,
Expand Down

0 comments on commit 8c1002a

Please sign in to comment.