aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/app/videos/video-list/video-miniature.component.ts
blob: 11b828ca6a17a0c624976412e137ed2ea7327380 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { DatePipe } from '@angular/common';
import { Component, Input, Output, EventEmitter } from '@angular/core';
import { ROUTER_DIRECTIVES } from '@angular/router-deprecated';

import { Video, VideoService } from '../shared/index';
import { User } from '../../shared/index';

@Component({
  selector: 'my-video-miniature',
  styleUrls: [ 'client/app/videos/video-list/video-miniature.component.css' ],
  templateUrl: 'client/app/videos/video-list/video-miniature.component.html',
  directives: [ ROUTER_DIRECTIVES ],
  pipes: [ DatePipe ]
})

export class VideoMiniatureComponent {
  @Output() removed = new EventEmitter<any>();

  @Input() user: User;
  @Input() video: Video;

  hovering = false;

  constructor(private videoService: VideoService) {}

  displayRemoveIcon() {
    return this.hovering && this.video.isRemovableBy(this.user);
  }

  onBlur() {
    this.hovering = false;
  }

  onHover() {
    this.hovering = true;
  }

  removeVideo(id: string) {
    if (confirm('Do you really want to remove this video?')) {
      this.videoService.removeVideo(id).subscribe(
        status => this.removed.emit(true),
        error => alert(error)
      );
    }
  }
}