aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-watch.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/+video-watch/video-watch.component.html')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.html298
1 files changed, 158 insertions, 140 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.html b/client/src/app/videos/+video-watch/video-watch.component.html
index e9c79741e..333c9d11b 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.html
+++ b/client/src/app/videos/+video-watch/video-watch.component.html
@@ -26,180 +26,198 @@
26 </div> 26 </div>
27 27
28 <!-- Video information --> 28 <!-- Video information -->
29 <div *ngIf="video" class="margin-content video-bottom"> 29 <div *ngIf="video" class="container video-bottom">
30 <div class="video-info"> 30 <div class="row fullWidth">
31 <div class="video-info-first-row"> 31 <div class="col-12 col-md-9 video-info">
32 <div> 32 <div class="video-info-first-row">
33 <div class="video-info-name">{{ video.name }}</div> 33 <div>
34 34 <div class="d-block d-sm-none"> <!-- only shown on small devices, has its conterpart for larger viewports below -->
35 <div i18n class="video-info-date-views"> 35 <div class="video-info-name">{{ video.name }}</div>
36 {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views 36
37 </div> 37 <div i18n class="video-info-date-views">
38 38 Published {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
39 <div class="video-info-channel"> 39 </div>
40 <a [routerLink]="[ '/video-channels', video.channel.name ]" i18n-title title="Go the channel page">
41 {{ video.channel.displayName }}
42
43 <img [src]="video.videoChannelAvatarUrl" alt="Video channel avatar" />
44 </a>
45
46 <my-subscribe-button [videoChannel]="video.channel" size="small"></my-subscribe-button>
47 </div>
48
49 <div class="video-info-by">
50 <a [routerLink]="[ '/accounts', video.byAccount ]" i18n-title title="Go to the account page">
51 <span i18n>By {{ video.byAccount }}</span>
52 <img [src]="video.accountAvatarUrl" alt="Account avatar" />
53 </a>
54
55 <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."></my-help>
56 </div>
57 </div>
58
59 <div class="video-actions-rates">
60 <div class="video-actions">
61 <div
62 *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
63 class="action-button action-button-like" role="button" [attr.aria-pressed]="userRating === 'like'"
64 >
65 <span class="icon icon-like" i18n-title title="Like this video" ></span>
66 </div> 40 </div>
67 41
68 <div 42 <div class="d-flex justify-content-between align-items-sm-end">
69 *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()" 43 <div class="d-none d-sm-block">
70 class="action-button action-button-dislike" role="button" [attr.aria-pressed]="userRating === 'dislike'" 44 <div class="video-info-name">{{ video.name }}</div>
71 > 45
72 <span class="icon icon-dislike" i18n-title title="Dislike this video"></span> 46 <div i18n class="video-info-date-views">
47 Published {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
48 </div>
49 </div>
50
51 <div class="video-actions-rates">
52 <div class="video-actions fullWidth justify-content-end">
53 <div
54 *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
55 class="action-button action-button-like" role="button" [attr.aria-pressed]="userRating === 'like'"
56 >
57 <span class="icon icon-like" i18n-title title="Like this video" ></span>
58 </div>
59
60 <div
61 *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()"
62 class="action-button action-button-dislike" role="button" [attr.aria-pressed]="userRating === 'dislike'"
63 >
64 <span class="icon icon-dislike" i18n-title title="Dislike this video"></span>
65 </div>
66
67 <div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
68 <span class="icon icon-support"></span>
69 <span class="icon-text" i18n>Support</span>
70 </div>
71
72 <div (click)="showShareModal()" class="action-button action-button-share" role="button">
73 <span class="icon icon-share"></span>
74 <span class="icon-text" i18n>Share</span>
75 </div>
76
77 <div class="action-more" ngbDropdown placement="top" role="button">
78 <div class="action-button" ngbDropdownToggle role="button">
79 <span class="icon icon-more"></span>
80 </div>
81
82 <div ngbDropdownMenu>
83 <a class="dropdown-item" i18n-title title="Download the video" href="#" (click)="showDownloadModal($event)">
84 <span class="icon icon-download"></span> <ng-container i18n>Download</ng-container>
85 </a>
86
87 <a *ngIf="isUserLoggedIn()" class="dropdown-item" i18n-title title="Report this video" href="#" (click)="showReportModal($event)">
88 <span class="icon icon-alert"></span> <ng-container i18n>Report</ng-container>
89 </a>
90
91 <a *ngIf="isVideoUpdatable()" class="dropdown-item" i18n-title title="Update this video" href="#" [routerLink]="[ '/videos/update', video.uuid ]">
92 <span class="icon icon-edit"></span> <ng-container i18n>Update</ng-container>
93 </a>
94
95 <a *ngIf="isVideoBlacklistable()" class="dropdown-item" i18n-title title="Blacklist this video" href="#" (click)="showBlacklistModal($event)">
96 <span class="icon icon-blacklist"></span> <ng-container i18n>Blacklist</ng-container>
97 </a>
98
99 <a *ngIf="isVideoUnblacklistable()" class="dropdown-item" i18n-title title="Unblacklist this video" href="#" (click)="unblacklistVideo($event)">
100 <span class="icon icon-unblacklist"></span> <ng-container i18n>Unblacklist</ng-container>
101 </a>
102
103 <a *ngIf="isVideoRemovable()" class="dropdown-item" i18n-title title="Delete this video" href="#" (click)="removeVideo($event)">
104 <span class="icon icon-delete"></span> <ng-container i18n>Delete</ng-container>
105 </a>
106 </div>
107 </div>
108 </div>
109
110 <div
111 class="video-info-likes-dislikes-bar"
112 *ngIf="video.likes !== 0 || video.dislikes !== 0"
113 placement="bottom"
114 [ngbTooltip]="likesBarTooltipText">
115 <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
116 </div>
117 </div>
73 </div> 118 </div>
74 119
75 <div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
76 <span class="icon icon-support"></span>
77 <span class="icon-text" i18n>Support</span>
78 </div>
79 120
80 <div (click)="showShareModal()" class="action-button action-button-share" role="button"> 121 <div class="pt-3 border-top video-info-channel">
81 <span class="icon icon-share"></span> 122 <a [routerLink]="[ '/video-channels', video.channel.name ]" i18n-title title="Go the channel page">
82 <span class="icon-text" i18n>Share</span> 123 {{ video.channel.displayName }}
83 </div>
84 124
85 <div class="action-more" ngbDropdown placement="top" role="button"> 125 <img [src]="video.videoChannelAvatarUrl" alt="Video channel avatar" />
86 <div class="action-button" ngbDropdownToggle role="button"> 126 </a>
87 <span class="icon icon-more"></span>
88 </div>
89 127
90 <div ngbDropdownMenu> 128 <my-subscribe-button [videoChannel]="video.channel" size="small"></my-subscribe-button>
91 <a class="dropdown-item" i18n-title title="Download the video" href="#" (click)="showDownloadModal($event)"> 129 </div>
92 <span class="icon icon-download"></span> <ng-container i18n>Download</ng-container>
93 </a>
94 130
95 <a *ngIf="isUserLoggedIn()" class="dropdown-item" i18n-title title="Report this video" href="#" (click)="showReportModal($event)"> 131 <div class="video-info-by">
96 <span class="icon icon-alert"></span> <ng-container i18n>Report</ng-container> 132 <a [routerLink]="[ '/accounts', video.byAccount ]" i18n-title title="Go to the account page">
97 </a> 133 <span i18n>By {{ video.byAccount }}</span>
134 <img [src]="video.accountAvatarUrl" alt="Account avatar" />
135 </a>
98 136
99 <a *ngIf="isVideoUpdatable()" class="dropdown-item" i18n-title title="Update this video" href="#" [routerLink]="[ '/videos/update', video.uuid ]"> 137 <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."></my-help>
100 <span class="icon icon-edit"></span> <ng-container i18n>Update</ng-container> 138 </div>
101 </a> 139 </div>
102 140
103 <a *ngIf="isVideoBlacklistable()" class="dropdown-item" i18n-title title="Blacklist this video" href="#" (click)="showBlacklistModal($event)"> 141 </div>
104 <span class="icon icon-blacklist"></span> <ng-container i18n>Blacklist</ng-container>
105 </a>
106 142
107 <a *ngIf="isVideoUnblacklistable()" class="dropdown-item" i18n-title title="Unblacklist this video" href="#" (click)="unblacklistVideo($event)"> 143 <div class="video-info-description">
108 <span class="icon icon-unblacklist"></span> <ng-container i18n>Unblacklist</ng-container> 144 <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>
109 </a>
110 145
111 <a *ngIf="isVideoRemovable()" class="dropdown-item" i18n-title title="Delete this video" href="#" (click)="removeVideo($event)"> 146 <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
112 <span class="icon icon-delete"></span> <ng-container i18n>Delete</ng-container> 147 <ng-container i18n>Show more</ng-container>
113 </a> 148 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
114 </div> 149 <my-loader class="description-loading" [loading]="descriptionLoading"></my-loader>
115 </div>
116 </div> 150 </div>
117 151
118 <div 152 <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
119 class="video-info-likes-dislikes-bar" 153 <ng-container i18n>Show less</ng-container>
120 *ngIf="video.likes !== 0 || video.dislikes !== 0" [ngbTooltip]="likesBarTooltipText"> 154 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
121 <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
122 </div> 155 </div>
123 </div> 156 </div>
124 </div>
125 157
126 <div class="video-info-description"> 158 <div class="video-attributes">
127 <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div> 159 <div class="video-attribute">
160 <span i18n class="video-attribute-label">Privacy</span>
161 <span class="video-attribute-value">{{ video.privacy.label }}</span>
162 </div>
128 163
129 <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()"> 164 <div class="video-attribute">
130 <ng-container i18n>Show more</ng-container> 165 <span i18n class="video-attribute-label">Category</span>
131 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span> 166 <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span>
132 <my-loader class="description-loading" [loading]="descriptionLoading"></my-loader> 167 <a
133 </div> 168 *ngIf="video.category.id" class="video-attribute-value"
169 [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }"
170 >{{ video.category.label }}</a>
171 </div>
134 172
135 <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more"> 173 <div class="video-attribute">
136 <ng-container i18n>Show less</ng-container> 174 <span i18n class="video-attribute-label">Licence</span>
137 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span> 175 <span *ngIf="!video.licence.id" class="video-attribute-value">{{ video.licence.label }}</span>
138 </div> 176 <a
139 </div> 177 *ngIf="video.licence.id" class="video-attribute-value"
178 [routerLink]="[ '/search' ]" [queryParams]="{ licenceOneOf: [ video.licence.id ] }"
179 >{{ video.licence.label }}</a>
180 </div>
140 181
141 <div class="video-attributes"> 182 <div class="video-attribute">
142 <div class="video-attribute"> 183 <span i18n class="video-attribute-label">Language</span>
143 <span i18n class="video-attribute-label">Privacy</span> 184 <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span>
144 <span class="video-attribute-value">{{ video.privacy.label }}</span> 185 <a
145 </div> 186 *ngIf="video.language.id" class="video-attribute-value"
187 [routerLink]="[ '/search' ]" [queryParams]="{ languageOneOf: [ video.language.id ] }"
188 >{{ video.language.label }}</a>
189 </div>
146 190
147 <div class="video-attribute"> 191 <div class="video-attribute video-attribute-tags">
148 <span i18n class="video-attribute-label">Category</span> 192 <span i18n class="video-attribute-label">Tags</span>
149 <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span> 193 <a
150 <a 194 *ngFor="let tag of getVideoTags()"
151 *ngIf="video.category.id" class="video-attribute-value" 195 class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
152 [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }" 196 >{{ tag }}</a>
153 >{{ video.category.label }}</a> 197 </div>
154 </div> 198 </div>
155 199
156 <div class="video-attribute"> 200 <my-video-comments [video]="video" [user]="user"></my-video-comments>
157 <span i18n class="video-attribute-label">Licence</span> 201 </div>
158 <span *ngIf="!video.licence.id" class="video-attribute-value">{{ video.licence.label }}</span>
159 <a
160 *ngIf="video.licence.id" class="video-attribute-value"
161 [routerLink]="[ '/search' ]" [queryParams]="{ licenceOneOf: [ video.licence.id ] }"
162 >{{ video.licence.label }}</a>
163 </div>
164 202
165 <div class="video-attribute"> 203 <div class="ml-3 ml-sm-0 col-12 col-md-3 other-videos">
166 <span i18n class="video-attribute-label">Language</span> 204 <div i18n class="title-page title-page-single">
167 <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span> 205 Other videos
168 <a
169 *ngIf="video.language.id" class="video-attribute-value"
170 [routerLink]="[ '/search' ]" [queryParams]="{ languageOneOf: [ video.language.id ] }"
171 >{{ video.language.label }}</a>
172 </div> 206 </div>
173 207
174 <div class="video-attribute video-attribute-tags"> 208 <div *ngFor="let video of otherVideosDisplayed">
175 <span i18n class="video-attribute-label">Tags</span> 209 <my-video-miniature [video]="video" [user]="user"></my-video-miniature>
176 <a
177 *ngFor="let tag of getVideoTags()"
178 class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
179 >{{ tag }}</a>
180 </div> 210 </div>
181 </div> 211 </div>
182
183 <my-video-comments [video]="video" [user]="user"></my-video-comments>
184 </div>
185
186 <div class="other-videos">
187 <div i18n class="title-page title-page-single">
188 Other videos
189 </div>
190
191 <div *ngFor="let video of otherVideosDisplayed">
192 <my-video-miniature [video]="video" [user]="user"></my-video-miniature>
193 </div>
194 </div> 212 </div>
195 </div> 213 </div>
196 214
197 215
198 <div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false"> 216 <div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
199 <strong i18n>Friendly Reminder:</strong>
200 <div class="privacy-concerns-text"> 217 <div class="privacy-concerns-text">
218 <strong i18n>Friendly Reminder: </strong>
201 <ng-container i18n> 219 <ng-container i18n>
202 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. 220 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.
203 </ng-container> 221 </ng-container>
204 <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube">More information</a> 222 <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube">More information</a>
205 </div> 223 </div>