]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/video-watch.component.html
Add abuse messages management in my account
[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
7fc441cc 111 <my-video-actions-dropdown
8ba9c205 112 placement="bottom auto" buttonDirection="horizontal" [buttonStyled]="true" [video]="video" [videoCaptions]="videoCaptions"
7fc441cc
RK
113 (videoRemoved)="onVideoRemoved()" (modalOpened)="onModalOpened()"
114 ></my-video-actions-dropdown>
9a18a625 115 </div>
3adf3196 116
223b24e6 117 <div class="video-info-likes-dislikes-bar-outer-container">
2de7f588 118 <div
223b24e6 119 class="video-info-likes-dislikes-bar-inner-container"
2de7f588
RK
120 *ngIf="video.likes !== 0 || video.dislikes !== 0"
121 [ngbTooltip]="likesBarTooltipText"
122 placement="bottom"
123 >
124 <div
125 class="video-info-likes-dislikes-bar"
126 >
0240da5c 127 <div class="likes-bar" [ngClass]="{ 'liked': userRating !== 'none' }" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
2de7f588
RK
128 </div>
129 </div>
9a18a625 130 </div>
9a18a625 131 </div>
2d3741d6 132
9a18a625
C
133 <div
134 class="video-info-likes-dislikes-bar"
135 *ngIf="video.likes !== 0 || video.dislikes !== 0"
136 [ngbTooltip]="likesBarTooltipText"
137 placement="bottom"
138 >
139 <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
2d9fea16 140 </div>
1f788f20 141 </div>
9a18a625 142 </div>
6a9e1d42 143
07fa4c97 144
dd4f25ee
RK
145 <div class="pt-3 border-top video-info-channel d-flex">
146 <div class="video-info-channel-left d-flex">
b40a2193 147 <avatar-channel [video]="video" [genericChannel]="isChannelDisplayNameGeneric()"></avatar-channel>
62fca05d 148
dd4f25ee 149 <div class="video-info-channel-left-links ml-1">
b40a2193
K
150 <ng-container *ngIf="!isChannelDisplayNameGeneric()">
151 <a [routerLink]="[ '/video-channels', video.byVideoChannel ]" i18n-title title="Channel page">
152 {{ video.channel.displayName }}
153 </a>
154 <a [routerLink]="[ '/accounts', video.byAccount ]" i18n-title title="Account page">
155 <span i18n>By {{ video.byAccount }}</span>
156 </a>
157 </ng-container>
158
159 <ng-container *ngIf="isChannelDisplayNameGeneric()">
160 <a [routerLink]="[ '/accounts', video.byAccount ]" class="single-link" i18n-title title="Account page">
161 <span i18n>{{ video.byAccount }}</span>
162 </a>
163 </ng-container>
dd4f25ee
RK
164 </div>
165 </div>
63347a0f 166
41eb700f 167 <my-subscribe-button #subscribeButton [videoChannels]="[video.channel]" size="small"></my-subscribe-button>
2d9fea16 168 </div>
2d9fea16 169 </div>
26b7305a 170
9a18a625 171 </div>
191764f3 172
dd4f25ee 173 <div class="video-info-description">
b29bf61d
RK
174 <div
175 class="video-info-description-html"
208c7e92 176 [innerHTML]="videoHTMLDescription"
b29bf61d
RK
177 (timestampClicked)="handleTimestampClicked($event)"
178 timestampRouteTransformer
179 ></div>
d07137b9 180
9a18a625
C
181 <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
182 <ng-container i18n>Show more</ng-container>
183 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
184 <my-small-loader class="description-loading" [loading]="descriptionLoading"></my-small-loader>
1f788f20 185 </div>
09223546 186
9a18a625
C
187 <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
188 <ng-container i18n>Show less</ng-container>
189 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
190 </div>
191 </div>
adb115f5 192
dd4f25ee 193 <div class="video-attributes mb-3">
9a18a625
C
194 <div class="video-attribute">
195 <span i18n class="video-attribute-label">Privacy</span>
196 <span class="video-attribute-value">{{ video.privacy.label }}</span>
197 </div>
2de96f4d 198
c910f667
C
199 <div *ngIf="video.isLocal === false" class="video-attribute">
200 <span i18n class="video-attribute-label">Origin instance</span>
201 <a class="video-attribute-value" target="_blank" rel="noopener noreferrer" [href]="video.originInstanceUrl">{{ video.originInstanceHost }}</a>
202 </div>
203
9a18a625
C
204 <div *ngIf="!!video.originallyPublishedAt" class="video-attribute">
205 <span i18n class="video-attribute-label">Originally published</span>
206 <span class="video-attribute-value">{{ video.originallyPublishedAt | date: 'dd MMMM yyyy' }}</span>
207 </div>
2de96f4d 208
9a18a625
C
209 <div class="video-attribute">
210 <span i18n class="video-attribute-label">Category</span>
211 <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span>
212 <a
213 *ngIf="video.category.id" class="video-attribute-value"
214 [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }"
215 >{{ video.category.label }}</a>
216 </div>
db216afd 217
9a18a625
C
218 <div class="video-attribute">
219 <span i18n class="video-attribute-label">Licence</span>
220 <span *ngIf="!video.licence.id" class="video-attribute-value">{{ video.licence.label }}</span>
221 <a
222 *ngIf="video.licence.id" class="video-attribute-value"
223 [routerLink]="[ '/search' ]" [queryParams]="{ licenceOneOf: [ video.licence.id ] }"
224 >{{ video.licence.label }}</a>
225 </div>
fd45e8f4 226
9a18a625
C
227 <div class="video-attribute">
228 <span i18n class="video-attribute-label">Language</span>
229 <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span>
230 <a
231 *ngIf="video.language.id" class="video-attribute-value"
232 [routerLink]="[ '/search' ]" [queryParams]="{ languageOneOf: [ video.language.id ] }"
233 >{{ video.language.label }}</a>
20206dfb 234 </div>
09223546 235
9a18a625
C
236 <div class="video-attribute video-attribute-tags">
237 <span i18n class="video-attribute-label">Tags</span>
238 <a
239 *ngFor="let tag of getVideoTags()"
240 class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
241 >{{ tag }}</a>
242 </div>
df8340b7
RK
243
244 <div class="video-attribute">
245 <span i18n class="video-attribute-label">Duration</span>
246 <span class="video-attribute-value">{{ video.duration | myVideoDurationFormatter }}</span>
62fca05d 247 </div>
3b766e18
RK
248 </div>
249
b29bf61d
RK
250 <my-video-comments
251 class="border-top"
252 [video]="video"
253 [user]="user"
254 (timestampClicked)="handleTimestampClicked($event)"
255 ></my-video-comments>
d1992b93 256 </div>
9a18a625 257
6aa54148 258 <my-recommended-videos
5c20a455 259 [inputRecommendation]="{ uuid: video.uuid, tags: video.tags }"
5c20a455
C
260 [playlist]="playlist"
261 (gotRecommendations)="onRecommendations($event)"
6aa54148 262 ></my-recommended-videos>
d1992b93 263 </div>
8ff3f883 264
2b3f1919 265 <div class="row privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
2b3b76ab 266 <div class="privacy-concerns-text">
52e3beb9
RK
267 <span class="mr-2">
268 <strong i18n>Friendly Reminder: </strong>
269 <ng-container i18n>
270 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.
271 </ng-container>
d3217560 272 </span>
5411da31 273 <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube#privacy">More information</a>
2b3b76ab
C
274 </div>
275
d3217560 276 <div i18n class="privacy-concerns-button privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
52e3beb9 277 OK
2b3b76ab
C
278 </div>
279 </div>
b59f12b0 280</div>
d1992b93 281
5a71acd2 282<ng-container *ngIf="video !== null">
1f3a605e 283 <my-video-support #videoSupportModal [video]="video"></my-video-support>
3a1fed11 284 <my-video-share #videoShareModal [video]="video" [videoCaptions]="videoCaptions" [playlist]="playlist"></my-video-share>
5a71acd2 285</ng-container>