]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/video-watch.component.html
Add logic to handle playlist in embed
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / video-watch.component.html
CommitLineData
9a18a625 1<div class="root" [ngClass]="{ 'theater-enabled': theaterEnabled }">
897ec54d 2 <!-- We need the video container for videojs so we just hide it -->
e2f01c47 3 <div id="video-wrapper">
6d88de72
C
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>
e2f01c47
C
9
10 <div id="videojs-wrapper"></div>
11
72675ebe
C
12 <my-video-watch-playlist
13 #videoWatchPlaylist
14 [video]="video" [playlist]="playlist" class="playlist"
15 ></my-video-watch-playlist>
d1992b93 16 </div>
897ec54d 17
2b3f1919
C
18 <div class="row">
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.
21 </div>
516df59b 22
2b3f1919
C
23 <div i18n class="col-md-12 alert alert-warning" *ngIf="isVideoToTranscode()">
24 The video is being transcoded, it may not work properly.
25 </div>
2186386c 26
2b3f1919
C
27 <div i18n class="col-md-12 alert alert-info" *ngIf="hasVideoScheduledPublication()">
28 This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}.
29 </div>
191764f3 30
2b3f1919 31 <div class="col-md-12 alert alert-danger" *ngIf="video?.blacklisted">
5baee5fc
RK
32 <div class="blocked-label" i18n>This video is blocked.</div>
33 {{ video.blockedReason }}
2b3f1919 34 </div>
bbe0f064
C
35 </div>
36
20206dfb 37 <!-- Video information -->
2303a803 38 <div *ngIf="video" class="margin-content video-bottom">
9a18a625
C
39 <div class="video-info">
40 <div class="video-info-first-row">
41 <div>
7fc441cc 42 <div class="d-block d-md-none"> <!-- only shown on medium devices, has its counterpart for larger viewports below -->
9a18a625 43 <h1 class="video-info-name">{{ video.name }}</h1>
7fc441cc 44
9a18a625 45 <div i18n class="video-info-date-views">
3921166d 46 Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> <span class="views"> • {{ video.views | myNumberFormatter }} views</span>
9a18a625
C
47 </div>
48 </div>
49
7fc441cc 50 <div class="d-flex justify-content-between flex-direction-column">
9a18a625 51 <div class="d-none d-md-block">
f845c683 52 <h1 class="video-info-name">{{ video.name }}</h1>
7fc441cc 53 </div>
9a18a625 54
7fc441cc
RK
55 <div class="video-info-first-row-bottom">
56 <div i18n class="d-none d-md-block video-info-date-views">
3921166d 57 Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> <span class="views"> • {{ video.views | myNumberFormatter }} views</span>
2d9fea16 58 </div>
2d9fea16 59
7fc441cc
RK
60 <div class="video-actions-rates">
61 <div class="video-actions fullWidth justify-content-end">
adcf9212
CC
62 <button
63 [ngbPopover]="getRatePopoverText()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()" (keyup.enter)="setLike()"
64 class="action-button action-button-like" [attr.aria-pressed]="userRating === 'like'" [attr.aria-label]="tooltipLike"
94dfca3e
RK
65 [ngbTooltip]="tooltipLike"
66 placement="bottom auto"
7fc441cc
RK
67 >
68 <my-global-icon iconName="like"></my-global-icon>
69 <span *ngIf="video.likes" class="count">{{ video.likes }}</span>
adcf9212 70 </button>
2d3741d6 71
adcf9212
CC
72 <button
73 [ngbPopover]="getRatePopoverText()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()" (keyup.enter)="setDislike()"
74 class="action-button action-button-dislike" [attr.aria-pressed]="userRating === 'dislike'" [attr.aria-label]="tooltipDislike"
94dfca3e
RK
75 [ngbTooltip]="tooltipDislike"
76 placement="bottom auto"
7fc441cc
RK
77 >
78 <my-global-icon iconName="dislike"></my-global-icon>
79 <span *ngIf="video.dislikes" class="count">{{ video.dislikes }}</span>
adcf9212 80 </button>
3adf3196 81
adcf9212 82 <button *ngIf="video.support" (click)="showSupportModal()" (keyup.enter)="showSupportModal()" class="action-button action-button-support" [attr.aria-label]="tooltipSupport"
94dfca3e
RK
83 [ngbTooltip]="tooltipSupport"
84 placement="bottom auto"
85 >
adcf9212 86 <my-global-icon iconName="support" aria-hidden="true"></my-global-icon>
14571f19 87 <span class="icon-text" i18n>SUPPORT</span>
adcf9212 88 </button>
3adf3196 89
adcf9212 90 <button (click)="showShareModal()" (keyup.enter)="showShareModal()" class="action-button">
6ad971d5 91 <my-global-icon iconName="share" aria-hidden="true"></my-global-icon>
14571f19 92 <span class="icon-text" i18n>SHARE</span>
adcf9212 93 </button>
3adf3196 94
7fc441cc
RK
95 <div
96 class="action-dropdown" ngbDropdown placement="top" role="button" autoClose="outside"
97 *ngIf="isUserLoggedIn()" (openChange)="addContent.openChange($event)"
94dfca3e
RK
98 [ngbTooltip]="tooltipSaveToPlaylist"
99 placement="bottom auto"
7fc441cc 100 >
adcf9212 101 <button class="action-button action-button-save" ngbDropdownToggle>
6ad971d5 102 <my-global-icon iconName="playlist-add" aria-hidden="true"></my-global-icon>
14571f19 103 <span class="icon-text" i18n>SAVE</span>
adcf9212 104 </button>
3adf3196 105
7fc441cc
RK
106 <div ngbDropdownMenu>
107 <my-video-add-to-playlist #addContent [video]="video"></my-video-add-to-playlist>
108 </div>
109 </div>
3adf3196 110
6863f814
RK
111 <ng-container *ngIf="!isUserLoggedIn()">
112 <button
113 *ngIf="isVideoDownloadable()" class="action-button action-button-save"
114 (click)="showDownloadModal()" (keydown.enter)="showDownloadModal()"
115 >
116 <my-global-icon iconName="download" aria-hidden="true"></my-global-icon>
117 <span class="icon-text d-none d-sm-inline" i18n>DOWNLOAD</span>
118 </button>
119
120 <my-video-download #videoDownloadModal></my-video-download>
121 </ng-container>
122 <ng-container *ngIf="isUserLoggedIn()">
123 <my-video-actions-dropdown
124 placement="bottom auto" buttonDirection="horizontal" [buttonStyled]="true" [video]="video" [videoCaptions]="videoCaptions"
125 (videoRemoved)="onVideoRemoved()" (modalOpened)="onModalOpened()"
126 ></my-video-actions-dropdown>
127 </ng-container>
9a18a625 128 </div>
3adf3196 129
223b24e6 130 <div class="video-info-likes-dislikes-bar-outer-container">
2de7f588 131 <div
223b24e6 132 class="video-info-likes-dislikes-bar-inner-container"
2de7f588
RK
133 *ngIf="video.likes !== 0 || video.dislikes !== 0"
134 [ngbTooltip]="likesBarTooltipText"
135 placement="bottom"
136 >
137 <div
138 class="video-info-likes-dislikes-bar"
139 >
0240da5c 140 <div class="likes-bar" [ngClass]="{ 'liked': userRating !== 'none' }" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
2de7f588
RK
141 </div>
142 </div>
9a18a625 143 </div>
9a18a625 144 </div>
2d3741d6 145
9a18a625
C
146 <div
147 class="video-info-likes-dislikes-bar"
148 *ngIf="video.likes !== 0 || video.dislikes !== 0"
149 [ngbTooltip]="likesBarTooltipText"
150 placement="bottom"
151 >
152 <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
2d9fea16 153 </div>
1f788f20 154 </div>
9a18a625 155 </div>
6a9e1d42 156
07fa4c97 157
dd4f25ee
RK
158 <div class="pt-3 border-top video-info-channel d-flex">
159 <div class="video-info-channel-left d-flex">
b40a2193 160 <avatar-channel [video]="video" [genericChannel]="isChannelDisplayNameGeneric()"></avatar-channel>
62fca05d 161
dd4f25ee 162 <div class="video-info-channel-left-links ml-1">
b40a2193
K
163 <ng-container *ngIf="!isChannelDisplayNameGeneric()">
164 <a [routerLink]="[ '/video-channels', video.byVideoChannel ]" i18n-title title="Channel page">
165 {{ video.channel.displayName }}
166 </a>
167 <a [routerLink]="[ '/accounts', video.byAccount ]" i18n-title title="Account page">
168 <span i18n>By {{ video.byAccount }}</span>
169 </a>
170 </ng-container>
171
172 <ng-container *ngIf="isChannelDisplayNameGeneric()">
173 <a [routerLink]="[ '/accounts', video.byAccount ]" class="single-link" i18n-title title="Account page">
174 <span i18n>{{ video.byAccount }}</span>
175 </a>
176 </ng-container>
dd4f25ee
RK
177 </div>
178 </div>
63347a0f 179
41eb700f 180 <my-subscribe-button #subscribeButton [videoChannels]="[video.channel]" size="small"></my-subscribe-button>
2d9fea16 181 </div>
2d9fea16 182 </div>
26b7305a 183
9a18a625 184 </div>
191764f3 185
dd4f25ee 186 <div class="video-info-description">
b29bf61d
RK
187 <div
188 class="video-info-description-html"
208c7e92 189 [innerHTML]="videoHTMLDescription"
b29bf61d
RK
190 (timestampClicked)="handleTimestampClicked($event)"
191 timestampRouteTransformer
192 ></div>
d07137b9 193
9a18a625
C
194 <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
195 <ng-container i18n>Show more</ng-container>
196 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
197 <my-small-loader class="description-loading" [loading]="descriptionLoading"></my-small-loader>
1f788f20 198 </div>
09223546 199
9a18a625
C
200 <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
201 <ng-container i18n>Show less</ng-container>
202 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
203 </div>
204 </div>
adb115f5 205
dd4f25ee 206 <div class="video-attributes mb-3">
9a18a625
C
207 <div class="video-attribute">
208 <span i18n class="video-attribute-label">Privacy</span>
209 <span class="video-attribute-value">{{ video.privacy.label }}</span>
210 </div>
2de96f4d 211
c910f667
C
212 <div *ngIf="video.isLocal === false" class="video-attribute">
213 <span i18n class="video-attribute-label">Origin instance</span>
214 <a class="video-attribute-value" target="_blank" rel="noopener noreferrer" [href]="video.originInstanceUrl">{{ video.originInstanceHost }}</a>
215 </div>
216
9a18a625
C
217 <div *ngIf="!!video.originallyPublishedAt" class="video-attribute">
218 <span i18n class="video-attribute-label">Originally published</span>
219 <span class="video-attribute-value">{{ video.originallyPublishedAt | date: 'dd MMMM yyyy' }}</span>
220 </div>
2de96f4d 221
9a18a625
C
222 <div class="video-attribute">
223 <span i18n class="video-attribute-label">Category</span>
224 <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span>
225 <a
226 *ngIf="video.category.id" class="video-attribute-value"
227 [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }"
228 >{{ video.category.label }}</a>
229 </div>
db216afd 230
9a18a625
C
231 <div class="video-attribute">
232 <span i18n class="video-attribute-label">Licence</span>
233 <span *ngIf="!video.licence.id" class="video-attribute-value">{{ video.licence.label }}</span>
234 <a
235 *ngIf="video.licence.id" class="video-attribute-value"
236 [routerLink]="[ '/search' ]" [queryParams]="{ licenceOneOf: [ video.licence.id ] }"
237 >{{ video.licence.label }}</a>
238 </div>
fd45e8f4 239
9a18a625
C
240 <div class="video-attribute">
241 <span i18n class="video-attribute-label">Language</span>
242 <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span>
243 <a
244 *ngIf="video.language.id" class="video-attribute-value"
245 [routerLink]="[ '/search' ]" [queryParams]="{ languageOneOf: [ video.language.id ] }"
246 >{{ video.language.label }}</a>
20206dfb 247 </div>
09223546 248
9a18a625
C
249 <div class="video-attribute video-attribute-tags">
250 <span i18n class="video-attribute-label">Tags</span>
251 <a
252 *ngFor="let tag of getVideoTags()"
253 class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
254 >{{ tag }}</a>
255 </div>
df8340b7
RK
256
257 <div class="video-attribute">
258 <span i18n class="video-attribute-label">Duration</span>
259 <span class="video-attribute-value">{{ video.duration | myVideoDurationFormatter }}</span>
62fca05d 260 </div>
3b766e18
RK
261 </div>
262
b29bf61d
RK
263 <my-video-comments
264 class="border-top"
265 [video]="video"
266 [user]="user"
267 (timestampClicked)="handleTimestampClicked($event)"
268 ></my-video-comments>
d1992b93 269 </div>
9a18a625 270
6aa54148 271 <my-recommended-videos
5c20a455 272 [inputRecommendation]="{ uuid: video.uuid, tags: video.tags }"
5c20a455
C
273 [playlist]="playlist"
274 (gotRecommendations)="onRecommendations($event)"
6aa54148 275 ></my-recommended-videos>
d1992b93 276 </div>
8ff3f883 277
2b3f1919 278 <div class="row privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
2b3b76ab 279 <div class="privacy-concerns-text">
52e3beb9
RK
280 <span class="mr-2">
281 <strong i18n>Friendly Reminder: </strong>
282 <ng-container i18n>
283 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.
284 </ng-container>
d3217560 285 </span>
5411da31 286 <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube#privacy">More information</a>
2b3b76ab
C
287 </div>
288
d3217560 289 <div i18n class="privacy-concerns-button privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
52e3beb9 290 OK
2b3b76ab
C
291 </div>
292 </div>
b59f12b0 293</div>
d1992b93 294
5a71acd2 295<ng-container *ngIf="video !== null">
1f3a605e 296 <my-video-support #videoSupportModal [video]="video"></my-video-support>
3a1fed11 297 <my-video-share #videoShareModal [video]="video" [videoCaptions]="videoCaptions" [playlist]="playlist"></my-video-share>
5a71acd2 298</ng-container>