]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.component.html
Try to handle truncated markdown links
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.component.html
CommitLineData
d1992b93 1<div class="row">
897ec54d 2 <!-- We need the video container for videojs so we just hide it -->
4a7591e1 3 <div id="video-element-wrapper">
6d88de72
C
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>
d1992b93 9 </div>
897ec54d 10
bbe0f064 11 <div i18n class="alert alert-warning" *ngIf="isVideoToTranscode()">
2186386c
C
12 The video is being transcoded, it may not work properly.
13 </div>
14
bbe0f064
C
15 <div i18n class="alert alert-info" *ngIf="hasVideoScheduledPublication()">
16 This video will be published on {{ video.scheduledUpdate.updateAt | date: 'full' }}
17 </div>
18
20206dfb
C
19 <!-- Video information -->
20 <div *ngIf="video" class="margin-content video-bottom">
21 <div class="video-info">
1f788f20
C
22 <div class="video-info-first-row">
23 <div>
24 <div class="video-info-name">{{ video.name }}</div>
d1992b93 25
989e526a 26 <div i18n class="video-info-date-views">
2922e048 27 {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
20206dfb 28 </div>
d38b8281 29
1f788f20 30 <div class="video-info-channel">
e86e53ea 31 <a [routerLink]="[ '/video-channels', video.channel.uuid ]" i18n-title title="Go the channel page">
95166f9a 32 {{ video.channel.displayName }}
52d9f792
C
33
34 <img [src]="video.videoChannelAvatarUrl" alt="Video channel avatar" />
95166f9a 35 </a>
1f788f20 36 <!-- Here will be the subscribe button -->
20206dfb 37 </div>
99cc4f49 38
1f788f20 39 <div class="video-info-by">
9e32b99c 40 <a [routerLink]="[ '/accounts', video.by ]" i18n-title title="Go to the account page">
989e526a 41 <span i18n>By {{ video.by }}</span>
d3e91a5f 42 <img [src]="video.accountAvatarUrl" alt="Account avatar" />
66dc5907 43 </a>
b7f5b524
C
44
45 <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>
b1fa3eba 46 </div>
1f788f20 47 </div>
b1fa3eba 48
1f788f20
C
49 <div class="video-actions-rates">
50 <div class="video-actions">
51 <div
0f7fedc3
C
52 *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
53 class="action-button action-button-like" role="button" [attr.aria-pressed]="userRating === 'like'"
1f788f20 54 >
989e526a 55 <span class="icon icon-like" i18n-title title="Like this video" ></span>
20206dfb
C
56 </div>
57
1f788f20 58 <div
0f7fedc3
C
59 *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()"
60 class="action-button action-button-dislike" role="button" [attr.aria-pressed]="userRating === 'dislike'"
1f788f20 61 >
989e526a 62 <span class="icon icon-dislike" i18n-title title="Dislike this video"></span>
1f788f20 63 </div>
6a9e1d42 64
3bf1ec2e 65 <div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
07fa4c97 66 <span class="icon icon-support"></span>
989e526a 67 <span class="icon-text" i18n>Support</span>
07fa4c97
C
68 </div>
69
0f7fedc3 70 <div (click)="showShareModal()" class="action-button action-button-share" role="button">
1f788f20 71 <span class="icon icon-share"></span>
989e526a 72 <span class="icon-text" i18n>Share</span>
1f788f20 73 </div>
6e07c3de 74
0f7fedc3 75 <div class="action-more" dropdown dropup="true" placement="right" role="button">
1f788f20
C
76 <div class="action-button" dropdownToggle>
77 <span class="icon icon-more"></span>
78 </div>
79
80 <ul *dropdownMenu class="dropdown-menu" id="more-menu" role="menu" aria-labelledby="single-button">
81 <li role="menuitem">
989e526a
C
82 <a class="dropdown-item" i18n-title title="Download the video" href="#" (click)="showDownloadModal($event)">
83 <span class="icon icon-download"></span> <ng-container i18n>Download</ng-container>
1f788f20
C
84 </a>
85 </li>
86
87 <li *ngIf="isUserLoggedIn()" role="menuitem">
989e526a
C
88 <a class="dropdown-item" i18n-title title="Report this video" href="#" (click)="showReportModal($event)">
89 <span class="icon icon-alert"></span> <ng-container i18n>Report</ng-container>
1f788f20
C
90 </a>
91 </li>
92
93 <li *ngIf="isVideoBlacklistable()" role="menuitem">
989e526a
C
94 <a class="dropdown-item" i18n-title title="Blacklist this video" href="#" (click)="blacklistVideo($event)">
95 <span class="icon icon-blacklist"></span> <ng-container i18n>Blacklist</ng-container>
1f788f20
C
96 </a>
97 </li>
98
99 <li *ngIf="isVideoUpdatable()" role="menuitem">
989e526a
C
100 <a class="dropdown-item" i18n-title title="Update this video" href="#" [routerLink]="[ '/videos/update', video.uuid ]">
101 <span class="icon icon-edit"></span> <ng-container i18n>Update</ng-container>
1f788f20
C
102 </a>
103 </li>
104
105 <li *ngIf="isVideoRemovable()" role="menuitem">
989e526a
C
106 <a class="dropdown-item" i18n-title title="Delete this video" href="#" (click)="removeVideo($event)">
107 <span class="icon icon-blacklist"></span> <ng-container i18n>Delete</ng-container>
1f788f20
C
108 </a>
109 </li>
110 </ul>
111 </div>
112 </div>
d07137b9 113
1f788f20
C
114 <div
115 class="video-info-likes-dislikes-bar"
116 *ngIf="video.likes !== 0 || video.dislikes !== 0" [tooltip]="likesBarTooltipText">
117 <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
118 </div>
119 </div>
20206dfb 120 </div>
09223546 121
20206dfb
C
122 <div class="video-info-description">
123 <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>
2de96f4d 124
4001b3bc 125 <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
989e526a 126 <ng-container i18n>Show more</ng-container>
20206dfb
C
127 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
128 <my-loader class="description-loading" [loading]="descriptionLoading"></my-loader>
129 </div>
2de96f4d 130
20206dfb 131 <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
989e526a 132 <ng-container i18n>Show less</ng-container>
20206dfb
C
133 <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
134 </div>
2de96f4d 135 </div>
db216afd 136
20206dfb
C
137 <div class="video-attributes">
138 <div class="video-attribute">
4278710d
C
139 <span i18n class="video-attribute-label">Privacy</span>
140 <span class="video-attribute-value">{{ video.privacy.label }}</span>
20206dfb 141 </div>
fd45e8f4 142
20206dfb 143 <div class="video-attribute">
4278710d
C
144 <span i18n class="video-attribute-label">Category</span>
145 <span *ngIf="!video.category.id" class="video-attribute-value">{{ video.category.label }}</span>
146 <a
147 *ngIf="video.category.id" class="video-attribute-value"
148 [routerLink]="[ '/search' ]" [queryParams]="{ categoryOneOf: [ video.category.id ] }"
149 >{{ video.category.label }}</a>
20206dfb 150 </div>
09223546 151
20206dfb 152 <div class="video-attribute">
4278710d
C
153 <span i18n class="video-attribute-label">Licence</span>
154 <span *ngIf="!video.licence.id" class="video-attribute-value">{{ video.licence.label }}</span>
155 <a
156 *ngIf="video.licence.id" class="video-attribute-value"
157 [routerLink]="[ '/search' ]" [queryParams]="{ licenceOneOf: [ video.licence.id ] }"
158 >{{ video.licence.label }}</a>
20206dfb 159 </div>
09223546 160
20206dfb 161 <div class="video-attribute">
4278710d
C
162 <span i18n class="video-attribute-label">Language</span>
163 <span *ngIf="!video.language.id" class="video-attribute-value">{{ video.language.label }}</span>
164 <a
165 *ngIf="video.language.id" class="video-attribute-value"
166 [routerLink]="[ '/search' ]" [queryParams]="{ languageOneOf: [ video.language.id ] }"
167 >{{ video.language.label }}</a>
20206dfb 168 </div>
8ce9e815 169
4278710d
C
170 <div class="video-attribute video-attribute-tags">
171 <span i18n class="video-attribute-label">Tags</span>
172 <a
173 *ngFor="let tag of getVideoTags()"
174 class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }"
175 >{{ tag }}</a>
20206dfb 176 </div>
8ce9e815 177 </div>
b1fa3eba 178
4635f59d 179 <my-video-comments [video]="video" [user]="user"></my-video-comments>
41c3dfac
C
180 </div>
181
20206dfb 182 <div class="other-videos">
989e526a 183 <div i18n class="title-page title-page-single">
20206dfb
C
184 Other videos
185 </div>
186
57a49263 187 <div *ngFor="let video of otherVideosDisplayed">
20206dfb
C
188 <my-video-miniature [video]="video" [user]="user"></my-video-miniature>
189 </div>
d1992b93
C
190 </div>
191 </div>
2b3b76ab
C
192
193
194 <div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
989e526a 195 <strong i18n>Friendly Reminder:</strong>
2b3b76ab 196 <div class="privacy-concerns-text">
989e526a 197 <ng-container i18n>
a7c9cbb5 198 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.
989e526a 199 </ng-container>
78f912ed 200 <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube">More information</a>
2b3b76ab
C
201 </div>
202
989e526a 203 <div i18n class="privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
2b3b76ab
C
204 OK
205 </div>
206 </div>
d1992b93
C
207</div>
208
ad42bea3 209<ng-template [ngIf]="video !== null">
07fa4c97 210 <my-video-support #videoSupportModal [video]="video"></my-video-support>
4f8c0eb0 211 <my-video-share #videoShareModal [video]="video"></my-video-share>
a96aed15 212 <my-video-download #videoDownloadModal [video]="video"></my-video-download>
4f8c0eb0 213 <my-video-report #videoReportModal [video]="video"></my-video-report>
ad42bea3 214</ng-template>