1
0
Fork 0
peertube/client/src/app/videos/+video-watch/video-watch.component.html

207 lines
8.5 KiB
HTML
Raw Normal View History

<div class="row">
2017-04-21 16:26:09 +00:00
<!-- We need the video container for videojs so we just hide it -->
2018-04-03 16:06:58 +00:00
<div [hidden]="videoNotFound" id="video-element-wrapper">
</div>
2017-04-21 16:26:09 +00:00
2018-05-31 16:12:15 +00:00
<div i18n *ngIf="videoNotFound" id="video-not-found">Video not found :'(</div>
2017-12-06 16:15:59 +00:00
2017-12-11 09:02:17 +00:00
<!-- Video information -->
<div *ngIf="video" class="margin-content video-bottom">
<div class="video-info">
2018-01-31 10:38:05 +00:00
<div class="video-info-first-row">
<div>
<div class="video-info-name">{{ video.name }}</div>
2018-05-31 16:12:15 +00:00
<div i18n class="video-info-date-views">
{{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
2017-12-11 09:02:17 +00:00
</div>
2017-03-08 20:35:43 +00:00
2018-01-31 10:38:05 +00:00
<div class="video-info-channel">
2018-05-31 16:12:15 +00:00
<a [routerLink]="[ '/video-channels', video.channel.id ]" i18n-title title="Go the channel page">
{{ video.channel.displayName }}
</a>
2018-01-31 10:38:05 +00:00
<!-- Here will be the subscribe button -->
<my-help helpType="custom" i18n-customHtml customHtml="You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box <strong>@{{video.account.name}}@{{video.account.host}}</strong> and subscribe there. Subscription as a PeerTube user is being worked on in <a href='https://github.com/Chocobozzz/PeerTube/issues/470'>#470</a>."></my-help>
2017-12-11 09:02:17 +00:00
</div>
2016-11-08 20:11:57 +00:00
2018-01-31 10:38:05 +00:00
<div class="video-info-by">
<a [routerLink]="[ '/accounts', video.by ]" i18n-title title="Go to the account page">
2018-05-31 16:12:15 +00:00
<span i18n>By {{ video.by }}</span>
2018-04-25 13:43:19 +00:00
<img [src]="video.accountAvatarUrl" alt="Account avatar" />
</a>
2017-12-06 16:15:59 +00:00
</div>
2018-01-31 10:38:05 +00:00
</div>
2017-12-06 16:15:59 +00:00
2018-01-31 10:38:05 +00:00
<div class="video-actions-rates">
<div class="video-actions">
<div
*ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
class="action-button action-button-like"
>
2018-05-31 16:12:15 +00:00
<span class="icon icon-like" i18n-title title="Like this video" ></span>
2017-12-11 09:02:17 +00:00
</div>
2018-01-31 10:38:05 +00:00
<div
*ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()"
class="action-button action-button-dislike"
>
2018-05-31 16:12:15 +00:00
<span class="icon icon-dislike" i18n-title title="Dislike this video"></span>
2018-01-31 10:38:05 +00:00
</div>
2017-12-06 17:04:40 +00:00
2018-02-21 07:49:05 +00:00
<div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
2018-02-20 15:13:05 +00:00
<span class="icon icon-support"></span>
2018-05-31 16:12:15 +00:00
<span class="icon-text" i18n>Support</span>
2018-02-20 15:13:05 +00:00
</div>
<div (click)="showShareModal()" class="action-button action-button-share">
2018-01-31 10:38:05 +00:00
<span class="icon icon-share"></span>
2018-05-31 16:12:15 +00:00
<span class="icon-text" i18n>Share</span>
2018-01-31 10:38:05 +00:00
</div>
2017-03-22 20:15:55 +00:00
2018-01-31 10:38:05 +00:00
<div class="action-more" dropdown dropup="true" placement="right">
<div class="action-button" dropdownToggle>
<span class="icon icon-more"></span>
</div>
<ul *dropdownMenu class="dropdown-menu" id="more-menu" role="menu" aria-labelledby="single-button">
<li role="menuitem">
2018-05-31 16:12:15 +00:00
<a class="dropdown-item" i18n-title title="Download the video" href="#" (click)="showDownloadModal($event)">
<span class="icon icon-download"></span> <ng-container i18n>Download</ng-container>
2018-01-31 10:38:05 +00:00
</a>
</li>
<li *ngIf="isUserLoggedIn()" role="menuitem">
2018-05-31 16:12:15 +00:00
<a class="dropdown-item" i18n-title title="Report this video" href="#" (click)="showReportModal($event)">
<span class="icon icon-alert"></span> <ng-container i18n>Report</ng-container>
2018-01-31 10:38:05 +00:00
</a>
</li>
<li *ngIf="isVideoBlacklistable()" role="menuitem">
2018-05-31 16:12:15 +00:00
<a class="dropdown-item" i18n-title title="Blacklist this video" href="#" (click)="blacklistVideo($event)">
<span class="icon icon-blacklist"></span> <ng-container i18n>Blacklist</ng-container>
2018-01-31 10:38:05 +00:00
</a>
</li>
<li *ngIf="isVideoUpdatable()" role="menuitem">
2018-05-31 16:12:15 +00:00
<a class="dropdown-item" i18n-title title="Update this video" href="#" [routerLink]="[ '/videos/update', video.uuid ]">
<span class="icon icon-edit"></span> <ng-container i18n>Update</ng-container>
2018-01-31 10:38:05 +00:00
</a>
</li>
<li *ngIf="isVideoRemovable()" role="menuitem">
2018-05-31 16:12:15 +00:00
<a class="dropdown-item" i18n-title title="Delete this video" href="#" (click)="removeVideo($event)">
<span class="icon icon-blacklist"></span> <ng-container i18n>Delete</ng-container>
2018-01-31 10:38:05 +00:00
</a>
</li>
</ul>
</div>
</div>
2017-03-27 19:11:37 +00:00
2018-01-31 10:38:05 +00:00
<div
class="video-info-likes-dislikes-bar"
*ngIf="video.likes !== 0 || video.dislikes !== 0" [tooltip]="likesBarTooltipText">
<div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
</div>
</div>
2017-12-11 09:02:17 +00:00
</div>
2017-04-21 14:40:45 +00:00
2017-12-11 09:02:17 +00:00
<div class="video-info-description">
<div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>
<div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
2018-05-31 16:12:15 +00:00
<ng-container i18n>Show more</ng-container>
2017-12-11 09:02:17 +00:00
<span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
<my-loader class="description-loading" [loading]="descriptionLoading"></my-loader>
</div>
2017-12-11 09:02:17 +00:00
<div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
2018-05-31 16:12:15 +00:00
<ng-container i18n>Show less</ng-container>
2017-12-11 09:02:17 +00:00
<span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
</div>
</div>
2017-04-07 12:57:05 +00:00
2017-12-11 09:02:17 +00:00
<div class="video-attributes">
<div class="video-attribute">
2018-05-31 16:12:15 +00:00
<span i18n class="video-attribute-label">
2017-12-11 09:02:17 +00:00
Privacy
</span>
<span class="video-attribute-value">
{{ video.privacy.label }}
2017-12-11 09:02:17 +00:00
</span>
</div>
2017-10-31 10:52:52 +00:00
2017-12-11 09:02:17 +00:00
<div class="video-attribute">
2018-05-31 16:12:15 +00:00
<span i18n class="video-attribute-label">
2017-12-11 09:02:17 +00:00
Category
</span>
<span class="video-attribute-value">
{{ video.category.label }}
2017-12-11 09:02:17 +00:00
</span>
</div>
2017-04-21 14:40:45 +00:00
2017-12-11 09:02:17 +00:00
<div class="video-attribute">
2018-05-31 16:12:15 +00:00
<span i18n class="video-attribute-label">
2017-12-11 09:02:17 +00:00
Licence
</span>
<span class="video-attribute-value">
{{ video.licence.label }}
2017-12-11 09:02:17 +00:00
</span>
</div>
2017-04-21 14:40:45 +00:00
2017-12-11 09:02:17 +00:00
<div class="video-attribute">
2018-05-31 16:12:15 +00:00
<span i18n class="video-attribute-label">
2017-12-11 09:02:17 +00:00
Language
</span>
<span class="video-attribute-value">
{{ video.language.label }}
2017-12-11 09:02:17 +00:00
</span>
</div>
2017-04-23 19:57:08 +00:00
2017-12-11 09:02:17 +00:00
<div class="video-attribute">
2018-05-31 16:12:15 +00:00
<span i18n class="video-attribute-label">
2017-12-11 09:02:17 +00:00
Tags
</span>
2017-04-23 19:57:08 +00:00
2017-12-11 09:02:17 +00:00
<span class="video-attribute-value">
{{ getVideoTags() }}
</span>
</div>
2017-04-23 19:57:08 +00:00
</div>
2017-12-06 16:15:59 +00:00
2017-12-27 15:11:53 +00:00
<my-video-comments [video]="video" [user]="user"></my-video-comments>
</div>
2017-12-11 09:02:17 +00:00
<div class="other-videos">
2018-05-31 16:12:15 +00:00
<div i18n class="title-page title-page-single">
2017-12-11 09:02:17 +00:00
Other videos
</div>
<div *ngFor="let video of otherVideosDisplayed">
2017-12-11 09:02:17 +00:00
<my-video-miniature [video]="video" [user]="user"></my-video-miniature>
</div>
</div>
</div>
<div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
2018-05-31 16:12:15 +00:00
<strong i18n>Friendly Reminder:</strong>
<div class="privacy-concerns-text">
2018-05-31 16:12:15 +00:00
<ng-container i18n>
The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be accessed publicly.
</ng-container>
<a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about#p2p-privacy">More information</a>
</div>
2018-05-31 16:12:15 +00:00
<div i18n class="privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
OK
</div>
</div>
</div>
2017-04-12 20:00:17 +00:00
<ng-template [ngIf]="video !== null">
2018-02-20 15:13:05 +00:00
<my-video-support #videoSupportModal [video]="video"></my-video-support>
2017-01-20 18:22:15 +00:00
<my-video-share #videoShareModal [video]="video"></my-video-share>
<my-video-download #videoDownloadModal [video]="video"></my-video-download>
2017-01-20 18:22:15 +00:00
<my-video-report #videoReportModal [video]="video"></my-video-report>
2017-04-12 20:00:17 +00:00
</ng-template>