aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/my-subscriptions/my-subscriptions.component.html
blob: f91cebacfbbf1a3e5904526f85837d1aebbdacdf (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
<h1>
  <span>
    <my-global-icon iconName="subscriptions" aria-hidden="true"></my-global-icon>
    <ng-container i18n>My subscriptions</ng-container>
    <span class="badge badge-secondary"> {{ pagination.totalItems }}</span>
  </span>
</h1>

<div class="video-subscriptions-header">
  <my-advanced-input-filter (search)="onSearch($event)"></my-advanced-input-filter>
</div>

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

<div class="video-channels" myInfiniteScroller [autoInit]="true" (nearOfBottom)="onNearOfBottom()" [dataObservable]="onDataSubject.asObservable()">
  <div *ngFor="let videoChannel of videoChannels" class="video-channel">
    <my-actor-avatar [channel]="videoChannel" [internalHref]="[ '/video-channels', videoChannel.nameWithHost ]"></my-actor-avatar>

    <div class="video-channel-info">
      <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]" class="video-channel-names" i18n-title title="Channel page">
        <div class="video-channel-display-name">{{ videoChannel.displayName }}</div>
        <div class="video-channel-name">{{ videoChannel.nameWithHost }}</div>
      </a>

      <div i18n class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div>

      <a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" i18n-title title="Owner account page" class="actor-owner">
        <span i18n>Created by {{ videoChannel.ownerBy }}</span>

        <my-actor-avatar [account]="videoChannel.ownerAccount" size="18"></my-actor-avatar>
      </a>
    </div>

    <my-subscribe-button [videoChannels]="[videoChannel]"></my-subscribe-button>
  </div>
</div>