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




                                                                           
     
 
                                                                  
                                      

                                                                                                       


                                                                                                                    
 
                                               
                                                                       
                                                          
      
      

                            
                                                                                       
                                                                       



                                                         
                                                                                                                                     
                                                                                    
                                                                             

          

                                                                                                                                                                    

                                                                                                                                                                
                                         

                                                                                                      

            
                                                                           
                                                                                                                                                                                           
            
          

        
<h1>
  <span>
    <my-global-icon iconName="channel" aria-hidden="true"></my-global-icon>
    <ng-container i18n>My channels</ng-container>
    <span class="badge badge-secondary">{{ totalItems }}</span>
  </span>
</h1>

<div class="video-channels-header d-flex justify-content-between">
  <div class="has-feedback has-clear">
    <input type="text" placeholder="Search your channels" i18n-placeholder [(ngModel)]="channelsSearch"
      (ngModelChange)="onChannelsSearchChanged()" />
    <a class="glyphicon glyphicon-remove-sign form-control-feedback form-control-clear" (click)="resetSearch()"></a>
    <span class="sr-only" i18n>Clear filters</span>
  </div>

  <a class="create-button" routerLink="create">
    <my-global-icon iconName="add" aria-hidden="true"></my-global-icon>
    <ng-container i18n>Create video channel</ng-container>
  </a>
</div>

<div class="video-channels">
  <div *ngFor="let videoChannel of videoChannels; let i = index" class="video-channel">
    <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]">
      <img [src]="videoChannel.avatarUrl" alt="Avatar" />
    </a>

    <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, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}</div>

      <div i18n class="video-channel-videos">{videoChannel.videosCount, plural, =0 {No videos} =1 {1 video} other {{{ videoChannel.videosCount }} videos}}</div>

      <div class="video-channel-buttons">
        <my-edit-button label [routerLink]="[ 'update', videoChannel.nameWithHost ]"></my-edit-button>
        <my-delete-button label (click)="deleteVideoChannel(videoChannel)"></my-delete-button>
      </div>

      <div *ngIf="!isInSmallView" class="w-100 d-flex justify-content-end">
        <p-chart *ngIf="videoChannelsChartData && videoChannelsChartData[i]" type="line" [data]="videoChannelsChartData[i]" [options]="chartOptions" width="40vw" height="100px"></p-chart>
      </div>
    </div>
  </div>
</div>