5d3361561b7c93bcf0232be0b7e727a9a5c66869
[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 [hidden]="videoNotFound" id="video-element-wrapper">
4   </div>
5
6   <div *ngIf="videoNotFound" id="video-not-found">Video not found :'(</div>
7
8   <!-- Video information -->
9   <div *ngIf="video" class="margin-content video-bottom">
10     <div class="video-info">
11       <div class="video-info-first-row">
12         <div>
13           <div class="video-info-name">{{ video.name }}</div>
14
15           <div class="video-info-date-views">
16             {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
17           </div>
18
19           <div class="video-info-channel">
20             {{ video.channel.displayName }}
21             <!-- Here will be the subscribe button -->
22           </div>
23
24           <div class="video-info-by">
25             <a [routerLink]="[ '/account', video.account.id ]" title="Go the account page">
26               <span>By {{ video.by }}</span>
27               <img [src]="video.accountAvatarUrl" alt="Account avatar" />
28             </a>
29           </div>
30         </div>
31
32         <div class="video-actions-rates">
33           <div class="video-actions">
34             <div
35                 *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
36                 class="action-button action-button-like"
37             >
38               <span class="icon icon-like" title="Like this video" ></span>
39             </div>
40
41             <div
42                 *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()"
43                 class="action-button action-button-dislike"
44             >
45               <span class="icon icon-dislike" title="Dislike this video"></span>
46             </div>
47
48             <div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
49               <span class="icon icon-support"></span>
50               <span class="icon-text">Support</span>
51             </div>
52
53             <div (click)="showShareModal()" class="action-button action-button-share">
54               <span class="icon icon-share"></span>
55               <span class="icon-text">Share</span>
56             </div>
57
58             <div class="action-more" dropdown dropup="true" placement="right">
59               <div class="action-button" dropdownToggle>
60                 <span class="icon icon-more"></span>
61               </div>
62
63               <ul *dropdownMenu class="dropdown-menu" id="more-menu" role="menu" aria-labelledby="single-button">
64                 <li role="menuitem">
65                   <a class="dropdown-item" title="Download the video" href="#" (click)="showDownloadModal($event)">
66                     <span class="icon icon-download"></span> Download
67                   </a>
68                 </li>
69
70                 <li *ngIf="isUserLoggedIn()" role="menuitem">
71                   <a class="dropdown-item" title="Report this video" href="#" (click)="showReportModal($event)">
72                     <span class="icon icon-alert"></span> Report
73                   </a>
74                 </li>
75
76                 <li *ngIf="isVideoBlacklistable()" role="menuitem">
77                   <a class="dropdown-item" title="Blacklist this video" href="#" (click)="blacklistVideo($event)">
78                     <span class="icon icon-blacklist"></span> Blacklist
79                   </a>
80                 </li>
81
82                 <li *ngIf="isVideoUpdatable()" role="menuitem">
83                   <a class="dropdown-item" title="Update this video" href="#" [routerLink]="[ '/videos/edit', video.uuid ]">
84                     <span class="icon icon-edit"></span> Update
85                   </a>
86                 </li>
87
88                 <li *ngIf="isVideoRemovable()" role="menuitem">
89                   <a class="dropdown-item" title="Delete this video" href="#" (click)="removeVideo($event)">
90                     <span class="icon icon-blacklist"></span> Delete
91                   </a>
92                 </li>
93               </ul>
94             </div>
95           </div>
96
97           <div
98               class="video-info-likes-dislikes-bar"
99               *ngIf="video.likes !== 0 || video.dislikes !== 0"  [tooltip]="likesBarTooltipText">
100             <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
101           </div>
102         </div>
103       </div>
104
105       <div class="video-info-description">
106         <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>
107
108         <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
109           Show more
110           <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
111           <my-loader class="description-loading" [loading]="descriptionLoading"></my-loader>
112         </div>
113
114         <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
115           Show less
116           <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
117         </div>
118       </div>
119
120       <div class="video-attributes">
121         <div class="video-attribute">
122           <span class="video-attribute-label">
123             Privacy
124           </span>
125           <span class="video-attribute-value">
126             {{ video.privacy.label }}
127           </span>
128         </div>
129
130         <div class="video-attribute">
131           <span class="video-attribute-label">
132             Category
133           </span>
134           <span class="video-attribute-value">
135             {{ video.category.label }}
136           </span>
137         </div>
138
139         <div class="video-attribute">
140           <span class="video-attribute-label">
141             Licence
142           </span>
143           <span class="video-attribute-value">
144             {{ video.licence.label }}
145           </span>
146         </div>
147
148         <div class="video-attribute">
149           <span class="video-attribute-label">
150             Language
151           </span>
152           <span class="video-attribute-value">
153             {{ video.language.label }}
154           </span>
155         </div>
156
157         <div class="video-attribute">
158           <span class="video-attribute-label">
159             Tags
160           </span>
161
162           <span class="video-attribute-value">
163             {{ getVideoTags() }}
164           </span>
165         </div>
166       </div>
167
168       <my-video-comments [video]="video" [user]="user"></my-video-comments>
169     </div>
170
171     <div class="other-videos">
172       <div class="title-page title-page-single">
173         Other videos
174       </div>
175
176       <div *ngFor="let video of otherVideosDisplayed">
177         <my-video-miniature [video]="video" [user]="user"></my-video-miniature>
178       </div>
179     </div>
180   </div>
181
182
183   <div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
184     <strong>Friendly Reminder:</strong>
185     <div class="privacy-concerns-text">
186       The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be accessed publicly.
187       <a title="Get more information" target="_blank" rel="noopener noreferrer" href="/about#p2p-privacy">More information</a>
188     </div>
189
190     <div class="privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
191       OK
192     </div>
193   </div>
194 </div>
195
196 <ng-template [ngIf]="video !== null">
197   <my-video-support #videoSupportModal [video]="video"></my-video-support>
198   <my-video-share #videoShareModal [video]="video"></my-video-share>
199   <my-video-download #videoDownloadModal [video]="video"></my-video-download>
200   <my-video-report #videoReportModal [video]="video"></my-video-report>
201 </ng-template>