aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/followers-list/followers-list.component.html
blob: ce603459e645388b1c19ab69dc3aa8a577cabd60 (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
<p-table
  [value]="followers" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions"
  [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" (onPage)="onPage($event)"
  [showCurrentPageReport]="true" i18n-currentPageReportTemplate
  currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} followers"
>
  <ng-template pTemplate="caption">
    <div class="caption">
      <div class="ml-auto has-feedback has-clear">
        <input
          type="text" name="table-filter" id="table-filter" i18n-placeholder placeholder="Filter..."
          (keyup)="onSearch($event)"
        >
        <a class="glyphicon glyphicon-remove-sign form-control-feedback form-control-clear" (click)="resetSearch()"></a>
        <span class="sr-only" i18n>Clear filters</span>
      </div>
    </div>
  </ng-template>

  <ng-template pTemplate="header">
    <tr>
      <th i18n>Follower handle</th>
      <th style="width: 100px;" i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th>
      <th style="width: 100px;" i18n pSortableColumn="score">Score <p-sortIcon field="score"></p-sortIcon></th>
      <th style="width: 150px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
      <th style="width: 150px;"></th>
    </tr>
  </ng-template>

  <ng-template pTemplate="body" let-follow>
    <tr>
      <td>
        <a [href]="follow.follower.url" i18n-title title="Open actor page in a new tab" target="_blank" rel="noopener noreferrer">
          {{ follow.follower.name + '@' + follow.follower.host }}
          <span class="glyphicon glyphicon-new-window"></span>
        </a>
      </td>

      <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td>
      <td *ngIf="follow.state === 'pending'" i18n>Pending</td>

      <td>{{ follow.score }}</td>
      <td>{{ follow.createdAt | date: 'short' }}</td>

      <td class="action-cell">
        <ng-container *ngIf="follow.state === 'pending'">
          <my-button i18n-title title="Accept" icon="tick" (click)="acceptFollower(follow)"></my-button>
          <my-button i18n-title title="Refuse" icon="cross" (click)="rejectFollower(follow)"></my-button>
        </ng-container>

        <my-delete-button *ngIf="follow.state === 'accepted'" (click)="deleteFollower(follow)"></my-delete-button>
      </td>
    </tr>
  </ng-template>

  <ng-template pTemplate="emptymessage">
    <tr>
      <td colspan="6">
        <div class="no-results">
          <ng-container *ngIf="search" i18n>No follower found matching current filters.</ng-container>
          <ng-container *ngIf="!search" i18n>Your instance doesn't have any follower.</ng-container>
        </div>
      </td>
    </tr>
  </ng-template>
</p-table>