2018-02-15 11:36:12 +01:00
|
|
|
import { Injectable, OnInit, PLATFORM_ID, Inject } from '@angular/core';
|
|
|
|
import { isPlatformBrowser} from '@angular/common';
|
2018-02-05 14:14:59 +01:00
|
|
|
import { Http, Response, Headers, RequestOptions } from '@angular/http';
|
|
|
|
import { Observable, Subscription, BehaviorSubject } from 'rxjs/Rx';
|
|
|
|
import 'rxjs/add/operator/map';
|
|
|
|
import 'rxjs/add/operator/catch';
|
|
|
|
import 'rxjs/add/operator/toPromise';
|
|
|
|
|
|
|
|
import { EnvProperties } from './env-properties';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class EnvironmentSpecificService {
|
|
|
|
|
|
|
|
public envSpecific: EnvProperties;
|
|
|
|
public envSpecificNull: EnvProperties = null;
|
2018-02-15 11:36:12 +01:00
|
|
|
testBrowser: boolean;
|
2018-02-05 14:14:59 +01:00
|
|
|
private envSpecificSubject: BehaviorSubject<EnvProperties> = new BehaviorSubject<EnvProperties>(null);
|
2018-02-15 11:36:12 +01:00
|
|
|
private propertiesUrl = (process.env.PROP_URL)?process.env.PROP_URL:"./assets/env-properties.json";
|
|
|
|
constructor(private http: Http,@Inject(PLATFORM_ID) platformId: string) {
|
|
|
|
this.testBrowser = isPlatformBrowser(platformId);
|
|
|
|
if (this.testBrowser) {
|
|
|
|
//this is only executed on the browser
|
|
|
|
}
|
|
|
|
console.log('EnvironmentSpecificService created ' +this.testBrowser);
|
|
|
|
/*
|
|
|
|
|
|
|
|
down vote
|
2018-02-05 14:14:59 +01:00
|
|
|
|
2018-02-15 11:36:12 +01:00
|
|
|
|
|
|
|
import { PLATFORM_ID, Inject } from '@angular/core';
|
|
|
|
import { isPlatformBrowser} from '@angular/common';
|
|
|
|
...
|
|
|
|
export class MyComponent {
|
|
|
|
...
|
|
|
|
testBrowser: boolean;
|
|
|
|
constructor(
|
|
|
|
@Inject(PLATFORM_ID) platformId: string) {
|
|
|
|
this.testBrowser = isPlatformBrowser(platformId);
|
|
|
|
if (this.testBrowser) {
|
|
|
|
//this is only executed on the browser
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2018-02-05 14:14:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public loadEnvironment() {
|
|
|
|
// Only want to do this once - if root page is revisited, it calls this again.
|
|
|
|
if (this.envSpecific === null || this.envSpecific === undefined) {
|
|
|
|
console.log('Loading env-properties.json');
|
|
|
|
|
2018-02-15 11:36:12 +01:00
|
|
|
return this.http.get(this.propertiesUrl)
|
2018-02-05 14:14:59 +01:00
|
|
|
.map((data) => data.json())
|
|
|
|
.toPromise<EnvProperties>();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.resolve(this.envSpecificNull);
|
|
|
|
}
|
2018-03-15 10:53:07 +01:00
|
|
|
public subscribeEnvironment() {
|
|
|
|
// Only want to do this once - if root page is revisited, it calls this again.
|
|
|
|
if (this.envSpecific === null || this.envSpecific === undefined) {
|
|
|
|
console.log('Loading env-properties.json');
|
|
|
|
|
|
|
|
return this.http.get(this.propertiesUrl)
|
|
|
|
.map((data) => data.json());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return Observable.of(this.envSpecific);
|
|
|
|
}
|
|
|
|
|
2018-02-05 14:14:59 +01:00
|
|
|
|
|
|
|
public setEnvProperties(es: EnvProperties) {
|
|
|
|
// This has already been set so bail out.
|
|
|
|
if (es === null || es === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.envSpecific = es;
|
|
|
|
console.log(this.envSpecific);
|
|
|
|
|
|
|
|
if (this.envSpecificSubject) {
|
|
|
|
this.envSpecificSubject.next(this.envSpecific);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Call this if you want to know when EnvProperties is set.
|
|
|
|
*/
|
|
|
|
public subscribe(caller: any, callback: (caller: any, es: EnvProperties) => void) {
|
|
|
|
this.envSpecificSubject
|
|
|
|
.subscribe((es) => {
|
|
|
|
if (es === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
callback(caller, es);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|