aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels/video-channels.component.html
blob: 09f81d2ce6efe9c175bab9de9d04640c08eec2ae (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<div class="root" *ngIf="videoChannel">
  <div class="banner" *ngIf="videoChannel.bannerUrl">
    <img [src]="videoChannel.bannerUrl" alt="Channel banner">
  </div>

  <div class="channel-info">

    <ng-template #buttonsTemplate>
      <a *ngIf="isManageable()" [routerLink]="[ '/manage/update', videoChannel.nameWithHost  ]" class="peertube-button-link orange-button" i18n>
        Manage channel
      </a>

      <my-subscribe-button *ngIf="!isOwner()" #subscribeButton [videoChannels]="[videoChannel]"></my-subscribe-button>

      <button *ngIf="videoChannel.support" (click)="showSupportModal()" class="support-button peertube-button orange-button-inverted">
        <my-global-icon iconName="support" aria-hidden="true"></my-global-icon>
        <span class="icon-text" i18n>Support</span>
      </button>
    </ng-template>

    <ng-template #ownerTemplate>
      <div class="owner-block">
        <div class="section-label" i18n>OWNER ACCOUNT</div>

        <div class="avatar-row">
          <my-actor-avatar class="account-avatar" [account]="ownerAccount" [internalHref]="getAccountUrl()" size="48"></my-actor-avatar>

          <div class="actor-info">
            <h4>
              <a [routerLink]="getAccountUrl()" title="View account" i18n-title>{{ ownerAccount.displayName }}</a>
            </h4>

            <div class="actor-handle">@{{ videoChannel.ownerBy }}</div>

            <my-account-block-badges [account]="ownerAccount"></my-account-block-badges>
          </div>
        </div>

        <div class="owner-description">
          <div class="description-html" [innerHTML]="ownerDescriptionHTML"></div>
        </div>

        <a class="view-account short" [routerLink]="getAccountUrl()" i18n>
          View account
        </a>

        <a class="view-account complete" [routerLink]="getAccountUrl()" i18n>
          View owner account
        </a>
      </div>
    </ng-template>

    <div class="channel-avatar-row">
      <my-actor-avatar class="main-avatar" [channel]="videoChannel" size="120"></my-actor-avatar>

      <div>
        <div class="section-label" i18n>VIDEO CHANNEL</div>

        <div class="actor-info">
          <div>
            <div class="actor-display-name">
              <h1 i18n-title [title]="'Channel created on ' + (videoChannel.createdAt | date)">{{ videoChannel.displayName }}</h1>
            </div>

            <div class="actor-handle">
              <span>@{{ videoChannel.nameWithHost }}</span>
              <button [cdkCopyToClipboard]="videoChannel.nameWithHostForced" (click)="activateCopiedMessage()"
                      class="btn btn-outline-secondary btn-sm copy-button" title="Copy channel handle" i18n-title
              >
                <span class="glyphicon glyphicon-duplicate"></span>
              </button>
            </div>

            <div class="actor-counters">
              <span i18n>{videoChannel.followersCount, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}</span>

              <span class="videos-count" *ngIf="channelVideosCount !== undefined" i18n>
                {channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}
              </span>
            </div>
          </div>

          <div class="channel-buttons right">
            <ng-template *ngTemplateOutlet="buttonsTemplate"></ng-template>
          </div>
        </div>
      </div>
    </div>

    <div class="channel-description" [ngClass]="{ expanded: channelDescriptionExpanded }">
      <div class="description-html" [innerHTML]="channelDescriptionHTML"></div>
    </div>

    <div *ngIf="hasShowMoreDescription()" class="show-more" role="button"
      (click)="channelDescriptionExpanded = !channelDescriptionExpanded"
      title="Show the complete description" i18n-title i18n
    >
      Show more...
    </div>

    <div class="channel-buttons bottom">
      <ng-template *ngTemplateOutlet="buttonsTemplate"></ng-template>
    </div>

    <div class="owner-card">
      <ng-template *ngTemplateOutlet="ownerTemplate"></ng-template>
    </div>
  </div>

  <div class="bottom-owner">
    <ng-template *ngTemplateOutlet="ownerTemplate"></ng-template>
  </div>

  <div class="links">
    <ng-template #linkTemplate let-item="item">
      <a [routerLink]="item.routerLink" routerLinkActive="active" class="title-page">{{ item.label }}</a>
    </ng-template>

    <my-list-overflow [items]="links" [itemTemplate]="linkTemplate"></my-list-overflow>
  </div>

  <router-outlet></router-outlet>
</div>

<my-support-modal #supportModal [videoChannel]="videoChannel"></my-support-modal>