]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts
LP1919465 Avoid dupe Current Item's in pull list
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / share / holds / grid.component.ts
1 import {Component, OnInit, Input, ViewChild} from '@angular/core';
2 import {Observable, Observer, of} from 'rxjs';
3 import {IdlObject} from '@eg/core/idl.service';
4 import {NetService} from '@eg/core/net.service';
5 import {OrgService} from '@eg/core/org.service';
6 import {AuthService} from '@eg/core/auth.service';
7 import {Pager} from '@eg/share/util/pager';
8 import {ServerStoreService} from '@eg/core/server-store.service';
9 import {GridDataSource, GridColumn, GridCellTextGenerator} from '@eg/share/grid/grid';
10 import {GridComponent} from '@eg/share/grid/grid.component';
11 import {ProgressDialogComponent} from '@eg/share/dialog/progress.component';
12 import {MarkDamagedDialogComponent
13     } from '@eg/staff/share/holdings/mark-damaged-dialog.component';
14 import {MarkMissingDialogComponent
15     } from '@eg/staff/share/holdings/mark-missing-dialog.component';
16 import {MarkDiscardDialogComponent
17     } from '@eg/staff/share/holdings/mark-discard-dialog.component';
18 import {HoldRetargetDialogComponent
19     } from '@eg/staff/share/holds/retarget-dialog.component';
20 import {HoldTransferDialogComponent} from './transfer-dialog.component';
21 import {HoldCancelDialogComponent} from './cancel-dialog.component';
22 import {HoldManageDialogComponent} from './manage-dialog.component';
23 import {PrintService} from '@eg/share/print/print.service';
24 import {HoldingsService} from '@eg/staff/share/holdings/holdings.service';
25
26 /** Holds grid with access to detail page and other actions */
27
28 @Component({
29   selector: 'eg-holds-grid',
30   templateUrl: 'grid.component.html'
31 })
32 export class HoldsGridComponent implements OnInit {
33
34     // If either are set/true, the pickup lib selector will display
35     @Input() initialPickupLib: number | IdlObject;
36     @Input() hidePickupLibFilter: boolean;
37
38     // Setting a value here puts us into "pull list" mode.
39     @Input() pullListOrg: number;
40
41     // If true, only retrieve holds with a Hopeless Date
42     // and enable related Actions
43     @Input() hopeless: boolean;
44
45     // Grid persist key
46     @Input() persistKey: string;
47
48     @Input() preFetchSetting: string;
49
50     @Input() printTemplate: string;
51
52     // If set, all holds are fetched on grid load and sorting/paging all
53     // happens in the client.  If false, sorting and paging occur on
54     // the server.
55     @Input() enablePreFetch: boolean;
56
57     // How to sort when no sort parameters have been applied
58     // via grid controls.  This uses the eg-grid sort format:
59     // [{name: fname, dir: 'asc'}, {name: fname2, dir: 'desc'}]
60     @Input() defaultSort: any[];
61
62     // To pass through to the underlying eg-grid
63     @Input() showFields: string;
64
65     // Display bib record summary along the top of the detail page.
66     @Input() showRecordSummary = false;
67
68     mode: 'list' | 'detail' | 'manage' = 'list';
69     initDone = false;
70     holdsCount: number;
71     pickupLib: IdlObject;
72     plCompLoaded = false;
73     gridDataSource: GridDataSource;
74     detailHold: any;
75     editHolds: number[];
76     transferTarget: number;
77
78     @ViewChild('holdsGrid', { static: false }) private holdsGrid: GridComponent;
79     @ViewChild('progressDialog', { static: true })
80         private progressDialog: ProgressDialogComponent;
81     @ViewChild('transferDialog', { static: true })
82         private transferDialog: HoldTransferDialogComponent;
83     @ViewChild('markDamagedDialog', { static: true })
84         private markDamagedDialog: MarkDamagedDialogComponent;
85     @ViewChild('markMissingDialog', { static: true })
86         private markMissingDialog: MarkMissingDialogComponent;
87     @ViewChild('markDiscardDialog')
88         private markDiscardDialog: MarkDiscardDialogComponent;
89     @ViewChild('retargetDialog', { static: true })
90         private retargetDialog: HoldRetargetDialogComponent;
91     @ViewChild('cancelDialog', { static: true })
92         private cancelDialog: HoldCancelDialogComponent;
93     @ViewChild('manageDialog', { static: true })
94         private manageDialog: HoldManageDialogComponent;
95
96     // Bib record ID.
97     _recordId: number;
98     @Input() set recordId(id: number) {
99         this._recordId = id;
100         if (this.initDone) { // reload on update
101             this.holdsGrid.reload();
102         }
103     }
104
105     _userId: number;
106     @Input() set userId(id: number) {
107         this._userId = id;
108         if (this.initDone) {
109             this.holdsGrid.reload();
110         }
111     }
112
113     // Include holds canceled on or after the provided date.
114     // If no value is passed, canceled holds are not displayed.
115     _showCanceledSince: Date;
116     @Input() set showCanceledSince(show: Date) {
117         this._showCanceledSince = show;
118         if (this.initDone) { // reload on update
119             this.holdsGrid.reload();
120         }
121     }
122
123     // Include holds fulfilled on or after hte provided date.
124     // If no value is passed, fulfilled holds are not displayed.
125     _showFulfilledSince: Date;
126     @Input() set showFulfilledSince(show: Date) {
127         this._showFulfilledSince = show;
128         if (this.initDone) { // reload on update
129             this.holdsGrid.reload();
130         }
131     }
132
133
134     cellTextGenerator: GridCellTextGenerator;
135
136     // Include holds marked Hopeless on or after this date.
137     _showHopelessAfter: Date;
138     @Input() set showHopelessAfter(show: Date) {
139         this._showHopelessAfter = show;
140         if (this.initDone) { // reload on update
141             this.holdsGrid.reload();
142         }
143     }
144
145     // Include holds marked Hopeless on or before this date.
146     _showHopelessBefore: Date;
147     @Input() set showHopelessBefore(show: Date) {
148         this._showHopelessBefore = show;
149         if (this.initDone) { // reload on update
150             this.holdsGrid.reload();
151         }
152     }
153
154     constructor(
155         private net: NetService,
156         private org: OrgService,
157         private store: ServerStoreService,
158         private auth: AuthService,
159         private printer: PrintService,
160         private holdings: HoldingsService
161     ) {
162         this.gridDataSource = new GridDataSource();
163         this.enablePreFetch = null;
164     }
165
166     ngOnInit() {
167         this.initDone = true;
168         this.pickupLib = this.org.get(this.initialPickupLib);
169
170         if (this.preFetchSetting) {
171             this.store.getItem(this.preFetchSetting).then(
172                 applied => this.enablePreFetch = Boolean(applied)
173             );
174         }
175
176         if (!this.defaultSort) {
177             if (this.pullListOrg) {
178
179                 this.defaultSort = [
180                     {name: 'copy_location_order_position', dir: 'asc'},
181                     {name: 'acpl_name', dir: 'asc'},
182                     {name: 'ancp_label', dir: 'asc'}, // NOTE: API typo "ancp"
183                     {name: 'cn_label_sortkey', dir: 'asc'},
184                     {name: 'ancs_label', dir: 'asc'} // NOTE: API typo "ancs"
185                 ];
186
187             } else {
188                 this.defaultSort = [{name: 'request_time', dir: 'asc'}];
189             }
190         }
191
192         this.gridDataSource.getRows = (pager: Pager, sort: any[]) => {
193
194             if (!this.hidePickupLibFilter && !this.plCompLoaded) {
195                 // When the pickup lib selector is active, avoid any
196                 // data fetches until it has settled on a default value.
197                 // Once the final value is applied, its onchange will
198                 // fire and we'll be back here with plCompLoaded=true.
199                 return of([]);
200             }
201
202             sort = sort.length > 0 ? sort : this.defaultSort;
203             return this.fetchHolds(pager, sort);
204         };
205
206         // Text-ify function for cells that use display templates.
207         this.cellTextGenerator = {
208             title: row => row.title,
209             cp_barcode: row => (row.cp_barcode == null) ? '' : row.cp_barcode,
210             ucard_barcode: row => row.ucard_barcode
211         };
212     }
213
214     // Returns true after all data/settings/etc required to render the
215     // grid have been fetched.
216     initComplete(): boolean {
217         return this.enablePreFetch !== null;
218     }
219
220     pickupLibChanged(org: IdlObject) {
221         this.pickupLib = org;
222         this.holdsGrid.reload();
223     }
224
225     pullListOrgChanged(org: IdlObject) {
226         this.pullListOrg = org.id();
227         this.holdsGrid.reload();
228     }
229
230     preFetchHolds(apply: boolean) {
231         this.enablePreFetch = apply;
232
233         if (apply) {
234             setTimeout(() => this.holdsGrid.reload());
235         }
236
237         if (this.preFetchSetting) {
238             // fire and forget
239             this.store.setItem(this.preFetchSetting, apply);
240         }
241     }
242
243     applyFilters(): any {
244
245         const filters: any = {};
246
247         if (this.pullListOrg) {
248             filters.cancel_time = null;
249             filters.capture_time = null;
250             filters.frozen = 'f';
251
252             // There are aliases for these (cp_status, cp_circ_lib),
253             // but the API complains when I use them.
254             filters['cp.status'] = [0, 7];
255             filters['cp.circ_lib'] = this.pullListOrg;
256
257             return filters;
258         }
259
260         if (this._showFulfilledSince) {
261             filters.fulfillment_time = this._showFulfilledSince.toISOString();
262         } else {
263             filters.fulfillment_time = null;
264         }
265
266         if (this._showCanceledSince) {
267             filters.cancel_time = this._showCanceledSince.toISOString();
268         } else {
269             filters.cancel_time = null;
270         }
271
272         if (this.hopeless) {
273           filters['hopeless_holds'] = {
274             'start_date' : this._showHopelessAfter
275               ? (
276                   // FIXME -- consistency desired, string or object
277                   typeof this._showHopelessAfter === 'object'
278                   ? this._showHopelessAfter.toISOString()
279                   : this._showHopelessAfter
280                 )
281               : '1970-01-01T00:00:00.000Z',
282             'end_date' : this._showHopelessBefore
283               ? (
284                   // FIXME -- consistency desired, string or object
285                   typeof this._showHopelessBefore === 'object'
286                   ? this._showHopelessBefore.toISOString()
287                   : this._showHopelessBefore
288                 )
289               : (new Date()).toISOString()
290           };
291         }
292
293         if (this.pickupLib) {
294             filters.pickup_lib =
295                 this.org.descendants(this.pickupLib, true);
296         }
297
298         if (this._recordId) {
299             filters.record_id = this._recordId;
300         }
301
302         if (this._userId) {
303             filters.usr_id = this._userId;
304         }
305
306         return filters;
307     }
308
309     fetchHolds(pager: Pager, sort: any[]): Observable<any> {
310
311         // We need at least one filter.
312         if (!this._recordId && !this.pickupLib && !this._userId && !this.pullListOrg) {
313             return of([]);
314         }
315
316         const filters = this.applyFilters();
317
318         const orderBy: any = [];
319         if (sort.length > 0) {
320             sort.forEach(obj => {
321                 const subObj: any = {};
322                 subObj[obj.name] = {dir: obj.dir, nulls: 'last'};
323                 orderBy.push(subObj);
324             });
325         }
326
327         const limit = this.enablePreFetch ? null : pager.limit;
328         const offset = this.enablePreFetch ? 0 : pager.offset;
329
330         let observer: Observer<any>;
331         const observable = new Observable(obs => observer = obs);
332
333         this.progressDialog.open();
334         this.progressDialog.update({value: 0, max: 1});
335         let first = true;
336         let loadCount = 0;
337         this.net.request(
338             'open-ils.circ',
339             'open-ils.circ.hold.wide_hash.stream',
340             this.auth.token(), filters, orderBy, limit, offset
341         ).subscribe(
342             holdData => {
343
344                 if (first) { // First response is the hold count.
345                     this.holdsCount = Number(holdData);
346                     first = false;
347
348                 } else { // Subsequent responses are hold data blobs
349
350                     this.progressDialog.update(
351                         {value: ++loadCount, max: this.holdsCount});
352
353                     observer.next(holdData);
354                 }
355             },
356             err => {
357                 this.progressDialog.close();
358                 observer.error(err);
359             },
360             ()  => {
361                 this.progressDialog.close();
362                 observer.complete();
363             }
364         );
365
366         return observable;
367     }
368
369     metaRecordHoldsSelected(rows: IdlObject[]) {
370         let found = false;
371         rows.forEach( row => {
372            if (row.hold_type === 'M') {
373              found = true;
374            }
375         });
376         return found;
377     }
378
379     nonTitleHoldsSelected(rows: IdlObject[]) {
380         let found = false;
381         rows.forEach( row => {
382            if (row.hold_type !== 'T') {
383              found = true;
384            }
385         });
386         return found;
387     }
388
389     showDetails(rows: any[]) {
390         this.showDetail(rows[0]);
391     }
392
393     showDetail(row: any) {
394         if (row) {
395             this.mode = 'detail';
396             this.detailHold = row;
397         }
398     }
399
400     showManager(rows: any[]) {
401         if (rows.length) {
402             this.mode = 'manage';
403             this.editHolds = rows.map(r => r.id);
404         }
405     }
406
407     handleModify(rowsModified: boolean) {
408         this.mode = 'list';
409
410         if (rowsModified) {
411             // give the grid a chance to render then ask it to reload
412             setTimeout(() => this.holdsGrid.reload());
413         }
414     }
415
416
417
418     showRecentCircs(rows: any[]) {
419         const copyIds = Array.from(new Set( rows.map(r => r.cp_id).filter( cp_id => Boolean(cp_id)) ));
420         copyIds.forEach( copyId => {
421             const url =
422                 '/eg/staff/cat/item/' + copyId + '/circ_list';
423             window.open(url, '_blank');
424         });
425     }
426
427     showPatron(rows: any[]) {
428         const usrIds = Array.from(new Set( rows.map(r => r.usr_id).filter( usr_id => Boolean(usr_id)) ));
429         usrIds.forEach( usrId => {
430             const url =
431                 '/eg/staff/circ/patron/' + usrId + '/checkout';
432             window.open(url, '_blank');
433         });
434     }
435
436     showOrder(rows: any[]) {
437         // Doesn't work in Typescript currently without compiler option:
438         //   const bibIds = [...new Set( rows.map(r => r.record_id) )];
439         const bibIds = Array.from(
440           new Set( rows.filter(r => r.hold_type !== 'M').map(r => r.record_id) ));
441         bibIds.forEach( bibId => {
442           const url =
443               '/eg/staff/acq/legacy/lineitem/related/' + bibId + '?target=bib';
444           window.open(url, '_blank');
445         });
446     }
447
448     addVolume(rows: any[]) {
449         const bibIds = Array.from(
450           new Set( rows.filter(r => r.hold_type !== 'M').map(r => r.record_id) ));
451         bibIds.forEach( bibId => {
452           this.holdings.spawnAddHoldingsUi(bibId);
453         });
454     }
455
456     showTitle(rows: any[]) {
457         const bibIds = Array.from(new Set( rows.map(r => r.record_id) ));
458         bibIds.forEach( bibId => {
459           // const url = '/eg/staff/cat/catalog/record/' + bibId;
460           const url = '/eg2/staff/catalog/record/' + bibId;
461           window.open(url, '_blank');
462         });
463     }
464
465     showManageDialog(rows: any[]) {
466         const holdIds = rows.map(r => r.id).filter(id => Boolean(id));
467         if (holdIds.length > 0) {
468             this.manageDialog.holdIds = holdIds;
469             this.manageDialog.open({size: 'lg'}).subscribe(
470                 rowsModified => {
471                     if (rowsModified) {
472                         this.holdsGrid.reload();
473                     }
474                 }
475             );
476         }
477     }
478
479     showTransferDialog(rows: any[]) {
480         const holdIds = rows.filter(r => r.hold_type === 'T').map(r => r.id).filter(id => Boolean(id));
481         if (holdIds.length > 0) {
482             this.transferDialog.holdIds = holdIds;
483             this.transferDialog.open({}).subscribe(
484                 rowsModified => {
485                     if (rowsModified) {
486                         this.holdsGrid.reload();
487                     }
488                 }
489             );
490         }
491     }
492
493     async showMarkDamagedDialog(rows: any[]) {
494         const copyIds = rows.map(r => r.cp_id).filter(id => Boolean(id));
495         if (copyIds.length === 0) { return; }
496
497         let rowsModified = false;
498
499         const markNext = async(ids: number[]) => {
500             if (ids.length === 0) {
501                 return Promise.resolve();
502             }
503
504             this.markDamagedDialog.copyId = ids.pop();
505             return this.markDamagedDialog.open({size: 'lg'}).subscribe(
506                 ok => {
507                     if (ok) { rowsModified = true; }
508                     return markNext(ids);
509                 },
510                 dismiss => markNext(ids)
511             );
512         };
513
514         await markNext(copyIds);
515         if (rowsModified) {
516             this.holdsGrid.reload();
517         }
518     }
519
520     showMarkMissingDialog(rows: any[]) {
521         const copyIds = rows.map(r => r.cp_id).filter(id => Boolean(id));
522         if (copyIds.length > 0) {
523             this.markMissingDialog.copyIds = copyIds;
524             this.markMissingDialog.open({}).subscribe(
525                 rowsModified => {
526                     if (rowsModified) {
527                         this.holdsGrid.reload();
528                     }
529                 }
530             );
531         }
532     }
533
534     showMarkDiscardDialog(rows: any[]) {
535         const copyIds = rows.map(r => r.cp_id).filter(id => Boolean(id));
536         if (copyIds.length > 0) {
537             this.markDiscardDialog.copyIds = copyIds;
538             this.markDiscardDialog.open({}).subscribe(
539                 rowsModified => {
540                     if (rowsModified) {
541                         this.holdsGrid.reload();
542                     }
543                 }
544             );
545         }
546     }
547
548
549     showRetargetDialog(rows: any[]) {
550         const holdIds = rows.map(r => r.id).filter(id => Boolean(id));
551         if (holdIds.length > 0) {
552             this.retargetDialog.holdIds = holdIds;
553             this.retargetDialog.open({}).subscribe(
554                 rowsModified => {
555                     if (rowsModified) {
556                         this.holdsGrid.reload();
557                     }
558                 }
559             );
560         }
561     }
562
563     showCancelDialog(rows: any[]) {
564         const holdIds = rows.map(r => r.id).filter(id => Boolean(id));
565         if (holdIds.length > 0) {
566             this.cancelDialog.holdIds = holdIds;
567             this.cancelDialog.open({}).subscribe(
568                 rowsModified => {
569                     if (rowsModified) {
570                         this.holdsGrid.reload();
571                     }
572                 }
573             );
574         }
575     }
576
577     printHolds() {
578         // Request a page with no limit to get all of the wide holds for
579         // printing.  Call requestPage() directly instead of grid.reload()
580         // since we may already have the data.
581
582         const pager = new Pager();
583         pager.offset = 0;
584         pager.limit = null;
585
586         if (this.gridDataSource.sort.length === 0) {
587             this.gridDataSource.sort = this.defaultSort;
588         }
589
590         this.gridDataSource.requestPage(pager).then(() => {
591             if (this.gridDataSource.data.length > 0) {
592                 this.printer.print({
593                     templateName: this.printTemplate || 'holds_for_bib',
594                     contextData: this.gridDataSource.data,
595                     printContext: 'default'
596                 });
597             }
598         });
599     }
600
601     isCopyHold(holdData: any): boolean {
602         return holdData.hold_type.match(/C|R|F/) !== null;
603     }
604 }
605
606
607
608