blob: 260ecac195486483ee480ab46f85c54588fa3fe8 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { Injectable } from '@angular/core';
import { BaseSandbox } from '@shared/sandbox/base.sandbox';
import { Store, ActionsSubject } from '@ngrx/store';
import * as store from '@shared/store';
import * as versionActions from '@shared/store/actions/version/version.action';
import { ofType } from '@ngrx/effects';
import { map } from 'rxjs/operators';
import { take } from 'rxjs/operators';
import { takeUntil } from 'rxjs/operators';
import { Globals } from '@app/shared/constants/globals';
import { ReplaySubject } from 'rxjs';
@Injectable()
export class VersionSandbox extends BaseSandbox {
public version$: ReplaySubject<any> = new ReplaySubject();
constructor(protected appState$: Store<store.State>, private actionsSubject: ActionsSubject) {
super(appState$);
}
public loadVersion(): void {
this.appState$.dispatch(versionActions.version());
this.actionsSubject
.pipe(
ofType(versionActions.versionSuccess),
map((action: versionActions.IVersionSuccess) => action.payload),
take(1),
takeUntil(this._endSubscriptions$)
)
.subscribe((payload: any) => {
payload = {...payload, frontendVersion: Globals.FRONTEND_VERSION}
this.version$.next(payload);
});
}
}