2021-12-10 02:37:01 +00:00
|
|
|
/**
|
|
|
|
|
* @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
|
|
|
|
|
*/
|
|
|
|
|
|
2021-12-09 05:44:17 +00:00
|
|
|
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',
|
2020-03-29 03:28:36 +00:00
|
|
|
styleUrls: ['./devtools.component.scss'],
|
2020-02-04 15:34:34 +00:00
|
|
|
animations: [
|
2021-12-09 05:44:17 +00:00
|
|
|
trigger(
|
|
|
|
|
'enterAnimation',
|
|
|
|
|
[
|
|
|
|
|
transition(':enter', [style({opacity: 0}), animate('200ms', style({opacity: 1}))]),
|
|
|
|
|
transition(':leave', [style({opacity: 1}), animate('200ms', style({opacity: 0}))]),
|
|
|
|
|
]),
|
2020-02-07 21:25:16 +00:00
|
|
|
],
|
2020-01-27 18:40:18 +00:00
|
|
|
})
|
|
|
|
|
export class DevToolsComponent implements OnInit, OnDestroy {
|
2021-12-09 05:44:17 +00:00
|
|
|
angularExists: boolean|null = null;
|
|
|
|
|
angularVersion: string|boolean|undefined = undefined;
|
2021-02-25 10:34:39 +00:00
|
|
|
angularIsInDevMode = true;
|
2020-04-20 17:13:18 +00:00
|
|
|
ivy: boolean;
|
2020-03-18 00:48:29 +00:00
|
|
|
|
2021-02-25 10:34:39 +00:00
|
|
|
constructor(private _messageBus: MessageBus<Events>, private _themeService: ThemeService) {}
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2020-04-16 20:32:12 +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
|
|
|
|
2020-01-29 00:29:23 +00:00
|
|
|
ngOnInit(): void {
|
2021-02-25 10:34:39 +00:00
|
|
|
this._themeService.initializeThemeWatcher();
|
|
|
|
|
|
2021-12-09 05:44:17 +00:00
|
|
|
this._messageBus.once('ngAvailability', ({version, devMode, ivy}) => {
|
2020-01-29 00:29:23 +00:00
|
|
|
this.angularExists = !!version;
|
2020-01-29 17:10:57 +00:00
|
|
|
this.angularVersion = version;
|
2021-02-25 10:33:38 +00:00
|
|
|
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();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 18:59:26 +00:00
|
|
|
get majorAngularVersion(): number {
|
2020-03-20 18:54:37 +00:00
|
|
|
if (!this.angularVersion) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2020-04-20 17:13:18 +00:00
|
|
|
return parseInt(this.angularVersion.toString().split('.')[0], 10);
|
2020-02-07 18:39:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get supportedVersion(): boolean {
|
2020-04-20 17:13:18 +00:00
|
|
|
return (this.majorAngularVersion >= 9 || this.majorAngularVersion === 0) && this.ivy;
|
2020-02-07 18:39:15 +00:00
|
|
|
}
|
|
|
|
|
|
2020-01-29 00:29:23 +00:00
|
|
|
ngOnDestroy(): void {
|
2020-01-27 18:40:18 +00:00
|
|
|
this._interval$.unsubscribe();
|
|
|
|
|
}
|
|
|
|
|
}
|