aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html
blob: 608dff2d871b5882f73f4c42007331406c5297b3 (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
<p-table
  [value]="blacklist" [lazy]="true" [paginator]="true" [totalRecords]="totalRecords" [rows]="rowsPerPage"
  [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" dataKey="id"
>
  <ng-template pTemplate="header">
    <tr>
      <th style="width: 40px"></th>
      <th i18n pSortableColumn="name">Video name <p-sortIcon field="name"></p-sortIcon></th>
      <th i18n>Sensitive</th>
      <th i18n>Unfederated</th>
      <th i18n pSortableColumn="createdAt">Date <p-sortIcon field="createdAt"></p-sortIcon></th>
      <th style="width: 120px;"></th>
    </tr>
  </ng-template>

  <ng-template pTemplate="body" let-videoBlacklist let-expanded="expanded">
    <tr>
      <td>
        <span *ngIf="videoBlacklist.reason" class="expander" [pRowToggler]="videoBlacklist">
          <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i>
        </span>
      </td>

      <td>
        <a [href]="getVideoUrl(videoBlacklist)" i18n-title title="Go to the video" target="_blank" rel="noopener noreferrer">
          {{ videoBlacklist.video.name }}
        </a>
      </td>

      <td>{{ booleanToText(videoBlacklist.video.nsfw) }}</td>
      <td>{{ booleanToText(videoBlacklist.unfederated) }}</td>
      <td>{{ videoBlacklist.createdAt }}</td>

      <td class="action-cell">
        <my-action-dropdown i18n-label  placement="bottom-right" label="Actions" [actions]="videoBlacklistActions" [entry]="videoBlacklist"></my-action-dropdown>
      </td>
    </tr>
  </ng-template>

  <ng-template pTemplate="rowexpansion" let-videoBlacklist>
    <tr>
      <td class="moderation-expanded" colspan="6">
        <span i18n class="moderation-expanded-label">Blacklist reason:</span>
        <span class="moderation-expanded-text" [innerHTML]="videoBlacklist.reasonHtml"></span>
      </td>
    </tr>
  </ng-template>
</p-table>