angular/projects/ng-devtools/src/lib/devtools.component.ts
mgechev 4fc8a075c0 fix(devtools): initialization and popup logic
- Rename the popups and introduce a new one - supported version but no ivy
- Change the initialization logic to reflect the latest profiling updates
2020-05-04 18:33:17 -04:00

62 lines
1.9 KiB
TypeScript

import { Component, OnInit, OnDestroy } from '@angular/core';
import { MessageBus, Events } from 'protocol';
import { interval } from 'rxjs';
import { animate, style, transition, trigger } from '@angular/animations';
import { MatSnackBar } from '@angular/material/snack-bar';
@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 }))]),
]),
],
})
export class DevToolsComponent implements OnInit, OnDestroy {
angularExists: boolean | null = null;
angularVersion: string | boolean | undefined = undefined;
ivy: boolean;
constructor(private _messageBus: MessageBus<Events>, private _snackBar: MatSnackBar) {}
private _interval$ = interval(500).subscribe((attempt) => {
if (attempt === 10) {
this.angularExists = false;
}
this._messageBus.emit('queryNgAvailability');
});
ngOnInit(): void {
this._messageBus.once('ngAvailability', ({ version, devMode, ivy }) => {
this.angularExists = !!version;
this.angularVersion = version;
this.ivy = ivy;
if (!devMode) {
this._snackBar.open(
'Production mode detected. Angular DevTools has limited functionality in production mode.',
'',
{ duration: 5000 }
);
}
this._interval$.unsubscribe();
});
}
get majorAngularVersion(): number {
if (!this.angularVersion) {
return -1;
}
return parseInt(this.angularVersion.toString().split('.')[0], 10);
}
get supportedVersion(): boolean {
return (this.majorAngularVersion >= 9 || this.majorAngularVersion === 0) && this.ivy;
}
ngOnDestroy(): void {
this._interval$.unsubscribe();
}
}