2018-04-25 10:56:13 -04:00
|
|
|
<div *ngIf="videoChannel" class="row">
|
|
|
|
<div class="sub-menu">
|
|
|
|
|
|
|
|
<div class="actor">
|
|
|
|
<img [src]="videoChannel.avatarUrl" alt="Avatar" />
|
|
|
|
|
|
|
|
<div class="actor-info">
|
2018-04-26 04:22:48 -04:00
|
|
|
<div class="actor-names">
|
|
|
|
<div class="actor-display-name">{{ videoChannel.displayName }}</div>
|
2019-12-16 16:13:07 -05:00
|
|
|
<div class="actor-name">{{ videoChannel.nameWithHost }}
|
|
|
|
<button ngxClipboard [cbContent]="videoChannel.nameWithHost" (click)="activateCopiedMessage()"
|
|
|
|
class="btn btn-outline-secondary btn-sm copy-button"
|
|
|
|
>
|
|
|
|
<span class="glyphicon glyphicon-copy"></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
2018-08-21 10:18:59 -04:00
|
|
|
|
2020-01-07 17:51:14 -05:00
|
|
|
<my-subscribe-button #subscribeButton [videoChannels]="[videoChannel]"></my-subscribe-button>
|
2018-04-26 04:22:48 -04:00
|
|
|
</div>
|
2018-06-04 10:21:17 -04:00
|
|
|
<div i18n class="actor-followers">{{ videoChannel.followersCount }} subscribers</div>
|
2018-05-23 05:38:00 -04:00
|
|
|
|
2018-06-04 10:21:17 -04:00
|
|
|
<a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" i18n-title title="Go the owner account page" class="actor-owner">
|
|
|
|
<span i18n>Created by {{ videoChannel.ownerBy }}</span>
|
2018-05-23 05:38:00 -04:00
|
|
|
<img [src]="videoChannel.ownerAvatarUrl" alt="Owner account avatar" />
|
|
|
|
</a>
|
2018-04-25 10:56:13 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="links">
|
2018-06-04 10:21:17 -04:00
|
|
|
<a i18n routerLink="videos" routerLinkActive="active" class="title-page">Videos</a>
|
2019-03-14 09:05:36 -04:00
|
|
|
<a i18n routerLink="video-playlists" routerLinkActive="active" class="title-page">Video playlists</a>
|
2018-06-04 10:21:17 -04:00
|
|
|
<a i18n routerLink="about" routerLinkActive="active" class="title-page">About</a>
|
2018-04-25 10:56:13 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="margin-content">
|
|
|
|
<router-outlet></router-outlet>
|
|
|
|
</div>
|
|
|
|
</div>
|