Migrate to bootstrap 4 and ng-bootstrap
[oweals/peertube.git] / client / src / app / videos / +video-watch / video-watch.component.html
1 <div class="row">
2   <!-- We need the video container for videojs so we just hide it -->
3   <div id="video-element-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   </div>
10
11   <div i18n class="alert alert-warning" *ngIf="isVideoToImport()">
12     The video is being imported, it will be available when the import is finished.
13   </div>
14
15   <div i18n class="alert alert-warning" *ngIf="isVideoToTranscode()">
16     The video is being transcoded, it may not work properly.
17   </div>
18
19   <div i18n class="alert alert-info" *ngIf="hasVideoScheduledPublication()">
20     This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}
21   </div>
22
23   <!-- Video information -->
24   <div *ngIf="video" class="margin-content video-bottom">
25     <div class="video-info">
26       <div class="video-info-first-row">
27         <div>
28           <div class="video-info-name">{{ video.name }}</div>
29
30           <div i18n class="video-info-date-views">
31             {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
32           </div>
33
34           <div class="video-info-channel">
35             <a [routerLink]="[ '/video-channels', video.channel.uuid ]" i18n-title title="Go the channel page">
36               {{ video.channel.displayName }}
37
38               <img [src]="video.videoChannelAvatarUrl" alt="Video channel avatar" />
39             </a>
40             <!-- Here will be the subscribe button -->
41           </div>
42
43           <div class="video-info-by">
44             <a [routerLink]="[ '/accounts', video.by ]" i18n-title title="Go to the account page">
45               <span i18n>By {{ video.by }}</span>
46               <img [src]="video.accountAvatarUrl" alt="Account avatar" />
47             </a>
48
49             <my-help helpType="custom" i18n-customHtml customHtml="You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box <strong>@{{video.account.name}}@{{video.account.host}}</strong> and subscribe there. Subscription as a PeerTube user is being worked on in <a href='https://github.com/Chocobozzz/PeerTube/issues/470'>#470</a>."></my-help>
50           </div>
51         </div>
52
53         <div class="video-actions-rates">
54           <div class="video-actions">
55             <div
56               *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
57               class="action-button action-button-like" role="button" [attr.aria-pressed]="userRating === 'like'"
58             >
59               <span class="icon icon-like" i18n-title title="Like this video" ></span>
60             </div>
61
62             <div
63               *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()"
64               class="action-button action-button-dislike" role="button" [attr.aria-pressed]="userRating === 'dislike'"
65             >
66               <span class="icon icon-dislike" i18n-title title="Dislike this video"></span>
67             </div>
68
69             <div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
70               <span class="icon icon-support"></span>
71               <span class="icon-text" i18n>Support</span>
72             </div>
73
74             <div (click)="showShareModal()" class="action-button action-button-share" role="button">
75               <span class="icon icon-share"></span>
76               <span class="icon-text" i18n>Share</span>
77             </div>
78
79             <div class="action-more" ngbDropdown placement="top" role="button">
80               <div class="action-button" ngbDropdownToggle role="button">
81                 <span class="icon icon-more"></span>
82               </div>
83
84               <div ngbDropdownMenu>
85                 <a class="dropdown-item" i18n-title title="Download the video" href="#" (click)="showDownloadModal($event)">
86                   <span class="icon icon-download"></span> <ng-container i18n>Download</ng-container>
87                 </a>
88
89                 <a *ngIf="isUserLoggedIn()" class="dropdown-item" i18n-title title="Report this video" href="#" (click)="showReportModal($event)">
90                   <span class="icon icon-alert"></span> <ng-container i18n>Report</ng-container>
91                 </a>
92
93                 <a *ngIf="isVideoBlacklistable()" class="dropdown-item" i18n-title title="Blacklist this video" href="#" (click)="blacklistVideo($event)">
94                   <span class="icon icon-blacklist"></span> <ng-container i18n>Blacklist</ng-container>
95                 </a>
96
97                 <a *ngIf="isVideoUpdatable()" class="dropdown-item" i18n-title title="Update this video" href="#" [routerLink]="[ '/videos/update', video.uuid ]">
98                   <span class="icon icon-edit"></span> <ng-container i18n>Update</ng-container>
99                 </a>
100
101                 <a *ngIf="isVideoRemovable()" class="dropdown-item" i18n-title title="Delete this video" href="#" (click)="removeVideo($event)">
102                   <span class="icon icon-blacklist"></span> <ng-container i18n>Delete</ng-container>
103                 </a>
104               </div>
105             </div>
106           </div>
107
108           <div
109               class="video-info-likes-dislikes-bar"
110               *ngIf="video.likes !== 0 || video.dislikes !== 0"  [ngbTooltip]="likesBarTooltipText">
111             <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
112           </div>
113         </div>
114       </div>
115
116       <div class="video-info-description">
117         <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>
118
119         <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
120           <ng-container i18n>Show more</ng-container>
121           <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
122           <my-loader class="description-loading" [loading]="descriptionLoading"></my-loader>
123         </div>
124
125         <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
126           <ng-container i18n>Show less</ng-container>
127           <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
128         </div>
129       </div>
130
131       <div class="video-attributes">
132         <div class="video-attribute">
133           <span i18n class="video-attribute-label">Privacy</span>
134           <span class="video-attribute-value">{{ video.privacy.label }}</span>
135         </div>
136
137         <div class="video-attribute">
138           <span i18n class="video-attribute-label">Category</span>
139           <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span>
140           <a
141             *ngIf="video.category.id" class="video-attribute-value"
142             [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }"
143           >{{ video.category.label }}</a>
144         </div>
145
146         <div class="video-attribute">
147           <span i18n class="video-attribute-label">Licence</span>
148           <span *ngIf="!video.licence.id" class="video-attribute-value">{{ video.licence.label }}</span>
149           <a
150             *ngIf="video.licence.id" class="video-attribute-value"
151             [routerLink]="[ '/search' ]" [queryParams]="{ licenceOneOf: [ video.licence.id ] }"
152           >{{ video.licence.label }}</a>
153         </div>
154
155         <div class="video-attribute">
156           <span i18n class="video-attribute-label">Language</span>
157           <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span>
158           <a
159             *ngIf="video.language.id" class="video-attribute-value"
160             [routerLink]="[ '/search' ]" [queryParams]="{ languageOneOf: [ video.language.id ] }"
161           >{{ video.language.label }}</a>
162         </div>
163
164         <div class="video-attribute video-attribute-tags">
165           <span i18n class="video-attribute-label">Tags</span>
166           <a
167             *ngFor="let tag of getVideoTags()"
168             class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
169           >{{ tag }}</a>
170         </div>
171       </div>
172
173       <my-video-comments [video]="video" [user]="user"></my-video-comments>
174     </div>
175
176     <div class="other-videos">
177       <div i18n class="title-page title-page-single">
178         Other videos
179       </div>
180
181       <div *ngFor="let video of otherVideosDisplayed">
182         <my-video-miniature [video]="video" [user]="user"></my-video-miniature>
183       </div>
184     </div>
185   </div>
186
187
188   <div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
189     <strong i18n>Friendly Reminder:</strong>
190     <div class="privacy-concerns-text">
191       <ng-container i18n>
192         The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.
193       </ng-container>
194       <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube">More information</a>
195     </div>
196
197     <div i18n class="privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
198       OK
199     </div>
200   </div>
201 </div>
202
203 <ng-template [ngIf]="video !== null">
204   <my-video-support #videoSupportModal [video]="video"></my-video-support>
205   <my-video-share #videoShareModal [video]="video"></my-video-share>
206   <my-video-download #videoDownloadModal [video]="video"></my-video-download>
207   <my-video-report #videoReportModal [video]="video"></my-video-report>
208 </ng-template>