aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/system/jobs/jobs.component.html
blob: 3015917866bd80137fb4451a4f127a4e6f59de51 (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
<div class="admin-sub-header">
  <div class="select-filter-block">
    <label for="jobType" i18n>Job type</label>
    <div class="peertube-select-container">
      <select id="jobType" name="jobType" [(ngModel)]="jobType" (ngModelChange)="onJobStateOrTypeChanged()" class="form-control">
        <option *ngFor="let jobType of jobTypes" [value]="jobType">{{ jobType }}</option>
      </select>
    </div>
  </div>

  <div class="select-filter-block">
    <label for="jobState" i18n>Job state</label>
    <ng-select
      class="select-job-state"
      [(ngModel)]="jobState"
      (ngModelChange)="onJobStateOrTypeChanged()"
      [clearable]="false"
      [searchable]="false"
    >
      <ng-option value="all">
        <span i18n="Selector for the list displaying jobs, filtering by their state">any</span>
      </ng-option>
      <ng-option *ngFor="let state of jobStates" [value]="state">
        <span class="badge" [ngClass]="getJobStateClass(state)">{{ state }}</span>
      </ng-option>
    </ng-select>
  </div>

  <div class="button-filter-block">
    <my-button i18n-label label="Refresh" icon="refresh" (click)="refresh()"></my-button>
  </div>
</div>

<p-table
  [value]="jobs" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage"  [rowsPerPageOptions]="rowsPerPageOptions"
  [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" dataKey="uniqId" [first]="pagination.start"
  [tableStyle]="{'table-layout':'auto'}"
  [showCurrentPageReport]="true" i18n-currentPageReportTemplate
  currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} jobs"
  [expandedRowKeys]="expandedRows"
>
  <ng-template pTemplate="header">
    <tr>
      <th style="width: 40px"></th>
      <th style="width: calc(100% - 390px)" class="job-id" i18n>ID</th>
      <th style="width: 200px" class="job-type" i18n>Type</th>
      <th style="width: 200px" class="job-priority" i18n>Priority <small>(1 = highest priority)</small></th>
      <th style="width: 200px" class="job-state" i18n *ngIf="jobState === 'all'">State</th>
      <th style="width: 100px" class="job-progress" i18n *ngIf="hasGlobalProgress()">Progress</th>
      <th style="width: 150px" class="job-date" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
    </tr>
  </ng-template>

  <ng-template pTemplate="body" let-expanded="expanded" let-job>
    <tr>
      <td class="expand-cell" [pRowToggler]="job">
        <my-table-expander-icon [expanded]="expanded"></my-table-expander-icon>
      </td>

      <td class="job-id c-hand" [pRowToggler]="job" [title]="job.id">{{ job.id }}</td>
      <td class="job-type c-hand" [pRowToggler]="job">{{ job.type }}</td>
      <td class="job-priority c-hand" [pRowToggler]="job">{{ job.priority }}</td>

      <td class="job-state c-hand" [pRowToggler]="job" *ngIf="jobState === 'all'">
        <span class="badge" [ngClass]="getJobStateClass(job.state)">{{ job.state }}</span>
      </td>

      <td *ngIf="hasGlobalProgress()" class="job-progress c-hand" [pRowToggler]="job">
        <ng-container *ngIf="hasProgress(job)">{{ getProgress(job) }}</ng-container>
      </td>

      <td class="job-date c-hand" [pRowToggler]="job">{{ job.createdAt | date: 'short' }}</td>
    </tr>
  </ng-template>

  <ng-template pTemplate="rowexpansion" let-job>
    <tr>
      <td [attr.colspan]="getColspan()">
        <pre>{{ [
          'Job: ' + job.id,
          'Type: ' + job.type,
          'Processed on ' + (job.processedOn || '-'),
          'Finished on ' + (job.finishedOn || '-')
        ].join('\n') }}</pre>
      </td>
    </tr>
    <tr>
      <td [attr.colspan]="getColspan()">
        <pre>{{ job.data }}</pre>
      </td>
    </tr>
    <tr class="job-error" *ngIf="job.error">
      <td [attr.colspan]="getColspan()">
        <pre>{{ job.error }}</pre>
      </td>
    </tr>
  </ng-template>

  <ng-template pTemplate="emptymessage">
    <tr>
      <td [attr.colspan]="getColspan()">
        <div class="no-results">
          <div class="d-block">
            <ng-container *ngIf="jobState === 'all'">
              <ng-container *ngIf="jobType === 'all'" i18n>No jobs found.</ng-container>
              <ng-container *ngIf="jobType !== 'all'" i18n>No <code>{{ jobType }}</code> jobs found.</ng-container>
            </ng-container>

            <ng-container *ngIf="jobState !== 'all'">
              <ng-container *ngIf="jobType === 'all'" i18n>No <span class="badge" [ngClass]="getJobStateClass(jobState)">{{ jobState }}</span> jobs found.</ng-container>
              <ng-container *ngIf="jobType !== 'all'" i18n>No <code>{{ jobType }}</code> jobs found that are <span class="badge" [ngClass]="getJobStateClass(jobState)">{{ jobState }}</span>.</ng-container>
            </ng-container>
          </div>
        </div>
      </td>
    </tr>
  </ng-template>
</p-table>