]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+video-channels/video-channels.component.html
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.component.html
1 <div class="root" *ngIf="videoChannel">
2 <div class="banner" *ngIf="videoChannel.bannerUrl">
3 <img [src]="videoChannel.bannerUrl" alt="Channel banner">
4 </div>
5
6 <div class="channel-info">
7
8 <ng-template #buttonsTemplate>
9 <a *ngIf="isManageable()" [routerLink]="[ '/manage/update', videoChannel.nameWithHost ]" class="peertube-button-link orange-button" i18n>
10 Manage channel
11 </a>
12
13 <my-subscribe-button *ngIf="!isOwner()" #subscribeButton [videoChannels]="[videoChannel]"></my-subscribe-button>
14
15 <button *ngIf="videoChannel.support" (click)="showSupportModal()" class="support-button peertube-button orange-button-inverted">
16 <my-global-icon iconName="support" aria-hidden="true"></my-global-icon>
17 <span class="icon-text" i18n>Support</span>
18 </button>
19 </ng-template>
20
21 <ng-template #ownerTemplate>
22 <div class="owner-block">
23 <div class="section-label" i18n>OWNER ACCOUNT</div>
24
25 <div class="avatar-row">
26 <my-actor-avatar class="account-avatar" [actor]="ownerAccount" actorType="account" [internalHref]="getAccountUrl()"></my-actor-avatar>
27
28 <div class="actor-info">
29 <h4>
30 <a [routerLink]="getAccountUrl()" title="View account" i18n-title>{{ ownerAccount.displayName }}</a>
31 </h4>
32
33 <div class="actor-handle">@{{ videoChannel.ownerBy }}</div>
34
35 <my-account-block-badges [account]="ownerAccount"></my-account-block-badges>
36 </div>
37 </div>
38
39 <div class="owner-description">
40 <div class="description-html" [innerHTML]="ownerDescriptionHTML"></div>
41 </div>
42
43 <a class="view-account short" [routerLink]="getAccountUrl()" i18n>
44 View account
45 </a>
46
47 <a class="view-account complete" [routerLink]="getAccountUrl()" i18n>
48 View owner account
49 </a>
50 </div>
51 </ng-template>
52
53 <div class="channel-avatar-row">
54 <my-actor-avatar class="main-avatar" [actor]="videoChannel" actorType="channel"></my-actor-avatar>
55
56 <div>
57 <div class="section-label" i18n>VIDEO CHANNEL</div>
58
59 <div class="actor-info">
60 <div>
61 <div class="actor-display-name">
62 <h1 i18n-title [title]="'Channel created on ' + (videoChannel.createdAt | date)">{{ videoChannel.displayName }}</h1>
63 </div>
64
65 <div class="actor-handle">
66 <span>@{{ videoChannel.nameWithHost }}</span>
67 <button [cdkCopyToClipboard]="videoChannel.nameWithHostForced" (click)="activateCopiedMessage()"
68 class="btn btn-outline-secondary btn-sm copy-button" title="Copy channel handle" i18n-title
69 >
70 <my-global-icon iconName="copy"></my-global-icon>
71 </button>
72 </div>
73
74 <div class="actor-counters">
75 <span i18n>{videoChannel.followersCount, plural, =0 {No subscribers} =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}</span>
76
77 <span class="videos-count" *ngIf="channelVideosCount !== undefined" i18n>
78 {channelVideosCount, plural, =0 {No videos} =1 {1 video} other {{{ channelVideosCount }} videos}}
79 </span>
80 </div>
81 </div>
82
83 <div class="channel-buttons right">
84 <ng-template *ngTemplateOutlet="buttonsTemplate"></ng-template>
85 </div>
86 </div>
87 </div>
88 </div>
89
90 <div class="channel-description" [ngClass]="{ expanded: channelDescriptionExpanded }">
91 <div class="description-html" [innerHTML]="channelDescriptionHTML"></div>
92 </div>
93
94 <button *ngIf="hasShowMoreDescription()" class="show-more button-unstyle"
95 (click)="channelDescriptionExpanded = !channelDescriptionExpanded"
96 title="Show the complete description" i18n-title i18n
97 >
98 Show more...
99 </button>
100
101 <div class="channel-buttons bottom">
102 <ng-template *ngTemplateOutlet="buttonsTemplate"></ng-template>
103 </div>
104
105 <div class="owner-card">
106 <ng-template *ngTemplateOutlet="ownerTemplate"></ng-template>
107 </div>
108 </div>
109
110 <div class="bottom-owner">
111 <ng-template *ngTemplateOutlet="ownerTemplate"></ng-template>
112 </div>
113
114 <div class="links">
115 <ng-template #linkTemplate let-item="item">
116 <a [routerLink]="item.routerLink" routerLinkActive="active" class="sub-menu-entry">{{ item.label }}</a>
117 </ng-template>
118
119 <my-list-overflow [items]="links" [itemTemplate]="linkTemplate"></my-list-overflow>
120 </div>
121
122 <router-outlet></router-outlet>
123 </div>
124
125 <my-support-modal #supportModal [videoChannel]="videoChannel"></my-support-modal>