I need to know how do I use the VgFullscreenAPI. The official documentation doesn’t help.
This is what I have:
JavaScript
x
26
26
1
<vg-player
2
(onPlayerReady)="onPlayerReady($event)"
3
(onChangeFullscreen)="toggleFullscreen($event)">
4
<vg-play-pause #playBtn class="play-btn">
5
<span class="vg-icon-play_arrow"></span>
6
</vg-play-pause>
7
<vg-controls [vgAutohide]="true" [vgAutohideTime]="4" >
8
<vg-play-pause</vg-play-pause>
9
<vg-mute></vg-mute>
10
<vg-fullscreen class="ml-auto"></vg-fullscreen>
11
</vg-controls>
12
<video #media
13
[vgMedia]="media"
14
[attr.id]="post.id"
15
preload="none"
16
[poster]="post.thumbnail"
17
(click)="onVideoClick()"
18
loop>
19
<source [src]="post.source" type="video/mp4">
20
</video>
21
</vg-player>
22
23
toggleFullscreen($event){
24
console.log($event);
25
}
26
I have tried using the output event emitter (onChangeFullscreen)
on vg-plater
, vg-fullscreen
, and video
tags.
Advertisement
Answer
The event is provided by the VgFullscreenAPI service inside VgPlayer, you can access it like this inside your component class:
JavaScript
1
8
1
@ViewChild(VgPlayer) vgPlayer: VgPlayer;
2
3
ngAfterViewInit(): void {
4
this.vgPlayer.fsAPI.onChangeFullscreen.subscribe((event) => {
5
this.toggleFullscreen(event);
6
});
7
}
8
Don’t really know why they made it an EventEmitter inside the service. Doesn’t seem like they really understand the new angular version yet 🙂