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