aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-history/my-account-history.component.html
blob: d42af37d4a475f36dd6a05fce6f8ab93835c1d5d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                                                













                                                                                                                                            
<div class="top-buttons">
  <div class="history-switch">
    <p-inputSwitch [(ngModel)]="videosHistoryEnabled" (ngModelChange)="onVideosHistoryChange()"></p-inputSwitch>
    <label i18n>History enabled</label>
  </div>

  <div class="delete-history">
    <button (click)="deleteHistory()" i18n>Delete history</button>
  </div>
</div>


<div class="no-history" i18n *ngIf="pagination.totalItems === 0">You don't have videos history yet.</div>

<div myInfiniteScroller (nearOfBottom)="onNearOfBottom()" class="videos" #videosElement>
  <div *ngFor="let videos of videoPages;" class="videos-page">
    <div class="video" *ngFor="let video of videos">
      <my-video-thumbnail [video]="video"></my-video-thumbnail>

      <div class="video-info">
        <a tabindex="-1" class="video-info-name" [routerLink]="['/videos/watch', video.uuid]" [attr.title]="video.name">{{ video.name }}</a>
        <span i18n class="video-info-date-views">{{ video.views | myNumberFormatter }} views</span>
        <a tabindex="-1" class="video-info-account" [routerLink]="[ '/accounts', video.byAccount ]">{{ video.byAccount }}</a>
      </div>
    </div>
  </div>
</div>