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