aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-watch.component.html
blob: 4c650b121badeaa58c642afe029a2e1a2eb0e429 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<div class="row">
  <!-- We need the video container for videojs so we just hide it -->
  <div id="video-element-wrapper">
  </div>

  <!-- Video information -->
  <div *ngIf="video" class="margin-content video-bottom">
    <div class="video-info">
      <div class="video-info-first-row">
        <div>
          <div class="video-info-name">{{ video.name }}</div>

          <div i18n class="video-info-date-views">
            {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
          </div>

          <div class="video-info-channel">
            <a [routerLink]="[ '/video-channels', video.channel.id ]" i18n-title title="Go the channel page">
              {{ video.channel.displayName }}
            </a>
            <!-- Here will be the subscribe button -->
            <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>
          </div>

          <div class="video-info-by">
            <a [routerLink]="[ '/accounts', video.by ]" i18n-title title="Go to the account page">
              <span i18n>By {{ video.by }}</span>
              <img [src]="video.accountAvatarUrl" alt="Account avatar" />
            </a>
          </div>
        </div>

        <div class="video-actions-rates">
          <div class="video-actions">
            <div
                *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
                class="action-button action-button-like"
            >
              <span class="icon icon-like" i18n-title title="Like this video" ></span>
            </div>

            <div
                *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'dislike' }" (click)="setDislike()"
                class="action-button action-button-dislike"
            >
              <span class="icon icon-dislike" i18n-title title="Dislike this video"></span>
            </div>

            <div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
              <span class="icon icon-support"></span>
              <span class="icon-text" i18n>Support</span>
            </div>

            <div (click)="showShareModal()" class="action-button action-button-share">
              <span class="icon icon-share"></span>
              <span class="icon-text" i18n>Share</span>
            </div>

            <div class="action-more" dropdown dropup="true" placement="right">
              <div class="action-button" dropdownToggle>
                <span class="icon icon-more"></span>
              </div>

              <ul *dropdownMenu class="dropdown-menu" id="more-menu" role="menu" aria-labelledby="single-button">
                <li role="menuitem">
                  <a class="dropdown-item" i18n-title title="Download the video" href="#" (click)="showDownloadModal($event)">
                    <span class="icon icon-download"></span> <ng-container i18n>Download</ng-container>
                  </a>
                </li>

                <li *ngIf="isUserLoggedIn()" role="menuitem">
                  <a class="dropdown-item" i18n-title title="Report this video" href="#" (click)="showReportModal($event)">
                    <span class="icon icon-alert"></span> <ng-container i18n>Report</ng-container>
                  </a>
                </li>

                <li *ngIf="isVideoBlacklistable()" role="menuitem">
                  <a class="dropdown-item" i18n-title title="Blacklist this video" href="#" (click)="blacklistVideo($event)">
                    <span class="icon icon-blacklist"></span> <ng-container i18n>Blacklist</ng-container>
                  </a>
                </li>

                <li *ngIf="isVideoUpdatable()" role="menuitem">
                  <a class="dropdown-item" i18n-title title="Update this video" href="#" [routerLink]="[ '/videos/update', video.uuid ]">
                    <span class="icon icon-edit"></span> <ng-container i18n>Update</ng-container>
                  </a>
                </li>

                <li *ngIf="isVideoRemovable()" role="menuitem">
                  <a class="dropdown-item" i18n-title title="Delete this video" href="#" (click)="removeVideo($event)">
                    <span class="icon icon-blacklist"></span> <ng-container i18n>Delete</ng-container>
                  </a>
                </li>
              </ul>
            </div>
          </div>

          <div
              class="video-info-likes-dislikes-bar"
              *ngIf="video.likes !== 0 || video.dislikes !== 0"  [tooltip]="likesBarTooltipText">
            <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
          </div>
        </div>
      </div>

      <div class="video-info-description">
        <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>

        <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()">
          <ng-container i18n>Show more</ng-container>
          <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
          <my-loader class="description-loading" [loading]="descriptionLoading"></my-loader>
        </div>

        <div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-info-description-more">
          <ng-container i18n>Show less</ng-container>
          <span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
        </div>
      </div>

      <div class="video-attributes">
        <div class="video-attribute">
          <span i18n class="video-attribute-label">
            Privacy
          </span>
          <span class="video-attribute-value">
            {{ video.privacy.label }}
          </span>
        </div>

        <div class="video-attribute">
          <span i18n class="video-attribute-label">
            Category
          </span>
          <span class="video-attribute-value">
            {{ video.category.label }}
          </span>
        </div>

        <div class="video-attribute">
          <span i18n class="video-attribute-label">
            Licence
          </span>
          <span class="video-attribute-value">
            {{ video.licence.label }}
          </span>
        </div>

        <div class="video-attribute">
          <span i18n class="video-attribute-label">
            Language
          </span>
          <span class="video-attribute-value">
            {{ video.language.label }}
          </span>
        </div>

        <div class="video-attribute">
          <span i18n class="video-attribute-label">
            Tags
          </span>

          <span class="video-attribute-value">
            {{ getVideoTags() }}
          </span>
        </div>
      </div>

      <my-video-comments [video]="video" [user]="user"></my-video-comments>
    </div>

    <div class="other-videos">
      <div i18n class="title-page title-page-single">
        Other videos
      </div>

      <div *ngFor="let video of otherVideosDisplayed">
        <my-video-miniature [video]="video" [user]="user"></my-video-miniature>
      </div>
    </div>
  </div>


  <div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
    <strong i18n>Friendly Reminder:</strong>
    <div class="privacy-concerns-text">
      <ng-container i18n>
        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.
      </ng-container>
      <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about#p2p-privacy">More information</a>
    </div>

    <div i18n class="privacy-concerns-okay" (click)="acceptedPrivacyConcern()">
      OK
    </div>
  </div>
</div>

<ng-template [ngIf]="video !== null">
  <my-video-support #videoSupportModal [video]="video"></my-video-support>
  <my-video-share #videoShareModal [video]="video"></my-video-share>
  <my-video-download #videoDownloadModal [video]="video"></my-video-download>
  <my-video-report #videoReportModal [video]="video"></my-video-report>
</ng-template>