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';
|
2022-05-18 15:39:05 +00:00
|
|
|
import {Platform} from '@angular/cdk/platform';
|
|
|
|
|
import {DOCUMENT} from '@angular/common';
|
2024-02-27 17:12:43 +00:00
|
|
|
import {Component, Inject, OnDestroy, OnInit} from '@angular/core';
|
2021-12-09 05:44:17 +00:00
|
|
|
import {Events, MessageBus} from 'protocol';
|
|
|
|
|
import {interval} from 'rxjs';
|
|
|
|
|
|
|
|
|
|
import {ThemeService} from './theme-service';
|
2024-02-27 17:12:43 +00:00
|
|
|
import {MatTooltip} from '@angular/material/tooltip';
|
2024-01-19 21:52:14 +00:00
|
|
|
import {DevToolsTabsComponent} from './devtools-tabs/devtools-tabs.component';
|
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: [
|
2024-01-16 21:35:47 +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
|
|
|
],
|
2024-01-19 21:52:14 +00:00
|
|
|
standalone: true,
|
2024-02-27 17:12:43 +00:00
|
|
|
imports: [DevToolsTabsComponent, MatTooltip],
|
2020-01-27 18:40:18 +00:00
|
|
|
})
|
|
|
|
|
export class DevToolsComponent implements OnInit, OnDestroy {
|
2024-02-27 17:12:43 +00:00
|
|
|
angularExists: boolean | null = null;
|
2024-01-16 21:35:47 +00:00
|
|
|
angularVersion: string | boolean | undefined = undefined;
|
2021-02-25 10:34:39 +00:00
|
|
|
angularIsInDevMode = true;
|
2024-01-19 19:29:24 +00:00
|
|
|
hydration: boolean = false;
|
2023-12-04 19:44:53 +00:00
|
|
|
ivy!: boolean;
|
2020-03-18 00:48:29 +00:00
|
|
|
|
2022-05-18 15:39:05 +00:00
|
|
|
private readonly _firefoxStyleName = 'firefox_styles.css';
|
|
|
|
|
private readonly _chromeStyleName = 'chrome_styles.css';
|
2024-02-27 17:12:43 +00:00
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
|
private _messageBus: MessageBus<Events>,
|
|
|
|
|
private _themeService: ThemeService,
|
|
|
|
|
private _platform: Platform,
|
|
|
|
|
@Inject(DOCUMENT) private _document: Document,
|
|
|
|
|
) {}
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2020-04-16 20:32:12 +00:00
|
|
|
private _interval$ = interval(500).subscribe((attempt) => {
|
2024-02-27 17:12:43 +00:00
|
|
|
if (attempt === 10) {
|
|
|
|
|
this.angularExists = false;
|
2020-04-16 20:32:12 +00:00
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
|
|
2024-01-19 19:29:24 +00:00
|
|
|
this._messageBus.once('ngAvailability', ({version, devMode, ivy, hydration}) => {
|
2024-02-27 17:12:43 +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();
|
2024-01-19 19:29:24 +00:00
|
|
|
this.hydration = hydration;
|
2020-01-27 18:40:18 +00:00
|
|
|
});
|
2022-05-18 15:39:05 +00:00
|
|
|
|
2024-01-16 21:35:47 +00:00
|
|
|
const browserStyleName = this._platform.FIREFOX
|
|
|
|
|
? this._firefoxStyleName
|
|
|
|
|
: this._chromeStyleName;
|
2022-05-18 15:39:05 +00:00
|
|
|
this._loadStyle(browserStyleName);
|
2020-01-27 18:40:18 +00:00
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2022-05-18 15:39:05 +00:00
|
|
|
/** Add a style file in header based on fileName */
|
|
|
|
|
private _loadStyle(styleName: string) {
|
|
|
|
|
const head = this._document.getElementsByTagName('head')[0];
|
|
|
|
|
|
|
|
|
|
const style = this._document.createElement('link');
|
|
|
|
|
style.rel = 'stylesheet';
|
|
|
|
|
style.href = `./styles/${styleName}`;
|
|
|
|
|
|
|
|
|
|
head.appendChild(style);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-29 00:29:23 +00:00
|
|
|
ngOnDestroy(): void {
|
2020-01-27 18:40:18 +00:00
|
|
|
this._interval$.unsubscribe();
|
|
|
|
|
}
|
|
|
|
|
}
|