Add show channel button in account page
This commit is contained in:
parent
8e8eb2614b
commit
dc89026348
|
@ -5,7 +5,7 @@
|
||||||
<div class="channels" myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true">
|
<div class="channels" myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true">
|
||||||
<div class="section channel" *ngFor="let videoChannel of videoChannels">
|
<div class="section channel" *ngFor="let videoChannel of videoChannels">
|
||||||
<div class="section-title">
|
<div class="section-title">
|
||||||
<a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]" i18n-title title="See this video channel">
|
<a [routerLink]="getVideoChannelLink(videoChannel)" i18n-title title="See this video channel">
|
||||||
<img [src]="videoChannel.avatarUrl" alt="Avatar" />
|
<img [src]="videoChannel.avatarUrl" alt="Avatar" />
|
||||||
|
|
||||||
<div>{{ videoChannel.displayName }}</div>
|
<div>{{ videoChannel.displayName }}</div>
|
||||||
|
@ -20,6 +20,10 @@
|
||||||
|
|
||||||
<my-video-miniature *ngFor="let video of getVideosOf(videoChannel)" [video]="video" [user]="user" [displayVideoActions]="false"></my-video-miniature>
|
<my-video-miniature *ngFor="let video of getVideosOf(videoChannel)" [video]="video" [user]="user" [displayVideoActions]="false"></my-video-miniature>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<a class="show-more" i18n [routerLink]="getVideoChannelLink(videoChannel)">
|
||||||
|
Show this channel
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -89,4 +89,8 @@ export class AccountVideoChannelsComponent implements OnInit, OnDestroy {
|
||||||
|
|
||||||
this.loadMoreChannels()
|
this.loadMoreChannels()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getVideoChannelLink (videoChannel: VideoChannel) {
|
||||||
|
return [ '/video-channels', videoChannel.nameWithHost ]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ $more-margin-right: 10px;
|
||||||
width: $video-miniature-width;
|
width: $video-miniature-width;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-bottom: 30px;
|
margin-bottom: $video-miniature-margin-bottom;
|
||||||
height: 195px;
|
height: 195px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
|
|
||||||
|
|
|
@ -142,10 +142,13 @@ $play-overlay-width: 18px;
|
||||||
@mixin miniature-rows {
|
@mixin miniature-rows {
|
||||||
max-height: 540px; // 2 rows max
|
max-height: 540px; // 2 rows max
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding-top: 10px;
|
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
padding-top: 30px;
|
padding-top: 30px;
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
border-top: none !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
my-video-miniature {
|
my-video-miniature {
|
||||||
|
@ -155,9 +158,11 @@ $play-overlay-width: 18px;
|
||||||
.section-title {
|
.section-title {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
font-weight: $font-semibold;
|
font-weight: $font-semibold;
|
||||||
margin-bottom: 30px;
|
padding-top: 15px;
|
||||||
|
margin-bottom: 15px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
border-top: 1px solid $separator-border-color;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
&:hover, &:focus:not(.focus-visible), &:active {
|
&:hover, &:focus:not(.focus-visible), &:active {
|
||||||
|
@ -194,6 +199,17 @@ $play-overlay-width: 18px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.show-more {
|
||||||
|
position: relative;
|
||||||
|
top: -5px;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 16px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: $grey-foreground-color;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-weight: $font-semibold;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $mobile-view) {
|
@media screen and (max-width: $mobile-view) {
|
||||||
max-height: initial;
|
max-height: initial;
|
||||||
overflow: initial;
|
overflow: initial;
|
||||||
|
|
|
@ -47,6 +47,7 @@ $footer-border-color: $header-border-color;
|
||||||
$separator-border-color: rgba(0, 0, 0, 0.10);
|
$separator-border-color: rgba(0, 0, 0, 0.10);
|
||||||
|
|
||||||
$video-miniature-width: 238px;
|
$video-miniature-width: 238px;
|
||||||
|
$video-miniature-margin-bottom: 30px;
|
||||||
$video-thumbnail-height: 122px;
|
$video-thumbnail-height: 122px;
|
||||||
$video-thumbnail-width: 223px;
|
$video-thumbnail-width: 223px;
|
||||||
$video-thumbnail-ratio: $video-thumbnail-width / $video-thumbnail-height;
|
$video-thumbnail-ratio: $video-thumbnail-width / $video-thumbnail-height;
|
||||||
|
|
Loading…
Reference in New Issue