aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-videos/my-account-videos.component.html
blob: 1f3ac0005edaa0f9b9e69f82b5202f73b21661e6 (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
47
48
49
<div i18n *ngIf="pagination.totalItems === 0">No results.</div>

<div myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true" class="videos">
  <div class="video" *ngFor="let video of videos; let i = index">
    <div class="checkbox-container">
      <my-peertube-checkbox [inputName]="'video-check-' + video.id" [(ngModel)]="checkedVideos[video.id]"></my-peertube-checkbox>
    </div>

    <my-video-thumbnail [video]="video"></my-video-thumbnail>

    <div class="video-info">
      <a class="video-info-name" [routerLink]="['/videos/watch', video.uuid]" [attr.title]="video.name">{{ video.name }}</a>
      <span i18n class="video-info-date-views">{{ video.createdAt | myFromNow }} - {{ video.views | myNumberFormatter }} views</span>
      <div class="video-info-privacy">{{ video.privacy.label }}{{ getStateLabel(video) }}</div>
      <div *ngIf="video.blacklisted" class="video-info-blacklisted">
        <span class="blacklisted-label" i18n>Blacklisted</span>
        <span class="blacklisted-reason" *ngIf="video.blacklistedReason">{{ video.blacklistedReason }}</span>
      </div>
    </div>

    <!-- Display only once -->
    <div class="action-selection-mode" *ngIf="isInSelectionMode() === true && i === 0">
      <div class="action-selection-mode-child">
        <span i18n class="action-button action-button-cancel-selection" (click)="abortSelectionMode()">
          Cancel
        </span>

        <span class="action-button action-button-delete-selection" (click)="deleteSelectedVideos()">
          <my-global-icon iconName="delete"></my-global-icon>
          <ng-container i18n>Delete</ng-container>
        </span>
      </div>
    </div>

    <div class="video-buttons" *ngIf="isInSelectionMode() === false">
      <my-delete-button (click)="deleteVideo(video)"></my-delete-button>

      <my-edit-button [routerLink]="[ '/videos', 'update', video.uuid ]"></my-edit-button>

      <my-button i18n-label label="Change ownership"
                 className="action-button-change-ownership"
                 icon="im-with-her"
                 (click)="changeOwnership($event, video)"
      ></my-button>
    </div>
  </div>
</div>

<my-video-change-ownership #videoChangeOwnershipModal></my-video-change-ownership>