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