]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.component.html
Add local user subscriptions
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.component.html
1 <div class="root-row 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 <div class="alert alert-danger" *ngIf="video?.blacklisted">
24 <div class="blacklisted-label" i18n>This video is blacklisted.</div>
25 {{ video.blacklistedReason }}
26 </div>
27
28 <!-- Video information -->
29 <div *ngIf="video" class="margin-content video-bottom">
30 <div class="video-info">
31 <div class="video-info-first-row">
32 <div>
33 <div class="video-info-name">{{ video.name }}</div>
34
35 <div i18n class="video-info-date-views">
36 {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
37 </div>
38
39 <div class="video-info-channel">
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"></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>
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 >
72 <span class="icon icon-dislike" i18n-title title="Dislike this video"></span>
73 </div>
74
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
80 <div (click)="showShareModal()" class="action-button action-button-share" role="button">
81 <span class="icon icon-share"></span>
82 <span class="icon-text" i18n>Share</span>
83 </div>
84
85 <div class="action-more" ngbDropdown placement="top" role="button">
86 <div class="action-button" ngbDropdownToggle role="button">
87 <span class="icon icon-more"></span>
88 </div>
89
90 <div ngbDropdownMenu>
91 <a class="dropdown-item" i18n-title title="Download the video" href="#" (click)="showDownloadModal($event)">
92 <span class="icon icon-download"></span> <ng-container i18n>Download</ng-container>
93 </a>
94
95 <a *ngIf="isUserLoggedIn()" class="dropdown-item" i18n-title title="Report this video" href="#" (click)="showReportModal($event)">
96 <span class="icon icon-alert"></span> <ng-container i18n>Report</ng-container>
97 </a>
98
99 <a *ngIf="isVideoUpdatable()" class="dropdown-item" i18n-title title="Update this video" href="#" [routerLink]="[ '/videos/update', video.uuid ]">
100 <span class="icon icon-edit"></span> <ng-container i18n>Update</ng-container>
101 </a>
102
103 <a *ngIf="isVideoBlacklistable()" class="dropdown-item" i18n-title title="Blacklist this video" href="#" (click)="showBlacklistModal($event)">
104 <span class="icon icon-blacklist"></span> <ng-container i18n>Blacklist</ng-container>
105 </a>
106
107 <a *ngIf="isVideoUnblacklistable()" class="dropdown-item" i18n-title title="Unblacklist this video" href="#" (click)="unblacklistVideo($event)">
108 <span class="icon icon-unblacklist"></span> <ng-container i18n>Unblacklist</ng-container>
109 </a>
110
111 <a *ngIf="isVideoRemovable()" class="dropdown-item" i18n-title title="Delete this video" href="#" (click)="removeVideo($event)">
112 <span class="icon icon-delete"></span> <ng-container i18n>Delete</ng-container>
113 </a>
114 </div>
115 </div>
116 </div>
117
118 <div
119 class="video-info-likes-dislikes-bar"
120 *ngIf="video.likes !== 0 || video.dislikes !== 0" [ngbTooltip]="likesBarTooltipText">
121 <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
122 </div>
123 </div>
124 </div>
125
126 <div class="video-info-description">
127 <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>
128
129 <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
130 <ng-container i18n>Show more</ng-container>
131 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
132 <my-loader class="description-loading" [loading]="descriptionLoading"></my-loader>
133 </div>
134
135 <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
136 <ng-container i18n>Show less</ng-container>
137 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
138 </div>
139 </div>
140
141 <div class="video-attributes">
142 <div class="video-attribute">
143 <span i18n class="video-attribute-label">Privacy</span>
144 <span class="video-attribute-value">{{ video.privacy.label }}</span>
145 </div>
146
147 <div class="video-attribute">
148 <span i18n class="video-attribute-label">Category</span>
149 <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span>
150 <a
151 *ngIf="video.category.id" class="video-attribute-value"
152 [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }"
153 >{{ video.category.label }}</a>
154 </div>
155
156 <div class="video-attribute">
157 <span i18n class="video-attribute-label">Licence</span>
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
165 <div class="video-attribute">
166 <span i18n class="video-attribute-label">Language</span>
167 <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span>
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>
173
174 <div class="video-attribute video-attribute-tags">
175 <span i18n class="video-attribute-label">Tags</span>
176 <a
177 *ngFor="let tag of getVideoTags()"
178 class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
179 >{{ tag }}</a>
180 </div>
181 </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>
195 </div>
196
197
198 <div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
199 <strong i18n>Friendly Reminder:</strong>
200 <div class="privacy-concerns-text">
201 <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.
203 </ng-container>
204 <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube">More information</a>
205 </div>
206
207 <div i18n class="privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
208 OK
209 </div>
210 </div>
211 </div>
212
213 <ng-template [ngIf]="video !== null">
214 <my-video-support #videoSupportModal [video]="video"></my-video-support>
215 <my-video-share #videoShareModal [video]="video"></my-video-share>
216 <my-video-download #videoDownloadModal [video]="video"></my-video-download>
217 <my-video-report #videoReportModal [video]="video"></my-video-report>
218 <my-video-blacklist #videoBlacklistModal [video]="video"></my-video-blacklist>
219 </ng-template>