]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/video-watch.component.html
d74334b13b68f4bc053b5dd861b624997b1ff0ea
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / video-watch.component.html
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.
6 <br />
7 Please try again later.
8 </div>
9
10 <div id="videojs-wrapper"></div>
11
12 <my-video-watch-playlist
13 #videoWatchPlaylist
14 [playlist]="playlist" class="playlist"
15 (videoFound)="onPlaylistVideoFound($event)"
16 ></my-video-watch-playlist>
17 </div>
18
19 <div class="row">
20 <div i18n class="col-md-12 alert alert-warning" *ngIf="isVideoToImport()">
21 The video is being imported, it will be available when the import is finished.
22 </div>
23
24 <div i18n class="col-md-12 alert alert-warning" *ngIf="isVideoToTranscode()">
25 The video is being transcoded, it may not work properly.
26 </div>
27
28 <div i18n class="col-md-12 alert alert-info" *ngIf="hasVideoScheduledPublication()">
29 This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}.
30 </div>
31
32 <div i18n class="col-md-12 alert alert-info" *ngIf="isWaitingForLive()">
33 This live has not started yet.
34 </div>
35
36 <div i18n class="col-md-12 alert alert-info" *ngIf="isLiveEnded()">
37 This live has ended.
38 </div>
39
40 <div class="col-md-12 alert alert-danger" *ngIf="video?.blacklisted">
41 <div class="blocked-label" i18n>This video is blocked.</div>
42 {{ video.blockedReason }}
43 </div>
44 </div>
45
46 <!-- Video information -->
47 <div *ngIf="video" class="margin-content video-bottom">
48 <div class="video-info">
49 <div class="video-info-first-row">
50 <div>
51 <div class="d-block d-md-none"> <!-- only shown on medium devices, has its counterpart for larger viewports below -->
52 <h1 class="video-info-name">{{ video.name }}</h1>
53
54 <div class="video-info-date-views">
55 <ng-container i18n>Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle></ng-container>
56
57 <span i18n
58 title="{{ getExactNumberOfViews() }}"
59 class="views">
60 • {{ video.views | myNumberFormatter }}
61 <ng-container *ngIf="!video.isLive">views</ng-container>
62 <ng-container *ngIf="video.isLive">viewers</ng-container>
63 </span>
64 </div>
65 </div>
66
67 <div class="d-flex justify-content-between flex-direction-column">
68 <div class="d-none d-md-block">
69 <h1 class="video-info-name">{{ video.name }}</h1>
70 </div>
71
72 <div class="video-info-first-row-bottom">
73 <div class="d-none d-md-block video-info-date-views">
74 <ng-container i18n>Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle></ng-container>
75
76 <span i18n
77 title="{{ getExactNumberOfViews() }}"
78 class="views">
79 • {{ video.views | myNumberFormatter }}
80 <ng-container *ngIf="!video.isLive">views</ng-container>
81 <ng-container *ngIf="video.isLive">viewers</ng-container>
82 </span>
83 </div>
84
85 <div class="video-actions-rates">
86 <ng-template #ratePopoverText>
87 <span [innerHTML]="getRatePopoverText()"></span>
88 </ng-template>
89
90 <div class="video-actions fullWidth justify-content-end">
91 <button
92 [ngbPopover]="getRatePopoverText() && ratePopoverText" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()" (keyup.enter)="setLike()"
93 class="action-button action-button-like" [attr.aria-pressed]="userRating === 'like'" [attr.aria-label]="tooltipLike"
94 [ngbTooltip]="tooltipLike"
95 placement="bottom auto"
96 >
97 <my-global-icon iconName="like"></my-global-icon>
98 <span *ngIf="video.likes" class="count">{{ video.likes }}</span>
99 </button>
100
101 <button
102 [ngbPopover]="getRatePopoverText() && ratePopoverText" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()" (keyup.enter)="setDislike()"
103 class="action-button action-button-dislike" [attr.aria-pressed]="userRating === 'dislike'" [attr.aria-label]="tooltipDislike"
104 [ngbTooltip]="tooltipDislike"
105 placement="bottom auto"
106 >
107 <my-global-icon iconName="dislike"></my-global-icon>
108 <span *ngIf="video.dislikes" class="count">{{ video.dislikes }}</span>
109 </button>
110
111 <button *ngIf="video.support" (click)="showSupportModal()" (keyup.enter)="showSupportModal()" class="action-button action-button-support" [attr.aria-label]="tooltipSupport"
112 [ngbTooltip]="tooltipSupport"
113 placement="bottom auto"
114 >
115 <my-global-icon iconName="support" aria-hidden="true"></my-global-icon>
116 <span class="icon-text" i18n>SUPPORT</span>
117 </button>
118
119 <button (click)="showShareModal()" (keyup.enter)="showShareModal()" class="action-button">
120 <my-global-icon iconName="share" aria-hidden="true"></my-global-icon>
121 <span class="icon-text" i18n>SHARE</span>
122 </button>
123
124 <div
125 class="action-dropdown" ngbDropdown placement="top" role="button" autoClose="outside"
126 *ngIf="isUserLoggedIn()" (openChange)="addContent.openChange($event)"
127 [ngbTooltip]="tooltipSaveToPlaylist"
128 placement="bottom auto"
129 >
130 <button class="action-button action-button-save" ngbDropdownToggle>
131 <my-global-icon iconName="playlist-add" aria-hidden="true"></my-global-icon>
132 <span class="icon-text" i18n>SAVE</span>
133 </button>
134
135 <div ngbDropdownMenu>
136 <my-video-add-to-playlist #addContent [video]="video"></my-video-add-to-playlist>
137 </div>
138 </div>
139
140 <ng-container *ngIf="!isUserLoggedIn() && !isLive()">
141 <button
142 *ngIf="isVideoDownloadable()" class="action-button action-button-save"
143 (click)="showDownloadModal()" (keydown.enter)="showDownloadModal()"
144 >
145 <my-global-icon iconName="download" aria-hidden="true"></my-global-icon>
146 <span class="icon-text d-none d-sm-inline" i18n>DOWNLOAD</span>
147 </button>
148
149 <my-video-download #videoDownloadModal></my-video-download>
150 </ng-container>
151
152 <ng-container *ngIf="isUserLoggedIn()">
153 <my-video-actions-dropdown
154 placement="bottom auto" buttonDirection="horizontal" [buttonStyled]="true" [video]="video" [videoCaptions]="videoCaptions"
155 [displayOptions]="videoActionsOptions" (videoRemoved)="onVideoRemoved()" (modalOpened)="onModalOpened()"
156 ></my-video-actions-dropdown>
157 </ng-container>
158 </div>
159
160 <div class="video-info-likes-dislikes-bar-outer-container">
161 <div
162 class="video-info-likes-dislikes-bar-inner-container"
163 *ngIf="video.likes !== 0 || video.dislikes !== 0"
164 [ngbTooltip]="likesBarTooltipText"
165 placement="bottom"
166 >
167 <div
168 class="video-info-likes-dislikes-bar"
169 >
170 <div class="likes-bar" [ngClass]="{ 'liked': userRating !== 'none' }" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
171 </div>
172 </div>
173 </div>
174 </div>
175
176 <div
177 class="video-info-likes-dislikes-bar"
178 *ngIf="video.likes !== 0 || video.dislikes !== 0"
179 [ngbTooltip]="likesBarTooltipText"
180 placement="bottom"
181 >
182 <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
183 </div>
184 </div>
185 </div>
186
187
188 <div class="pt-3 border-top video-info-channel d-flex">
189 <div class="video-info-channel-left d-flex">
190 <my-video-avatar-channel [video]="video" [genericChannel]="isChannelDisplayNameGeneric()"></my-video-avatar-channel>
191
192 <div class="video-info-channel-left-links ml-1">
193 <ng-container *ngIf="!isChannelDisplayNameGeneric()">
194 <a [routerLink]="[ '/video-channels', video.byVideoChannel ]" i18n-title title="Channel page">
195 {{ video.channel.displayName }}
196 </a>
197 <a [routerLink]="[ '/accounts', video.byAccount ]" i18n-title title="Account page">
198 <span i18n>By {{ video.byAccount }}</span>
199 </a>
200 </ng-container>
201
202 <ng-container *ngIf="isChannelDisplayNameGeneric()">
203 <a [routerLink]="[ '/accounts', video.byAccount ]" class="single-link" i18n-title title="Account page">
204 <span i18n>{{ video.byAccount }}</span>
205 </a>
206 </ng-container>
207 </div>
208 </div>
209
210 <my-subscribe-button #subscribeButton [videoChannels]="[video.channel]" size="small"></my-subscribe-button>
211 </div>
212 </div>
213
214 </div>
215
216 <div class="video-info-description">
217 <div
218 class="video-info-description-html"
219 [innerHTML]="videoHTMLDescription"
220 (timestampClicked)="handleTimestampClicked($event)"
221 timestampRouteTransformer
222 ></div>
223
224 <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
225 <ng-container i18n>Show more</ng-container>
226 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
227 <my-small-loader class="description-loading" [loading]="descriptionLoading"></my-small-loader>
228 </div>
229
230 <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
231 <ng-container i18n>Show less</ng-container>
232 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
233 </div>
234 </div>
235
236 <div class="video-attributes mb-3">
237 <div class="video-attribute">
238 <span i18n class="video-attribute-label">Privacy</span>
239 <span class="video-attribute-value">{{ video.privacy.label }}</span>
240 </div>
241
242 <div *ngIf="video.isLocal === false" class="video-attribute">
243 <span i18n class="video-attribute-label">Origin instance</span>
244 <a class="video-attribute-value" target="_blank" rel="noopener noreferrer" [href]="video.originInstanceUrl">{{ video.originInstanceHost }}</a>
245 </div>
246
247 <div *ngIf="!!video.originallyPublishedAt" class="video-attribute">
248 <span i18n class="video-attribute-label">Originally published</span>
249 <span class="video-attribute-value">{{ video.originallyPublishedAt | date: 'dd MMMM yyyy' }}</span>
250 </div>
251
252 <div class="video-attribute">
253 <span i18n class="video-attribute-label">Category</span>
254 <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span>
255 <a
256 *ngIf="video.category.id" class="video-attribute-value"
257 [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }"
258 >{{ video.category.label }}</a>
259 </div>
260
261 <div class="video-attribute">
262 <span i18n class="video-attribute-label">Licence</span>
263 <span *ngIf="!video.licence.id" class="video-attribute-value">{{ video.licence.label }}</span>
264 <a
265 *ngIf="video.licence.id" class="video-attribute-value"
266 [routerLink]="[ '/search' ]" [queryParams]="{ licenceOneOf: [ video.licence.id ] }"
267 >{{ video.licence.label }}</a>
268 </div>
269
270 <div class="video-attribute">
271 <span i18n class="video-attribute-label">Language</span>
272 <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span>
273 <a
274 *ngIf="video.language.id" class="video-attribute-value"
275 [routerLink]="[ '/search' ]" [queryParams]="{ languageOneOf: [ video.language.id ] }"
276 >{{ video.language.label }}</a>
277 </div>
278
279 <div class="video-attribute video-attribute-tags">
280 <span i18n class="video-attribute-label">Tags</span>
281 <a
282 *ngFor="let tag of getVideoTags()"
283 class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
284 >{{ tag }}</a>
285 </div>
286
287 <div class="video-attribute" *ngIf="!video.isLive">
288 <span i18n class="video-attribute-label">Duration</span>
289 <span class="video-attribute-value">{{ video.duration | myDurationFormatter }}</span>
290 </div>
291 </div>
292
293 <my-video-comments
294 class="border-top"
295 [video]="video"
296 [user]="user"
297 (timestampClicked)="handleTimestampClicked($event)"
298 ></my-video-comments>
299 </div>
300
301 <my-recommended-videos
302 [inputRecommendation]="{ uuid: video.uuid, tags: video.tags }"
303 [playlist]="playlist"
304 (gotRecommendations)="onRecommendations($event)"
305 ></my-recommended-videos>
306 </div>
307
308 <div class="row privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
309 <div class="privacy-concerns-text">
310 <span class="mr-2">
311 <strong i18n>Friendly Reminder: </strong>
312 <ng-container i18n>
313 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.
314 </ng-container>
315 </span>
316 <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube#privacy">More information</a>
317 </div>
318
319 <div i18n class="privacy-concerns-button privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
320 OK
321 </div>
322 </div>
323 </div>
324
325 <ng-container *ngIf="video !== null">
326 <my-video-support #videoSupportModal [video]="video"></my-video-support>
327 <my-video-share #videoShareModal [video]="video" [videoCaptions]="videoCaptions" [playlist]="playlist"></my-video-share>
328 </ng-container>