angular/devtools/projects/ng-devtools/src/lib/devtools.component.ts

71 lines
2 KiB
TypeScript
Raw Normal View History

/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {animate, style, transition, trigger} from '@angular/animations';
import {Component, OnDestroy, OnInit} from '@angular/core';
import {Events, MessageBus} from 'protocol';
import {interval} from 'rxjs';
import {ThemeService} from './theme-service';
2020-01-27 18:40:18 +00:00
@Component({
selector: 'ng-devtools',
templateUrl: './devtools.component.html',
styleUrls: ['./devtools.component.scss'],
animations: [
trigger(
'enterAnimation',
[
transition(':enter', [style({opacity: 0}), animate('200ms', style({opacity: 1}))]),
transition(':leave', [style({opacity: 1}), animate('200ms', style({opacity: 0}))]),
]),
],
2020-01-27 18:40:18 +00:00
})
export class DevToolsComponent implements OnInit, OnDestroy {
angularExists: boolean|null = null;
angularVersion: string|boolean|undefined = undefined;
angularIsInDevMode = true;
2020-04-20 17:13:18 +00:00
ivy: boolean;
constructor(private _messageBus: MessageBus<Events>, private _themeService: ThemeService) {}
2020-01-27 18:40:18 +00:00
private _interval$ = interval(500).subscribe((attempt) => {
if (attempt === 10) {
this.angularExists = false;
}
this._messageBus.emit('queryNgAvailability');
});
2020-01-27 18:40:18 +00:00
ngOnInit(): void {
this._themeService.initializeThemeWatcher();
this._messageBus.once('ngAvailability', ({version, devMode, ivy}) => {
this.angularExists = !!version;
this.angularVersion = version;
this.angularIsInDevMode = devMode;
2020-04-20 17:13:18 +00:00
this.ivy = ivy;
2020-01-27 18:40:18 +00:00
this._interval$.unsubscribe();
});
}
get majorAngularVersion(): number {
if (!this.angularVersion) {
return -1;
}
2020-04-20 17:13:18 +00:00
return parseInt(this.angularVersion.toString().split('.')[0], 10);
}
get supportedVersion(): boolean {
2020-04-20 17:13:18 +00:00
return (this.majorAngularVersion >= 9 || this.majorAngularVersion === 0) && this.ivy;
}
ngOnDestroy(): void {
2020-01-27 18:40:18 +00:00
this._interval$.unsubscribe();
}
}