mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Lazy load dropdown info on click
Instead of mouseenter
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
</div>
|
||||
|
||||
<my-action-dropdown
|
||||
[actions]="videoActions" [label]="label" [entry]="{ video: video }" (mouseenter)="loadDropdownInformation()"
|
||||
[actions]="videoActions" [label]="label" [entry]="{ video: video }" (click)="loadDropdownInformation()"
|
||||
[buttonSize]="buttonSize" [placement]="placement" [buttonDirection]="buttonDirection" [buttonStyled]="buttonStyled"
|
||||
></my-action-dropdown>
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ export type VideoActionsDisplayType = {
|
||||
templateUrl: './video-actions-dropdown.component.html',
|
||||
styleUrls: [ './video-actions-dropdown.component.scss' ]
|
||||
})
|
||||
export class VideoActionsDropdownComponent implements AfterViewInit, OnChanges {
|
||||
export class VideoActionsDropdownComponent implements OnChanges {
|
||||
@ViewChild('playlistDropdown') playlistDropdown: NgbDropdown
|
||||
@ViewChild('playlistAdd') playlistAdd: VideoAddToPlaylistComponent
|
||||
|
||||
@@ -78,13 +78,6 @@ export class VideoActionsDropdownComponent implements AfterViewInit, OnChanges {
|
||||
return this.authService.getUser()
|
||||
}
|
||||
|
||||
ngAfterViewInit () {
|
||||
// We rely on mouseenter to lazy load actions
|
||||
if (this.screenService.isInTouchScreen()) {
|
||||
this.loadDropdownInformation()
|
||||
}
|
||||
}
|
||||
|
||||
ngOnChanges () {
|
||||
this.buildActions()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user