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

46 lines
1.3 KiB
TypeScript
Raw Normal View History

2020-01-27 18:40:18 +00:00
import { Component, OnInit, OnDestroy, Input } from '@angular/core';
import { MessageBus, Events } from 'protocol';
import { interval } from 'rxjs';
import { animate, style, transition, trigger } from '@angular/animations';
2020-01-27 18:40:18 +00:00
@Component({
selector: 'ng-devtools',
templateUrl: './devtools.component.html',
styleUrls: ['./devtools.component.css'],
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 | undefined = undefined;
2020-01-27 18:40:18 +00:00
@Input() messageBus: MessageBus<Events>;
private _interval$ = interval(500).subscribe(() => this.messageBus.emit('queryNgAvailability'));
ngOnInit(): void {
2020-01-27 18:40:18 +00:00
console.log('Initialized the devtools UI');
this.messageBus.once('ngAvailability', ({ version }) => {
this.angularExists = !!version;
this.angularVersion = version;
2020-01-27 18:40:18 +00:00
this._interval$.unsubscribe();
});
}
ngOnDestroy(): void {
2020-01-27 18:40:18 +00:00
this._interval$.unsubscribe();
}
}