forked from denoland/deno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
location.ts
52 lines (47 loc) · 1.19 KB
/
location.ts
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
52
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { URL } from "./url";
import { notImplemented } from "./util";
import { Location } from "./dom_types";
import { window } from "./window";
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 {
window.location = new LocationImpl(url);
Object.freeze(window.location);
}