aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-videos/my-account-videos.component.html
blob: 7ac6371dbd7a2b3d61dca7438d797b21886fcd78 (plain) (tree)
1
2
3
4
5
6
7
8
                                                               
 
    


                                                                                                     
                               
 





                                                                                                        
 
                                                               
 

                                                                                                                              
                                                                                                                                       
                                                                                                 
            
 


                                                                                                    
                                                                                                         

                  
 
                                                                                                      
                                                        
                                                    

                 
            
 

                                                                          
 
                                                                                            
            
          

        
<div i18n *ngIf="pagination.totalItems === 0">No results.</div>

<div
  myInfiniteScroller
  [pageHeight]="pageHeight"
  (nearOfTop)="onNearOfTop()" (nearOfBottom)="onNearOfBottom()" (pageChanged)="onPageChanged($event)"
  class="videos" #videosElement
>
  <div *ngFor="let videos of videoPages; let i = index" class="videos-page">
    <div class="video" *ngFor="let video of videos; let j = index">
      <div class="checkbox-container">
        <input [id]="'video-check-' + video.id" type="checkbox" [(ngModel)]="checkedVideos[video.id]" />
        <label [for]="'video-check-' + video.id"></label>
      </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-private">{{ video.privacy.label }}{{ getStateLabel(video) }}</div>
      </div>

      <!-- Display only once -->
      <div class="action-selection-mode" *ngIf="isInSelectionMode() === true && i === 0 && j === 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()">
            <span class="icon icon-delete-white"></span>
            <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>
      </div>
    </div>
  </div>
</div>