]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-associate-users.component.html
LP 2061136 follow-up: ng lint --fix
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / course-reserves / course-associate-users.component.html
1 <eg-string #userDeleteFailedString i18n-text text="Removal of User failed or was not allowed"></eg-string>
2 <eg-string #userDeleteSuccessString i18n-text text="Removal of User succeeded"></eg-string>
3 <eg-string #userAddSuccessString i18n-text text="Addition of User succeeded"></eg-string>
4 <eg-string #userAddFailedString i18n-text text="Addition of User failed or was not allowed"></eg-string>
5 <eg-string #userEditSuccessString i18n-text text="Update of User succeeded"></eg-string>
6 <eg-string #userEditFailedString i18n-text text="Update of User failed or was not allowed"></eg-string>
7
8 <eg-patron-search-dialog #patronSearch>
9 </eg-patron-search-dialog>
10
11 <ng-template #dialogContent>
12 <div class="modal-header"
13   [ngClass]="isDialog() ? 'modal-header' : 'alert mt-3'">
14   <h4 class="modal-title" i18n>Course Users</h4>
15   <ng-container *ngIf="isDialog()">
16   <button type="button" class="btn-close btn-close-white"
17     i18n-aria-label aria-label="Close" (click)="close()"></button>
18   </ng-container>
19 </div>
20 <div [ngClass]="isDialog() ? 'modal-body' : ''">
21   <div class="row">
22     <div [ngClass]="isDialog() ? 'col-md-12' : 'col-md-4'">
23       <div class="row" [ngClass]="isDialog() ? '' : 'mt-3'">
24         <div class="d-flex"  [ngClass]="isDialog() ? 'col-md-6' : 'col-md-12'">
25           <div class="input-group">
26               <label for="associate-user-barcode"  class="form-label input-group-text" i18n>Patron Barcode</label>
27             <input type="text" class="flex-grow-1" id="associate-user-barcode"
28               [(ngModel)]="userBarcode" (click)="$event.target.select()"
29               [disabled]="currentCourse && (courseIsArchived || currentCourse.is_archived()) === 't'"
30               />
31             <button type="button" class="btn btn-outline-dark btn-sm" (click)="searchPatrons()">
32               <span class="material-icons mat-icon-in-button align-middle"
33               aria-hidden="true">search</span>
34               <span class="align-middle" i18n>Search for Patron</span>
35             </button>
36           </div>
37         </div>
38         <div class="d-flex" [ngClass]="isDialog() ? 'col-md-6' : 'col-md-12 mt-3'">
39           <div class="input-group">
40               <label for="associate-user-role input-group-text"  class="form-label input-group-text" i18n>Role</label>
41             <eg-combobox idlClass="acmr" [(ngModel)]="userRoleInput"
42             [asyncSupportsEmptyTermClick]="true"
43             [disabled]="currentCourse && (courseIsArchived || currentCourse.is_archived()) === 't'">
44             </eg-combobox>
45           </div>
46         </div>
47       </div>
48       <div class="row mt-3">
49         <div class="text-end" [ngClass]="isDialog() ? 'col-md-2' : 'col-md-6'">
50           <button type="button" class="btn btn-primary"
51             [disabled]="currentCourse && (courseIsArchived || currentCourse.is_archived()) === 't'"
52             i18n [disabled]="!userBarcode" (click)="associateUser(userBarcode)">
53             Add User
54           </button>
55         </div>
56       </div>
57     </div>
58     <div class="mt-3" [ngClass]="isDialog() ? 'col-md-12' : 'col-md-8'">
59       <eg-grid #usersGrid [dataSource]="usersDataSource" [useLocalSort]="true">
60         <eg-grid-toolbar-action label="Remove Selected" i18n-label (onClick)="deleteSelectedUsers($event)">
61         </eg-grid-toolbar-action>
62         <eg-grid-toolbar-action label="Edit Selected" i18n-label (onClick)="editSelectedUsers($event)">
63         </eg-grid-toolbar-action>
64         <eg-grid-column label="User ID" path="usr.id" [index]=true [hidden]="true" i18n-label></eg-grid-column>
65         <eg-grid-column label="First Name" path="usr.first_given_name" i18n-label></eg-grid-column>
66         <eg-grid-column label="Second Name" path="usr.second_given_name" i18n-label></eg-grid-column>
67         <eg-grid-column label="Last Name" path="usr.family_name" i18n-label></eg-grid-column>
68         <eg-grid-column label="Prefix" path="usr.pref_prefix" [hidden]="true" i18n-label></eg-grid-column>
69         <eg-grid-column label="Preferred First Name" path="usr.pref_first_given_name"[hidden]="true"  i18n-label></eg-grid-column>
70         <eg-grid-column label="Preferred Second Name" path="usr.pref_second_given_name"[hidden]="true"  i18n-label></eg-grid-column>
71         <eg-grid-column label="Preferred Family Name" path="usr.pref_family_name"[hidden]="true"  i18n-label></eg-grid-column>
72         <eg-grid-column label="Preferred Suffix" path="usr.pref_suffix" [hidden]="true" i18n-label></eg-grid-column>
73         <eg-grid-column label="User Role" path="usr_role.name" i18n-label></eg-grid-column>
74         <eg-grid-column label="Viewable on OPAC" path="usr_role.is_public" i18n-label datatype="bool"></eg-grid-column>
75       </eg-grid>
76     </div>
77   </div>
78 </div>
79 </ng-template>
80
81 <ng-container *ngIf="!isDialog()">
82   <!-- in "inline" mode, render the grid pane right here -->
83   <ng-container *ngTemplateOutlet="dialogContent">
84   </ng-container>
85 </ng-container>
86
87 <eg-fm-record-editor #editDialog
88   idlClass='acmcu'
89   [fieldOptions]="{course: {linkedSearchField: 'course_number'}}"
90   [preloadLinkedValues]="true"
91   hiddenFields="id,usr">
92 </eg-fm-record-editor>