2019-04-05 04:52:27 -04:00
|
|
|
<div class="margin-content">
|
2018-10-10 08:35:55 -04:00
|
|
|
<div class="videos-header">
|
|
|
|
<div *ngIf="titlePage" class="title-page title-page-single">
|
2019-01-14 03:06:48 -05:00
|
|
|
<div placement="bottom" [ngbTooltip]="titleTooltip" container="body">
|
|
|
|
{{ titlePage }}
|
|
|
|
</div>
|
2018-10-10 08:35:55 -04:00
|
|
|
</div>
|
2019-01-14 03:06:48 -05:00
|
|
|
|
2018-10-18 08:35:31 -04:00
|
|
|
<my-feed [syndicationItems]="syndicationItems"></my-feed>
|
2018-10-10 08:35:55 -04:00
|
|
|
|
|
|
|
<div class="moderation-block" *ngIf="displayModerationBlock">
|
|
|
|
<my-peertube-checkbox
|
|
|
|
(change)="toggleModerationDisplay()"
|
2019-04-05 04:52:27 -04:00
|
|
|
inputName="display-unlisted-private" i18n-labelText labelText="Display unlisted and private videos"
|
2018-10-10 08:35:55 -04:00
|
|
|
>
|
|
|
|
</my-peertube-checkbox>
|
|
|
|
</div>
|
2017-12-01 11:38:26 -05:00
|
|
|
</div>
|
2016-05-23 05:07:42 -04:00
|
|
|
|
2018-08-30 08:58:00 -04:00
|
|
|
<div class="no-results" i18n *ngIf="pagination.totalItems === 0">No results.</div>
|
2017-12-01 11:38:26 -05:00
|
|
|
<div
|
2019-03-21 11:49:46 -04:00
|
|
|
myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true"
|
|
|
|
class="videos"
|
2016-07-18 09:39:10 -04:00
|
|
|
>
|
2019-04-05 04:52:27 -04:00
|
|
|
<my-video-miniature
|
|
|
|
*ngFor="let video of videos; trackBy: videoById" [video]="video" [user]="user" [ownerDisplayType]="ownerDisplayType"
|
2019-04-08 03:33:37 -04:00
|
|
|
[displayVideoActions]="displayVideoActions" [displayOptions]="displayOptions"
|
2019-04-05 04:52:27 -04:00
|
|
|
(videoBlacklisted)="removeVideoFromArray(video)" (videoRemoved)="removeVideoFromArray(video)"
|
|
|
|
>
|
2019-03-21 11:49:46 -04:00
|
|
|
</my-video-miniature>
|
2017-12-01 11:38:26 -05:00
|
|
|
</div>
|
2016-05-22 04:43:06 -04:00
|
|
|
</div>
|