]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.component.html
Add hook to alter player build options
[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 [video]="video" [playlist]="playlist" class="playlist"
15 ></my-video-watch-playlist>
16 </div>
17
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>
22
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>
26
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>
30
31 <div class="col-md-12 alert alert-danger" *ngIf="video?.blacklisted">
32 <div class="blacklisted-label" i18n>This video is blacklisted.</div>
33 {{ video.blacklistedReason }}
34 </div>
35 </div>
36
37 <!-- Video information -->
38 <div *ngIf="video" class="margin-content video-bottom">
39 <div class="video-info">
40 <div class="video-info-first-row">
41 <div>
42 <div class="d-block d-md-none"> <!-- only shown on medium devices, has its conterpart for larger viewports below -->
43 <h1 class="video-info-name">{{ video.name }}</h1>
44 <div i18n class="video-info-date-views">
45 Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> <span class="views"> - {{ video.views | myNumberFormatter }} views</span>
46 </div>
47 </div>
48
49 <div class="d-flex justify-content-between align-items-md-end">
50 <div class="d-none d-md-block">
51 <h1 class="video-info-name">{{ video.name }}</h1>
52
53 <div i18n class="video-info-date-views">
54 Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> <span class="views"> - {{ video.views | myNumberFormatter }} views</span>
55 </div>
56 </div>
57
58 <div class="video-actions-rates">
59 <div class="video-actions fullWidth justify-content-end">
60 <div
61 [ngbPopover]="getRatePopoverText()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
62 class="action-button action-button-like" role="button" [attr.aria-pressed]="userRating === 'like'"
63 i18n-title title="Like this video"
64 >
65 <my-global-icon iconName="like"></my-global-icon>
66 <span *ngIf="video.likes" class="count">{{ video.likes }}</span>
67 </div>
68
69 <div
70 [ngbPopover]="getRatePopoverText()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()"
71 class="action-button action-button-dislike" role="button" [attr.aria-pressed]="userRating === 'dislike'"
72 i18n-title title="Dislike this video"
73 >
74 <my-global-icon iconName="dislike"></my-global-icon>
75 <span *ngIf="video.dislikes" class="count">{{ video.dislikes }}</span>
76 </div>
77
78 <div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
79 <my-global-icon iconName="support"></my-global-icon>
80 <span class="icon-text" i18n>Support</span>
81 </div>
82
83 <div (click)="showShareModal()" class="action-button" role="button">
84 <my-global-icon iconName="share"></my-global-icon>
85 <span class="icon-text" i18n>Share</span>
86 </div>
87
88 <div
89 class="action-dropdown" ngbDropdown placement="top" role="button" autoClose="outside"
90 *ngIf="isUserLoggedIn()" (openChange)="addContent.openChange($event)"
91 >
92 <div class="action-button action-button-save" ngbDropdownToggle role="button">
93 <my-global-icon iconName="playlist-add"></my-global-icon>
94 <span class="icon-text" i18n>Save</span>
95 </div>
96
97 <div ngbDropdownMenu>
98 <my-video-add-to-playlist #addContent [video]="video"></my-video-add-to-playlist>
99 </div>
100 </div>
101
102 <my-video-actions-dropdown
103 placement="top" buttonDirection="horizontal" [buttonStyled]="true" [video]="video"
104 (videoRemoved)="onVideoRemoved()" (modalOpened)="onModalOpened()"
105 ></my-video-actions-dropdown>
106 </div>
107
108 <div
109 class="video-info-likes-dislikes-bar"
110 *ngIf="video.likes !== 0 || video.dislikes !== 0"
111 [ngbTooltip]="likesBarTooltipText"
112 placement="bottom"
113 >
114 <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
115 </div>
116 </div>
117 </div>
118
119
120 <div class="pt-3 border-top video-info-channel">
121 <a [routerLink]="[ '/video-channels', video.byVideoChannel ]" i18n-title title="Go the channel page">
122 {{ video.channel.displayName }}
123
124 <img [src]="video.videoChannelAvatarUrl" alt="Video channel avatar" />
125 </a>
126
127 <my-subscribe-button #subscribeButton [videoChannel]="video.channel" size="small"></my-subscribe-button>
128 </div>
129
130 <div class="video-info-by">
131 <a [routerLink]="[ '/accounts', video.byAccount ]" i18n-title title="Go to the account page">
132 <span i18n>By {{ video.byAccount }}</span>
133 <img [src]="video.accountAvatarUrl" alt="Account avatar" />
134 </a>
135 </div>
136 </div>
137
138 </div>
139
140 <div class="video-info-description">
141 <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>
142
143 <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
144 <ng-container i18n>Show more</ng-container>
145 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
146 <my-small-loader class="description-loading" [loading]="descriptionLoading"></my-small-loader>
147 </div>
148
149 <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
150 <ng-container i18n>Show less</ng-container>
151 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
152 </div>
153 </div>
154
155 <div class="video-attributes">
156 <div class="video-attribute">
157 <span i18n class="video-attribute-label">Privacy</span>
158 <span class="video-attribute-value">{{ video.privacy.label }}</span>
159 </div>
160
161 <div *ngIf="!!video.originallyPublishedAt" class="video-attribute">
162 <span i18n class="video-attribute-label">Originally published</span>
163 <span class="video-attribute-value">{{ video.originallyPublishedAt | date: 'dd MMMM yyyy' }}</span>
164 </div>
165
166 <div class="video-attribute">
167 <span i18n class="video-attribute-label">Category</span>
168 <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span>
169 <a
170 *ngIf="video.category.id" class="video-attribute-value"
171 [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }"
172 >{{ video.category.label }}</a>
173 </div>
174
175 <div class="video-attribute">
176 <span i18n class="video-attribute-label">Licence</span>
177 <span *ngIf="!video.licence.id" class="video-attribute-value">{{ video.licence.label }}</span>
178 <a
179 *ngIf="video.licence.id" class="video-attribute-value"
180 [routerLink]="[ '/search' ]" [queryParams]="{ licenceOneOf: [ video.licence.id ] }"
181 >{{ video.licence.label }}</a>
182 </div>
183
184 <div class="video-attribute">
185 <span i18n class="video-attribute-label">Language</span>
186 <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span>
187 <a
188 *ngIf="video.language.id" class="video-attribute-value"
189 [routerLink]="[ '/search' ]" [queryParams]="{ languageOneOf: [ video.language.id ] }"
190 >{{ video.language.label }}</a>
191 </div>
192
193 <div class="video-attribute video-attribute-tags">
194 <span i18n class="video-attribute-label">Tags</span>
195 <a
196 *ngFor="let tag of getVideoTags()"
197 class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
198 >{{ tag }}</a>
199 </div>
200 </div>
201
202 <my-video-comments [video]="video" [user]="user"></my-video-comments>
203 </div>
204
205 <my-recommended-videos
206 [inputRecommendation]="{ uuid: video.uuid, tags: video.tags }"
207 [user]="user"
208 (gotRecommendations)="onRecommendations($event)"
209 ></my-recommended-videos>
210 </div>
211
212 <div class="row privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
213 <div class="privacy-concerns-text">
214 <strong i18n>Friendly Reminder: </strong>
215 <ng-container i18n>
216 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.
217 </ng-container>
218 <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube">More information</a>
219 </div>
220
221 <div i18n class="privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
222 OK
223 </div>
224 </div>
225 </div>
226
227 <ng-container *ngIf="video !== null">
228 <my-video-support #videoSupportModal [video]="video"></my-video-support>
229 <my-video-share #videoShareModal [video]="video" [videoCaptions]="videoCaptions" [playlist]="playlist"></my-video-share>
230 </ng-container>