1 <div class=
"root" [ngClass]=
"{ 'theater-enabled': theaterEnabled }">
2 <!-- We need the video container for videojs so we just hide it -->
3 <div id=
"video-wrapper">
4 <div *
ngIf=
"remoteServerDown" class=
"remote-server-down">
5 Sorry, but this video is not available because the remote instance is not responding.
7 Please try again later.
10 <div id=
"videojs-wrapper"></div>
12 <my-video-watch-playlist
14 [video]=
"video" [playlist]=
"playlist" class=
"playlist"
15 ></my-video-watch-playlist>
19 <div i18n
class=
"col-md-12 alert alert-warning" *
ngIf=
"isVideoToImport()">
20 The video is being imported, it will be available when the import is finished.
23 <div i18n
class=
"col-md-12 alert alert-warning" *
ngIf=
"isVideoToTranscode()">
24 The video is being transcoded, it may not work properly.
27 <div i18n
class=
"col-md-12 alert alert-info" *
ngIf=
"hasVideoScheduledPublication()">
28 This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}.
31 <div class=
"col-md-12 alert alert-danger" *
ngIf=
"video?.blacklisted">
32 <div class=
"blacklisted-label" i18n
>This video is blacklisted.
</div>
33 {{ video.blacklistedReason }}
37 <!-- Video information -->
38 <div *
ngIf=
"video" class=
"margin-content video-bottom">
39 <div class=
"video-info">
40 <div class=
"video-info-first-row">
42 <div class=
"d-block d-md-none"> <!-- only shown on medium devices, has its counterpart for larger viewports below -->
43 <h1 class=
"video-info-name">{{ video.name }}
</h1>
45 <div i18n
class=
"video-info-date-views">
46 Published
<my-date-toggle [date]=
"video.publishedAt"></my-date-toggle> <span class=
"views"> • {{ video.views | myNumberFormatter }} views
</span>
50 <div class=
"d-flex justify-content-between flex-direction-column">
51 <div class=
"d-none d-md-block">
52 <h1 class=
"video-info-name">{{ video.name }}
</h1>
55 <div class=
"video-info-first-row-bottom">
56 <div i18n
class=
"d-none d-md-block video-info-date-views">
57 Published
<my-date-toggle [date]=
"video.publishedAt"></my-date-toggle> <span class=
"views"> • {{ video.views | myNumberFormatter }} views
</span>
60 <div class=
"video-actions-rates">
61 <div class=
"video-actions fullWidth justify-content-end">
63 [ngbPopover]=
"getRatePopoverText()" [ngClass]=
"{ 'activated': userRating === 'like' }" (click)=
"setLike()"
64 class=
"action-button action-button-like" role=
"button" [attr.aria-pressed]=
"userRating === 'like'"
65 [ngbTooltip]=
"tooltipLike"
66 placement=
"bottom auto"
68 <my-global-icon iconName=
"like"></my-global-icon>
69 <span *
ngIf=
"video.likes" class=
"count">{{ video.likes }}
</span>
73 [ngbPopover]=
"getRatePopoverText()" [ngClass]=
"{ 'activated': userRating === 'dislike' }" (click)=
"setDislike()"
74 class=
"action-button action-button-dislike" role=
"button" [attr.aria-pressed]=
"userRating === 'dislike'"
75 [ngbTooltip]=
"tooltipDislike"
76 placement=
"bottom auto"
78 <my-global-icon iconName=
"dislike"></my-global-icon>
79 <span *
ngIf=
"video.dislikes" class=
"count">{{ video.dislikes }}
</span>
82 <div *
ngIf=
"video.support" (click)=
"showSupportModal()" class=
"action-button action-button-support"
83 [ngbTooltip]=
"tooltipSupport"
84 placement=
"bottom auto"
86 <my-global-icon iconName=
"support"></my-global-icon>
87 <span class=
"icon-text" i18n
>Support
</span>
90 <div (click)=
"showShareModal()" class=
"action-button" role=
"button">
91 <my-global-icon iconName=
"share"></my-global-icon>
92 <span class=
"icon-text" i18n
>Share
</span>
96 class=
"action-dropdown" ngbDropdown
placement=
"top" role=
"button" autoClose=
"outside"
97 *
ngIf=
"isUserLoggedIn()" (openChange)=
"addContent.openChange($event)"
98 [ngbTooltip]=
"tooltipSaveToPlaylist"
99 placement=
"bottom auto"
101 <div class=
"action-button action-button-save" ngbDropdownToggle
role=
"button">
102 <my-global-icon iconName=
"playlist-add"></my-global-icon>
103 <span class=
"icon-text" i18n
>Save
</span>
106 <div ngbDropdownMenu
>
107 <my-video-add-to-playlist #addContent [video]=
"video"></my-video-add-to-playlist>
111 <my-video-actions-dropdown
112 placement=
"bottom auto" buttonDirection=
"horizontal" [buttonStyled]=
"true" [video]=
"video" [videoCaptions]=
"videoCaptions"
113 (videoRemoved)=
"onVideoRemoved()" (modalOpened)=
"onModalOpened()"
114 ></my-video-actions-dropdown>
117 <div class=
"video-info-likes-dislikes-bar-outer-container">
119 class=
"video-info-likes-dislikes-bar-inner-container"
120 *
ngIf=
"video.likes !== 0 || video.dislikes !== 0"
121 [ngbTooltip]=
"likesBarTooltipText"
125 class=
"video-info-likes-dislikes-bar"
127 <div class=
"likes-bar" [ngClass]=
"{ 'liked': userRating !== 'none' }" [ngStyle]=
"{ 'width.%': video.likesPercent }"></div>
134 class=
"video-info-likes-dislikes-bar"
135 *
ngIf=
"video.likes !== 0 || video.dislikes !== 0"
136 [ngbTooltip]=
"likesBarTooltipText"
139 <div class=
"likes-bar" [ngStyle]=
"{ 'width.%': video.likesPercent }"></div>
145 <div class=
"pt-3 border-top video-info-channel d-flex">
146 <div class=
"video-info-channel-left d-flex">
147 <avatar-channel [video]=
"video"></avatar-channel>
148 <div class=
"video-info-channel-left-links ml-1">
149 <a [routerLink]=
"[ '/video-channels', video.byVideoChannel ]" i18n-title
title=
"Go the channel page">
150 {{ video.channel.displayName }}
152 <a [routerLink]=
"[ '/accounts', video.byAccount ]" i18n-title
title=
"Go to the account page">
153 <span i18n
>By {{ video.byAccount }}
</span>
158 <my-subscribe-button #subscribeButton [videoChannels]=
"[video.channel]" size=
"small"></my-subscribe-button>
164 <div class=
"video-info-description">
166 class=
"video-info-description-html"
167 [innerHTML]=
"videoHTMLDescription"
168 (timestampClicked)=
"handleTimestampClicked($event)"
169 timestampRouteTransformer
172 <div class=
"video-info-description-more" *
ngIf=
"completeDescriptionShown === false && video.description?.length >= 250" (click)=
"showMoreDescription()">
173 <ng-container i18n
>Show more
</ng-container>
174 <span *
ngIf=
"descriptionLoading === false" class=
"glyphicon glyphicon-menu-down"></span>
175 <my-small-loader class=
"description-loading" [loading]=
"descriptionLoading"></my-small-loader>
178 <div *
ngIf=
"completeDescriptionShown === true" (click)=
"showLessDescription()" class=
"video-info-description-more">
179 <ng-container i18n
>Show less
</ng-container>
180 <span *
ngIf=
"descriptionLoading === false" class=
"glyphicon glyphicon-menu-up"></span>
184 <div class=
"video-attributes mb-3">
185 <div class=
"video-attribute">
186 <span i18n
class=
"video-attribute-label">Privacy
</span>
187 <span class=
"video-attribute-value">{{ video.privacy.label }}
</span>
190 <div *
ngIf=
"!!video.originallyPublishedAt" class=
"video-attribute">
191 <span i18n
class=
"video-attribute-label">Originally published
</span>
192 <span class=
"video-attribute-value">{{ video.originallyPublishedAt | date: 'dd MMMM yyyy' }}
</span>
195 <div class=
"video-attribute">
196 <span i18n
class=
"video-attribute-label">Category
</span>
197 <span *
ngIf=
"!video.category.id" class=
"video-attribute-value">{{ video.category.label }}
</span>
199 *
ngIf=
"video.category.id" class=
"video-attribute-value"
200 [routerLink]=
"[ '/search' ]" [queryParams]=
"{ categoryOneOf: [ video.category.id ] }"
201 >{{ video.category.label }}
</a>
204 <div class=
"video-attribute">
205 <span i18n
class=
"video-attribute-label">Licence
</span>
206 <span *
ngIf=
"!video.licence.id" class=
"video-attribute-value">{{ video.licence.label }}
</span>
208 *
ngIf=
"video.licence.id" class=
"video-attribute-value"
209 [routerLink]=
"[ '/search' ]" [queryParams]=
"{ licenceOneOf: [ video.licence.id ] }"
210 >{{ video.licence.label }}
</a>
213 <div class=
"video-attribute">
214 <span i18n
class=
"video-attribute-label">Language
</span>
215 <span *
ngIf=
"!video.language.id" class=
"video-attribute-value">{{ video.language.label }}
</span>
217 *
ngIf=
"video.language.id" class=
"video-attribute-value"
218 [routerLink]=
"[ '/search' ]" [queryParams]=
"{ languageOneOf: [ video.language.id ] }"
219 >{{ video.language.label }}
</a>
222 <div class=
"video-attribute video-attribute-tags">
223 <span i18n
class=
"video-attribute-label">Tags
</span>
225 *
ngFor=
"let tag of getVideoTags()"
226 class=
"video-attribute-value" [routerLink]=
"[ '/search' ]" [queryParams]=
"{ tagsOneOf: [ tag ] }"
230 <div class=
"video-attribute">
231 <span i18n
class=
"video-attribute-label">Duration
</span>
232 <span class=
"video-attribute-value">{{ video.duration | myVideoDurationFormatter }}
</span>
240 (timestampClicked)=
"handleTimestampClicked($event)"
241 ></my-video-comments>
244 <my-recommended-videos
245 [inputRecommendation]=
"{ uuid: video.uuid, tags: video.tags }"
247 [playlist]=
"playlist"
248 (gotRecommendations)=
"onRecommendations($event)"
249 ></my-recommended-videos>
252 <div class=
"row privacy-concerns" *
ngIf=
"hasAlreadyAcceptedPrivacyConcern === false">
253 <div class=
"privacy-concerns-text">
254 <strong i18n
>Friendly Reminder:
</strong>
256 the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.
258 <a i18n i18n-title
title=
"Get more information" target=
"_blank" rel=
"noopener noreferrer" href=
"/about/peertube">More information
</a>
261 <div i18n
class=
"privacy-concerns-okay" (click)=
"acceptedPrivacyConcern()">
267 <ng-container *
ngIf=
"video !== null">
268 <my-video-support #videoSupportModal [video]=
"video"></my-video-support>
269 <my-video-share #videoShareModal [video]=
"video" [videoCaptions]=
"videoCaptions" [playlist]=
"playlist"></my-video-share>