mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
32 lines
785 B
TypeScript
32 lines
785 B
TypeScript
import { Component, OnDestroy, OnInit } from "@angular/core";
|
|
import * as screenfull from "screenfull";
|
|
|
|
@Component({
|
|
selector: "my-fullscreen-button",
|
|
templateUrl: "fullscreen-button.component.html",
|
|
styleUrls: ["fullscreen-button.component.scss"],
|
|
})
|
|
export class FullscreenButtonComponent implements OnDestroy, OnInit {
|
|
|
|
public isFullscreen = false;
|
|
|
|
private listener = null;
|
|
|
|
constructor() {
|
|
// Do stuff
|
|
}
|
|
|
|
public ngOnInit(): void {
|
|
this.listener = screenfull.on("change", () => {
|
|
this.isFullscreen = screenfull.isFullscreen;
|
|
});
|
|
this.isFullscreen = screenfull.isFullscreen;
|
|
}
|
|
|
|
public ngOnDestroy(): void {
|
|
if (this.listener) {
|
|
screenfull.off(this.listener);
|
|
}
|
|
}
|
|
}
|