mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-13 04:16:34 +03:00
131b437478
fixes #252
53 lines
1.2 KiB
TypeScript
53 lines
1.2 KiB
TypeScript
'use strict';
|
|
import { Injectable } from '@angular/core';
|
|
import { PlatformLocation } from '@angular/common';
|
|
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
|
|
|
|
import { debounce } from '../utils/';
|
|
|
|
@Injectable()
|
|
export class Hash {
|
|
public value = new BehaviorSubject<string | null>(null);
|
|
private noEmit:boolean = false;
|
|
private debouncedUpdate: (hash:string, rewrite: boolean) => void;
|
|
|
|
constructor(private location: PlatformLocation) {
|
|
this.bind();
|
|
|
|
this.debouncedUpdate = debounce(this._update.bind(this), 100);
|
|
}
|
|
|
|
start() {
|
|
this.value.next(this.hash);
|
|
}
|
|
|
|
get hash() {
|
|
return this.location.hash;
|
|
}
|
|
|
|
bind() {
|
|
this.location.onHashChange(() => {
|
|
if (this.noEmit) return;
|
|
this.value.next(this.hash);
|
|
});
|
|
}
|
|
|
|
update(hash: string|null, rewriteHistory:boolean = false) {
|
|
this.debouncedUpdate(hash, rewriteHistory);
|
|
}
|
|
|
|
private _update(hash: string|null, rewriteHistory:boolean = false) {
|
|
if (hash == undefined) return;
|
|
if (rewriteHistory) {
|
|
window.history.replaceState(null, '', window.location.href.split('#')[0] + '#' + hash);
|
|
return;
|
|
}
|
|
this.noEmit = true;
|
|
window.location.hash = hash;
|
|
setTimeout(() => {
|
|
this.noEmit = false;
|
|
});
|
|
}
|
|
|
|
}
|