]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-abuse-list/abuse-list-table.component.html
Fix config test
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-abuse-list / abuse-list-table.component.html
CommitLineData
94148c90
C
1<p-table
2 [value]="abuses" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions"
3 [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" dataKey="id" [resizableColumns]="true" [lazyLoadOnInit]="false"
4 [showCurrentPageReport]="true" i18n-currentPageReportTemplate
5 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} reports"
6 (onPage)="onPage($event)" [expandedRowKeys]="expandedRows"
7>
8 <ng-template pTemplate="caption">
9 <div class="caption">
10 <div class="ml-auto">
11 <div class="input-group has-feedback has-clear">
12 <div class="input-group-prepend c-hand" ngbDropdown placement="bottom-left auto" container="body">
13 <div class="input-group-text" ngbDropdownToggle>
14 <span class="caret" aria-haspopup="menu" role="button"></span>
15 </div>
16
17 <div role="menu" ngbDropdownMenu>
18 <h6 class="dropdown-header" i18n>Advanced report filters</h6>
594d3e48
C
19 <a [routerLink]="[ baseRoute ]" [queryParams]="{ 'search': 'state:pending' }" class="dropdown-item" i18n>Unsolved reports</a>
20 <a [routerLink]="[ baseRoute ]" [queryParams]="{ 'search': 'state:accepted' }" class="dropdown-item" i18n>Accepted reports</a>
21 <a [routerLink]="[ baseRoute ]" [queryParams]="{ 'search': 'state:rejected' }" class="dropdown-item" i18n>Refused reports</a>
22 <a [routerLink]="[ baseRoute ]" [queryParams]="{ 'search': 'videoIs:blacklisted' }" class="dropdown-item" i18n>Reports with blocked videos</a>
23 <a [routerLink]="[ baseRoute ]" [queryParams]="{ 'search': 'videoIs:deleted' }" class="dropdown-item" i18n>Reports with deleted videos</a>
94148c90
C
24 </div>
25 </div>
26 <input
27 type="text" name="table-filter" id="table-filter" i18n-placeholder placeholder="Filter..."
5ed46c1b 28 (keyup)="onSearch($event)"
94148c90
C
29 >
30 <a class="glyphicon glyphicon-remove-sign form-control-feedback form-control-clear" (click)="resetTableFilter()"></a>
31 <span class="sr-only" i18n>Clear filters</span>
32 </div>
33 </div>
34 </div>
35 </ng-template>
36
37 <ng-template pTemplate="header">
38 <tr> <!-- header -->
39 <th style="width: 40px;"></th>
7706b370 40 <th style="width: 150px;"></th>
94148c90
C
41 <th *ngIf="isAdminView()" style="width: 20%;" pResizableColumn i18n>Reporter</th>
42 <th i18n>Video/Comment/Account</th>
43 <th style="width: 150px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
44 <th i18n pSortableColumn="state" style="width: 80px;">State <p-sortIcon field="state"></p-sortIcon></th>
45 <th i18n style="width: 80px;">Messages</th>
d573926e 46 <th i18n *ngIf="isAdminView()" style="width: 100px;">Internal note</th>
94148c90
C
47 </tr>
48 </ng-template>
49
50 <ng-template pTemplate="body" let-expanded="expanded" let-abuse>
51 <tr>
7706b370 52 <td class="expand-cell c-hand" [pRowToggler]="abuse" i18n-ngbTooltip ngbTooltip="More information" placement="top-left" container="body">
94148c90
C
53 <span class="expander">
54 <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i>
55 </span>
56 </td>
57
7706b370
C
58 <td class="action-cell">
59 <my-action-dropdown
60 [ngClass]="{ 'show': expanded }" placement="bottom-right top-right left auto" container="body"
61 i18n-label label="Actions" [actions]="abuseActions" [entry]="abuse"
62 ></my-action-dropdown>
63 </td>
64
94148c90
C
65 <td *ngIf="isAdminView()">
66 <a *ngIf="abuse.reporterAccount" [href]="abuse.reporterAccount.url" i18n-title title="Open account in a new tab" target="_blank" rel="noopener noreferrer">
67 <div class="chip two-lines">
68 <img
69 class="avatar"
70 [src]="abuse.reporterAccount.avatar?.path"
71 (error)="switchToDefaultAvatar($event)"
72 alt="Avatar"
73 >
74 <div>
75 {{ abuse.reporterAccount.displayName }}
76 <span>{{ abuse.reporterAccount.nameWithHost }}</span>
77 </div>
78 </div>
79 </a>
80
81 <span i18n *ngIf="!abuse.reporterAccount">
82 Deleted account
83 </span>
84 </td>
85
86 <ng-container *ngIf="abuse.video">
87
88 <td *ngIf="!abuse.video.deleted">
89 <a [href]="getVideoUrl(abuse)" class="table-video-link" [title]="abuse.video.name" target="_blank" rel="noopener noreferrer">
90 <div class="table-video">
91 <div class="table-video-image">
92 <img [src]="abuse.video.thumbnailPath">
93 <span
94 class="table-video-image-label" *ngIf="abuse.count > 1"
95 i18n-title title="This video has been reported multiple times."
96 >
97 {{ abuse.nth }}/{{ abuse.count }}
98 </span>
99 </div>
100
101 <div class="table-video-text">
102 <div>
103 <span *ngIf="!abuse.video.blacklisted" class="glyphicon glyphicon-new-window"></span>
104 <span *ngIf="abuse.video.blacklisted" i18n-title title="The video was blocked" class="glyphicon glyphicon-ban-circle"></span>
105 {{ abuse.video.name }}
106 </div>
107 <div i18n>by {{ abuse.video.channel?.displayName }} on {{ abuse.video.channel?.host }} </div>
108 </div>
109 </div>
110 </a>
111 </td>
112
113 <td *ngIf="abuse.video.deleted" class="c-hand" [pRowToggler]="abuse">
114 <div class="table-video" i18n-title title="Video was deleted">
115 <div class="table-video-image">
116 <span i18n>Deleted</span>
117 </div>
118
119 <div class="table-video-text">
120 <div>
121 {{ abuse.video.name }}
122 <span class="glyphicon glyphicon-trash"></span>
123 </div>
124 <div i18n>by {{ abuse.video.channel?.displayName }} on {{ abuse.video.channel?.host }} </div>
125 </div>
126 </div>
127 </td>
128 </ng-container>
129
130 <ng-container *ngIf="abuse.comment">
131 <td>
132 <a [href]="getCommentUrl(abuse)" [innerHTML]="abuse.truncatedCommentHtml" class="table-comment-link"
133 [title]="abuse.comment.video.name" target="_blank" rel="noopener noreferrer"
134 ></a>
135
136 <div class="comment-flagged-account" *ngIf="abuse.flaggedAccount">by {{ abuse.flaggedAccount.displayName }}</div>
137 </td>
138 </ng-container>
139
140 <ng-container *ngIf="!abuse.comment && !abuse.video">
141 <td *ngIf="abuse.flaggedAccount">
142 <a [href]="getAccountUrl(abuse)" class="table-account-link" target="_blank" rel="noopener noreferrer">
143 <span>{{ abuse.flaggedAccount.displayName }}</span>
144
145 <span class="account-flagged-handle">{{ abuse.flaggedAccount.nameWithHostForced }}</span>
146 </a>
147 </td>
148
149 <td i18n *ngIf="!abuse.flaggedAccount">
150 Account deleted
151 </td>
152
153 </ng-container>
154
94148c90
C
155 <td class="c-hand" [pRowToggler]="abuse">{{ abuse.createdAt | date: 'short' }}</td>
156
157 <td class="c-hand abuse-states" [pRowToggler]="abuse">
158 <span *ngIf="isAbuseAccepted(abuse)" [title]="abuse.state.label" class="glyphicon glyphicon-ok"></span>
159 <span *ngIf="isAbuseRejected(abuse)" [title]="abuse.state.label" class="glyphicon glyphicon-remove"></span>
94148c90
C
160 </td>
161
162 <td class="c-hand abuse-messages" (click)="openAbuseMessagesModal(abuse)">
163 <ng-container *ngIf="isLocalAbuse(abuse)">
164 {{ abuse.countMessages }}
165
166 <my-global-icon iconName="message-circle"></my-global-icon>
167 </ng-container>
168 </td>
169
d573926e
C
170 <td *ngIf="isAdminView()" class="internal-note" container="body" placement="left auto" [ngbTooltip]="abuse.moderationComment">
171 {{ abuse.moderationComment }}
172 </td>
94148c90
C
173 </tr>
174 </ng-template>
175
176 <ng-template pTemplate="rowexpansion" let-abuse>
177 <tr>
71ab65d0 178 <td class="expand-cell" colspan="8">
94148c90
C
179 <my-abuse-details [abuse]="abuse" [baseRoute]="baseRoute" [isAdminView]="isAdminView()"></my-abuse-details>
180 </td>
181 </tr>
182 </ng-template>
183
184 <ng-template pTemplate="emptymessage">
185 <tr>
186 <td colspan="6">
187 <div class="no-results">
188 <ng-container *ngIf="search" i18n>No abuses found matching current filters.</ng-container>
189 <ng-container *ngIf="!search" i18n>No abuses found.</ng-container>
190 </div>
191 </td>
192 </tr>
193 </ng-template>
194</p-table>
195
196<my-moderation-comment-modal #moderationCommentModal (commentUpdated)="onModerationCommentUpdated()"></my-moderation-comment-modal>
197<my-abuse-message-modal #abuseMessagesModal [isAdminView]="isAdminView()" (countMessagesUpdated)="onCountMessagesUpdated($event)"></my-abuse-message-modal>