2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import { URL } from "./url.ts";
|
2020-03-05 07:05:41 -05:00
|
|
|
import { notImplemented } from "../util.ts";
|
2019-09-02 17:07:11 -04:00
|
|
|
import { Location } from "./dom_types.ts";
|
2019-02-12 21:14:02 -05:00
|
|
|
|
|
|
|
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;
|
2019-03-09 12:30:38 -05:00
|
|
|
assign(_url: string): void {
|
2019-02-12 21:14:02 -05:00
|
|
|
throw notImplemented();
|
|
|
|
}
|
|
|
|
reload(): void {
|
|
|
|
throw notImplemented();
|
|
|
|
}
|
2019-03-09 12:30:38 -05:00
|
|
|
replace(_url: string): void {
|
2019-02-12 21:14:02 -05:00
|
|
|
throw notImplemented();
|
|
|
|
}
|
|
|
|
}
|
2019-03-09 12:30:38 -05:00
|
|
|
|
|
|
|
export function setLocation(url: string): void {
|
2020-01-20 09:30:30 -05:00
|
|
|
globalThis.location = new LocationImpl(url);
|
|
|
|
Object.freeze(globalThis.location);
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|