mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-09 09:58:20 -05:00

* bulk_edit_object_perms API endpoint * Frontend support for bulk object permissions edit
107 lines
6.7 KiB
HTML
107 lines
6.7 KiB
HTML
<pngx-page-header title="{{ typeNamePlural | titlecase }}">
|
|
<button class="btn btn-sm btn-outline-secondary me-2" (click)="clearSelection()" [hidden]="selectedObjects.size === 0">
|
|
<svg class="sidebaricon" fill="currentColor">
|
|
<use xlink:href="assets/bootstrap-icons.svg#x"/>
|
|
</svg> <ng-container i18n>Clear selection</ng-container>
|
|
</button>
|
|
<button type="button" class="btn btn-sm btn-outline-primary me-5" (click)="setPermissions()" [disabled]="!userOwnsAll || selectedObjects.size === 0">
|
|
<svg width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor">
|
|
<use xlink:href="assets/bootstrap-icons.svg#person-fill-lock" />
|
|
</svg> <ng-container i18n>Permissions</ng-container>
|
|
</button>
|
|
<button type="button" class="btn btn-sm btn-outline-primary" (click)="openCreateDialog()" *pngxIfPermissions="{ action: PermissionAction.Add, type: permissionType }" i18n>Create</button>
|
|
</pngx-page-header>
|
|
|
|
<div class="row mb-3">
|
|
<div class="col-md mb-2 mb-xl-0">
|
|
<div class="form-inline d-flex align-items-center">
|
|
<label class="text-muted me-2 mb-0" i18n>Filter by:</label>
|
|
<input class="form-control form-control-sm flex-fill w-auto" type="text" autofocus [(ngModel)]="nameFilter" (keyup)="onNameFilterKeyUp($event)" placeholder="Name" i18n-placeholder>
|
|
</div>
|
|
</div>
|
|
|
|
<ngb-pagination class="col-auto" [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" [maxSize]="5" (pageChange)="reloadData()" size="sm" aria-label="Pagination"></ngb-pagination>
|
|
</div>
|
|
|
|
<table class="table table-striped align-middle border shadow-sm">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" id="all-objects" [disabled]="data.length === 0" (click)="toggleAll($event); $event.stopPropagation();">
|
|
<label class="form-check-label" for="all-objects"></label>
|
|
</div>
|
|
</th>
|
|
<th scope="col" pngxSortable="name" [currentSortField]="sortField" [currentSortReverse]="sortReverse" (sort)="onSort($event)" i18n>Name</th>
|
|
<th scope="col" class="d-none d-sm-table-cell" pngxSortable="matching_algorithm" [currentSortField]="sortField" [currentSortReverse]="sortReverse" (sort)="onSort($event)" i18n>Matching</th>
|
|
<th scope="col" pngxSortable="document_count" [currentSortField]="sortField" [currentSortReverse]="sortReverse" (sort)="onSort($event)" i18n>Document count</th>
|
|
<th scope="col" *ngFor="let column of extraColumns" pngxSortable="{{column.key}}" [currentSortField]="sortField" [currentSortReverse]="sortReverse" (sort)="onSort($event)">{{column.name}}</th>
|
|
<th scope="col" i18n>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngIf="isLoading">
|
|
<td colspan="5">
|
|
<div class="spinner-border spinner-border-sm me-2" role="status"></div>
|
|
<ng-container i18n>Loading...</ng-container>
|
|
</td>
|
|
</tr>
|
|
<tr *ngFor="let object of data" (click)="toggleSelected(object, $event); $event.stopPropagation();">
|
|
<td>
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" id="{{typeName}}{{object.id}}" [checked]="selectedObjects.has(object.id)" (click)="toggleSelected(object); $event.stopPropagation();">
|
|
<label class="form-check-label" for="{{typeName}}{{object.id}}"></label>
|
|
</div>
|
|
</td>
|
|
<td scope="row">{{ object.name }}</td>
|
|
<td scope="row" class="d-none d-sm-table-cell">{{ getMatching(object) }}</td>
|
|
<td scope="row">{{ object.document_count }}</td>
|
|
<td scope="row" *ngFor="let column of extraColumns">
|
|
<div *ngIf="column.rendersHtml; else colValue" [innerHtml]="column.valueFn.call(null, object) | safeHtml"></div>
|
|
<ng-template #colValue>{{ column.valueFn.call(null, object) }}</ng-template>
|
|
</td>
|
|
<td scope="row">
|
|
<div class="btn-group d-block d-sm-none">
|
|
<div ngbDropdown class="d-inline-block">
|
|
<button type="button" class="btn btn-link" id="actionsMenuMobile" ngbDropdownToggle>
|
|
<svg class="toolbaricon" fill="currentColor">
|
|
<use xlink:href="assets/bootstrap-icons.svg#three-dots-vertical" />
|
|
</svg>
|
|
</button>
|
|
<div ngbDropdownMenu aria-labelledby="actionsMenuMobile">
|
|
<button (click)="filterDocuments(object)" *pngxIfPermissions="{ action: PermissionAction.View, type: PermissionType.Document }" ngbDropdownItem i18n>Filter Documents</button>
|
|
<button (click)="openEditDialog(object)" *pngxIfPermissions="{ action: PermissionAction.Change, type: permissionType }" ngbDropdownItem i18n>Edit</button>
|
|
<button class="text-danger" (click)="openDeleteDialog(object)" *pngxIfPermissions="{ action: PermissionAction.Delete, type: permissionType }" ngbDropdownItem i18n>Delete</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="btn-group d-none d-sm-block">
|
|
<button class="btn btn-sm btn-outline-secondary" (click)="filterDocuments(object); $event.stopPropagation();" *pngxIfPermissions="{ action: PermissionAction.View, type: PermissionType.Document }">
|
|
<svg class="buttonicon-sm" fill="currentColor">
|
|
<use xlink:href="assets/bootstrap-icons.svg#filter" />
|
|
</svg> <ng-container i18n>Documents</ng-container>
|
|
</button>
|
|
<button class="btn btn-sm btn-outline-secondary" (click)="openEditDialog(object); $event.stopPropagation();" *pngxIfPermissions="{ action: PermissionAction.Change, type: permissionType }" [disabled]="!userCanEdit(object)">
|
|
<svg class="buttonicon-sm" fill="currentColor">
|
|
<use xlink:href="assets/bootstrap-icons.svg#pencil" />
|
|
</svg> <ng-container i18n>Edit</ng-container>
|
|
</button>
|
|
<button class="btn btn-sm btn-outline-danger" (click)="openDeleteDialog(object); $event.stopPropagation();" *pngxIfPermissions="{ action: PermissionAction.Delete, type: permissionType }" [disabled]="!userCanDelete(object)">
|
|
<svg class="buttonicon-sm" fill="currentColor">
|
|
<use xlink:href="assets/bootstrap-icons.svg#trash" />
|
|
</svg> <ng-container i18n>Delete</ng-container>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="d-flex mb-2" *ngIf="!isLoading">
|
|
<div *ngIf="collectionSize > 0">
|
|
<ng-container i18n>{collectionSize, plural, =1 {One {{typeName}}} other {{{collectionSize || 0}} total {{typeNamePlural}}}}</ng-container>
|
|
<ng-container *ngIf="selectedObjects.size > 0"> ({{selectedObjects.size}} selected)</ng-container>
|
|
</div>
|
|
<ngb-pagination *ngIf="collectionSize > 20" class="ms-auto" [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" [maxSize]="5" (pageChange)="reloadData()" size="sm" aria-label="Pagination"></ngb-pagination>
|
|
</div>
|