summaryrefslogtreecommitdiff
path: root/cli/js/location.ts
blob: 303374055486c74da515ad59b7f5d85e89d3e592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { URL } from "./url.ts";
import { notImplemented } from "./util.ts";
import { Location } from "./dom_types.ts";

export class LocationImpl implements Location {
  constructor(url: string) {
    const u = new URL(url);
    this.url = u;
    this.hash = u.hash;
    this.host = u.host;
    this.href = u.href;
    this.hostname = u.hostname;
    this.origin = u.protocol + "//" + u.host;
    this.pathname = u.pathname;
    this.protocol = u.protocol;
    this.port = u.port;
    this.search = u.search;
  }

  private url: URL;

  toString(): string {
    return this.url.toString();
  }

  readonly ancestorOrigins: string[] = [];
  hash: string;
  host: string;
  hostname: string;
  href: string;
  readonly origin: string;
  pathname: string;
  port: string;
  protocol: string;
  search: string;
  assign(_url: string): void {
    throw notImplemented();
  }
  reload(): void {
    throw notImplemented();
  }
  replace(_url: string): void {
    throw notImplemented();
  }
}

export function setLocation(url: string): void {
  globalThis.location = new LocationImpl(url);
  Object.freeze(globalThis.location);
}