]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.service.ts
LP1889128 Staffcat holds recipient / multi-hold repairs
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / catalog / catalog.service.ts
1 import {Injectable, EventEmitter} from '@angular/core';
2 import {Router, ActivatedRoute} from '@angular/router';
3 import {IdlObject} from '@eg/core/idl.service';
4 import {OrgService} from '@eg/core/org.service';
5 import {CatalogService} from '@eg/share/catalog/catalog.service';
6 import {CatalogUrlService} from '@eg/share/catalog/catalog-url.service';
7 import {CatalogSearchContext} from '@eg/share/catalog/search-context';
8 import {BibRecordSummary} from '@eg/share/catalog/bib-record.service';
9 import {PatronService} from '@eg/staff/share/patron/patron.service';
10
11 /**
12  * Shared bits needed by the staff version of the catalog.
13  */
14
15 @Injectable()
16 export class StaffCatalogService {
17
18     searchContext: CatalogSearchContext;
19     routeIndex = 0;
20     defaultSearchOrg: IdlObject;
21     defaultSearchLimit: number;
22     // Track the current template through route changes.
23     selectedTemplate: string;
24
25     // Display the Exclude Electronic checkbox
26     showExcludeElectronic = false;
27
28     // TODO: does unapi support pref-lib for result-page copy counts?
29     prefOrg: IdlObject;
30
31     // Default search tab
32     defaultTab: string;
33
34     // Patron barcode we hope to place a hold for.
35     holdForBarcode: string;
36     // User object for above barcode.
37     holdForUser: IdlObject;
38
39     // Emit that the value has changed so components can detect
40     // the change even when the component is not itself digesting
41     // new values.
42     holdForChange: EventEmitter<void> = new EventEmitter<void>();
43
44     // Cache the currently selected detail record (i.g. catalog/record/123)
45     // summary so the record detail component can avoid duplicate fetches
46     // during record tab navigation.
47     currentDetailRecordSummary: any;
48
49     // Add digital bookplate to search options.
50     enableBookplates = false;
51
52     constructor(
53         private router: Router,
54         private route: ActivatedRoute,
55         private org: OrgService,
56         private cat: CatalogService,
57         private patron: PatronService,
58         private catUrl: CatalogUrlService
59     ) { }
60
61     createContext(): void {
62         // Initialize the search context from the load-time URL params.
63         // Do this here so the search form and other context data are
64         // applied on every page, not just the search results page.  The
65         // search results pages will handle running the actual search.
66         this.searchContext =
67             this.catUrl.fromUrlParams(this.route.snapshot.queryParamMap);
68
69         this.holdForBarcode = this.route.snapshot.queryParams['holdForBarcode'];
70
71         if (this.holdForBarcode) {
72             this.patron.getByBarcode(this.holdForBarcode)
73             .then(user => {
74                 this.holdForUser = user;
75                 this.holdForChange.emit();
76             });
77         }
78
79         this.searchContext.org = this.org; // service, not searchOrg
80         this.searchContext.isStaff = true;
81         this.applySearchDefaults();
82     }
83
84     clearHoldPatron() {
85         this.holdForUser = null;
86         this.holdForBarcode = null;
87         this.holdForChange.emit();
88     }
89
90     cloneContext(context: CatalogSearchContext): CatalogSearchContext {
91         const params: any = this.catUrl.toUrlParams(context);
92         return this.catUrl.fromUrlHash(params);
93     }
94
95     applySearchDefaults(): void {
96         if (!this.searchContext.searchOrg) {
97             this.searchContext.searchOrg =
98                 this.defaultSearchOrg || this.org.root();
99         }
100
101         if (!this.searchContext.pager.limit) {
102             this.searchContext.pager.limit = this.defaultSearchLimit || 10;
103         }
104     }
105
106     /**
107      * Redirect to the search results page while propagating the current
108      * search paramters into the URL.  Let the search results component
109      * execute the actual search.
110      */
111     search(): void {
112         if (!this.searchContext.isSearchable()) { return; }
113
114         const params = this.catUrl.toUrlParams(this.searchContext);
115
116         // Force a new search every time this method is called, even if
117         // it's the same as the active search.  Since router navigation
118         // exits early when the route + params is identical, add a
119         // random token to the route params to force a full navigation.
120         // This also resolves a problem where only removing secondary+
121         // versions of a query param fail to cause a route navigation.
122         // (E.g. going from two query= params to one).  Investigation
123         // pending.
124         params.ridx = '' + this.routeIndex++;
125
126         this.router.navigate(
127           ['/staff/catalog/search'], {queryParams: params});
128     }
129
130     /**
131      * Redirect to the browse results page while propagating the current
132      * browse paramters into the URL.  Let the browse results component
133      * execute the actual browse.
134      */
135     browse(): void {
136         if (!this.searchContext.browseSearch.isSearchable()) { return; }
137         const params = this.catUrl.toUrlParams(this.searchContext);
138
139         // Force a new browse every time this method is called, even if
140         // it's the same as the active browse.  Since router navigation
141         // exits early when the route + params is identical, add a
142         // random token to the route params to force a full navigation.
143         // This also resolves a problem where only removing secondary+
144         // versions of a query param fail to cause a route navigation.
145         // (E.g. going from two query= params to one).
146         params.ridx = '' + this.routeIndex++;
147
148         this.router.navigate(
149             ['/staff/catalog/browse'], {queryParams: params});
150     }
151
152     // Call number browse.
153     // Redirect to cn browse page and let its component perform the search
154     cnBrowse(): void {
155         if (!this.searchContext.cnBrowseSearch.isSearchable()) { return; }
156         const params = this.catUrl.toUrlParams(this.searchContext);
157         params.ridx = '' + this.routeIndex++; // see comments above
158         this.router.navigate(['/staff/catalog/cnbrowse'], {queryParams: params});
159     }
160
161     // Params to genreate a new author search based on a reset
162     // clone of the current page params.
163     getAuthorSearchParams(summary: BibRecordSummary): any {
164         const tmpContext = this.cloneContext(this.searchContext);
165         tmpContext.reset();
166         tmpContext.termSearch.fieldClass = ['author'];
167         tmpContext.termSearch.query = [summary.display.author];
168         return this.catUrl.toUrlParams(tmpContext);
169     }
170 }
171
172