redoc/lib/services/hash.service.ts
2017-02-27 13:13:38 +02:00

39 lines
771 B
TypeScript

'use strict';
import { Injectable } from '@angular/core';
import { PlatformLocation } from '@angular/common';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
@Injectable()
export class Hash {
public value = new BehaviorSubject<string | null>(null);
private noEmit:boolean = false;
constructor(private location: PlatformLocation) {
this.bind();
}
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) {
if (!hash) return;
this.noEmit = true;
window.location.hash = hash;
setTimeout(() => {
this.noEmit = false;
});
}
}