]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/follows/followers-list/followers-list.component.html
622d464e4f855762b93de736c63b6196aa4acd19
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / follows / followers-list / followers-list.component.html
1 <h1>
2 <my-global-icon iconName="follower" aria-hidden="true"></my-global-icon>
3 <ng-container i18n>Instances following you</ng-container>
4 </h1>
5
6 <p-table
7 [value]="followers" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions"
8 [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" (onPage)="onPage($event)"
9 [showCurrentPageReport]="true" i18n-currentPageReportTemplate
10 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} followers"
11 >
12 <ng-template pTemplate="caption">
13 <div class="caption">
14 <div class="ml-auto has-feedback has-clear">
15 <input
16 type="text" name="table-filter" id="table-filter" i18n-placeholder placeholder="Filter..."
17 (keyup)="onSearch($event)"
18 >
19 <a class="glyphicon glyphicon-remove-sign form-control-feedback form-control-clear" (click)="resetSearch()"></a>
20 <span class="sr-only" i18n>Clear filters</span>
21 </div>
22 </div>
23 </ng-template>
24
25 <ng-template pTemplate="header">
26 <tr>
27 <th style="width: 150px;">Actions</th>
28 <th i18n>Follower handle</th>
29 <th style="width: 100px;" i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th>
30 <th style="width: 100px;" i18n pSortableColumn="score">Score <p-sortIcon field="score"></p-sortIcon></th>
31 <th style="width: 150px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
32 </tr>
33 </ng-template>
34
35 <ng-template pTemplate="body" let-follow>
36 <tr>
37 <td class="action-cell">
38 <ng-container *ngIf="follow.state === 'pending'">
39 <my-button i18n-title title="Accept" icon="tick" (click)="acceptFollower(follow)"></my-button>
40 <my-button i18n-title title="Refuse" icon="cross" (click)="rejectFollower(follow)"></my-button>
41 </ng-container>
42
43 <my-delete-button label *ngIf="follow.state === 'accepted'" (click)="deleteFollower(follow)"></my-delete-button>
44 </td>
45 <td>
46 <a [href]="follow.follower.url" i18n-title title="Open actor page in a new tab" target="_blank" rel="noopener noreferrer">
47 {{ follow.follower.name + '@' + follow.follower.host }}
48 <span class="glyphicon glyphicon-new-window"></span>
49 </a>
50 </td>
51
52 <td *ngIf="follow.state === 'accepted'">
53 <span class="badge badge-green" i18n>Accepted</span>
54 </td>
55 <td *ngIf="follow.state === 'pending'">
56 <span class="badge badge-yellow" i18n>Pending</span>
57 </td>
58
59 <td>{{ follow.score }}</td>
60 <td>{{ follow.createdAt | date: 'short' }}</td>
61 </tr>
62 </ng-template>
63
64 <ng-template pTemplate="emptymessage">
65 <tr>
66 <td colspan="6">
67 <div class="no-results">
68 <ng-container *ngIf="search" i18n>No follower found matching current filters.</ng-container>
69 <ng-container *ngIf="!search" i18n>Your instance doesn't have any follower.</ng-container>
70 </div>
71 </td>
72 </tr>
73 </ng-template>
74 </p-table>