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