]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/services/record.js
LP#1251394 egBibDisplay service examples
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / cat / services / record.js
1 /**
2  * Simple directive for rending the HTML view of a MARC record.
3  *
4  * <eg-record-html record-id="myRecordIdScopeVariable"></eg-record-id>
5  * OR
6  * <eg-record-html marc-xml="myMarcXmlVariable"></eg-record-html>
7  *
8  * The value of myRecordIdScopeVariable is watched internally and the 
9  * record is updated to match.
10  */
11 angular.module('egCoreMod')
12
13 .directive('egRecordHtml', function() {
14     return {
15         restrict : 'AE',
16         scope : {
17             recordId : '=',
18             marcXml  : '@',
19         },
20         link : function(scope, element, attrs) {
21             scope.element = angular.element(element);
22
23             // kill refs to destroyed DOM elements
24             element.bind("$destroy", function() {
25                 delete scope.element;
26             });
27         },
28         controller : 
29                    ['$scope','egCore',
30             function($scope , egCore) {
31
32                 function loadRecordHtml() {
33                     egCore.net.request(
34                         'open-ils.search',
35                         'open-ils.search.biblio.record.html',
36                         $scope.recordId,
37                         false,
38                         $scope.marcXml
39                     ).then(function(html) {
40                         if (!html) return;
41
42                         // Remove those pesky non-i8n labels / actions.
43                         // Note: for printing, use the browser print page
44                         // option.  The end result is the same.
45                         html = html.replace(
46                             /<button onclick="window.print(.*?)<\/button>/,'');
47                         html = html.replace(/<title>(.*?)<\/title>/,'');
48
49                         // remove reference to nonexistant CSS file
50                         html = html.replace(/<link(.*?)\/>/,'');
51
52                         $scope.element.html(html);
53                     });
54                 }
55
56                 $scope.$watch('recordId', 
57                     function(newVal, oldVal) {
58                         if (newVal && newVal !== oldVal) {
59                             loadRecordHtml();
60                         }
61                     }
62                 );
63                 $scope.$watch('marcXml', 
64                     function(newVal, oldVal) {
65                         if (newVal && newVal !== oldVal) {
66                             loadRecordHtml();
67                         }
68                     }
69                 );
70
71                 if ($scope.recordId || $scope.marcXml) 
72                     loadRecordHtml();
73             }
74         ]
75     }
76 })
77
78 .directive('egRecordBreaker', function() {
79     return {
80         restrict : 'AE',
81         template : '<pre>{{breaker}}</pre>',
82         scope : {
83             recordId : '=',
84             marcXml  : '=',
85         },
86         link : function(scope, element, attrs) {
87             scope.element = angular.element(element);
88
89             // kill refs to destroyed DOM elements
90             element.bind("$destroy", function() {
91                 delete scope.element;
92             });
93         },
94         controller : 
95                    ['$scope','egCore',
96             function($scope , egCore) {
97
98                 function loadRecordBreaker() {
99                     var xml;
100                     if ($scope.marcXml) {
101                         $scope.breaker = new MARC21.Record({ marcxml : $scope.marcXml }).toBreaker();
102                     } else {
103                         egCore.pcrud.retrieve('bre', $scope.recordId)
104                         .then(function(rec) {
105                             $scope.breaker = new MARC21.Record({ marcxml : rec.marc() }).toBreaker();
106                         });
107                     }
108                 }
109
110                 $scope.$watch('recordId', 
111                     function(newVal, oldVal) {
112                         if (newVal && newVal !== oldVal) {
113                             loadRecordBreaker();
114                         }
115                     }
116                 );
117                 $scope.$watch('marcXml', 
118                     function(newVal, oldVal) {
119                         if (newVal && newVal !== oldVal) {
120                             loadRecordBreaker();
121                         }
122                     }
123                 );
124
125                 if ($scope.recordId || $scope.marcXml) 
126                     loadRecordBreaker();
127             }
128         ]
129     }
130 })
131
132 /*
133  * A record='foo' attribute is required as a storage location of the 
134  * retrieved record
135  */
136 .directive('egRecordSummary', function() {
137     return {
138         restrict : 'AE',
139         scope : {
140             recordId : '=',
141             record : '=',
142             noMarcLink : '@'
143         },
144         templateUrl : './cat/share/t_record_summary',
145         controller : 
146                    ['$scope','egCore','$sce',
147             function($scope , egCore , $sce) {
148
149                 function loadRecord() {
150                     egCore.pcrud.retrieve('bre', $scope.recordId, {
151                         flesh : 1,
152                         flesh_fields : {
153                             bre : ['creator','editor']
154                         }
155                     }).then(function(rec) {
156                         rec.owner(egCore.org.get(rec.owner()));
157                         $scope.record = rec;
158                     });
159                     egCore.net.request(
160                         'open-ils.search',
161                         'open-ils.search.biblio.record.mods_slim.retrieve.authoritative',
162                         $scope.recordId
163                     ).then(function(mvr) {
164                         $scope.mvr = mvr;
165                     });
166                     $scope.bib_cn = null;
167                     $scope.bib_cn_tooltip = '';
168                     var label_class = 1;
169                     if (egCore.env.aous) 
170                         label_class = egCore.env.aous['cat.default_classification_scheme'] || 1;
171                     egCore.net.request(
172                         'open-ils.cat',
173                         'open-ils.cat.biblio.record.marc_cn.retrieve',
174                         $scope.recordId,
175                         label_class
176                     ).then(function(cn_array) {
177                         var tooltip = '';
178                         if (cn_array.length > 0) {
179                             for (var field in cn_array[0]) {
180                                 $scope.bib_cn = cn_array[0][field];
181                             }
182                             for (var i in cn_array) {
183                                 for (var field in cn_array[i]) {
184                                     tooltip += 
185                                         field + ' : ' + cn_array[i][field] + '<br>';
186                                 }
187                             }
188                             $scope.bib_cn_tooltip = $sce.trustAsHtml(tooltip);
189                         }
190                     });
191                 }
192
193                 $scope.$watch('recordId', 
194                     function(newVal, oldVal) {
195                         if (newVal && newVal !== oldVal) {
196                             loadRecord();
197                         }
198                     }
199                 );
200
201
202                 if ($scope.recordId) 
203                     loadRecord();
204
205                 $scope.toggle_expand_summary = function() {
206                     if ($scope.collapseRecordSummary) {
207                         $scope.collapseRecordSummary = false;
208                         egCore.hatch.removeItem('eg.cat.record.summary.collapse');
209                     } else {
210                         $scope.collapseRecordSummary = true;
211                         egCore.hatch.setItem('eg.cat.record.summary.collapse', true);
212                     }
213                 }
214             
215                 $scope.collapse_summary = function() {
216                     return $scope.collapseRecordSummary;
217                 }
218             
219                 egCore.hatch.getItem('eg.cat.record.summary.collapse')
220                 .then(function(val) {$scope.collapseRecordSummary = Boolean(val)});
221
222             }
223         ]
224     }
225 })
226
227 /**
228  * Utility functions for translating bib record display fields into
229  * various formats / structures.
230  *
231  * Note that 'mwde' objects (which are proper IDL objects) only contain
232  * the prescribed fields from the IDL (and database view), while the
233  * 'mfde' hash-based objects contain all configured display fields,
234  * including local/custom fields.
235  *
236  * Example:
237  *
238  *  --
239  *  // Display well-known fields
240  *
241  *  $scope.record = copy.call_number().record();
242  *
243  *  // translate wide display entry values inline
244  *  egBibDisplay.mwdeJSONToJS($scope.record.wide_display_entry());
245  *
246  *  <div>Title:</div>
247  *  <div>{{record.wide_display_entry().title()}}</div>
248  *
249  *  ---
250  *  //  Display any field using known keys
251  *
252  *  $scope.all_display_fields = 
253  *      egBibDisplay.mfdeToHash(record.flat_display_entries());
254  *
255  *  <div>Title:</div>
256  *  <div>{{all_display_fields.title}}</div>
257  *
258  *  ---
259  *  // Display all fields dynamically, using confgured labels
260  *
261  *  $scope.all_display_fields_with_meta = 
262  *      egBibDisplay.mfdeToMetaHash(record.flat_display_entries());
263  *
264  *  <div ng-repeat="(key, content) in all_display_fields_with_meta">
265  *    <div>Field Label</div><div>{{content.label}}</div>
266  *    <div ng-if="content.multi == 't'">
267  *      <div ng-repeat="val in content.value">
268  *        <div>Field Value</div><div>{{val}}</div>
269  *      </div>
270  *    </div>
271  *    <div ng-if="content.multi == 'f'">
272  *      <div>Field Value</div><div>{{content.value}}</div>
273  *    </div>
274  *  </div>
275  *
276  */
277 .factory('egBibDisplay', ['$q', 'egCore', function($q, egCore) {
278     var service = {};
279
280     /**
281      * Converts JSON-encoded values within a mwde object to Javascript
282      * native strings, numbers, and arrays.
283      */
284     service.mwdeJSONToJS = function(entry) {
285         angular.forEach(egCore.idl.classes.mwde.fields, function(f) {
286             if (f.virtual) return;
287             entry[f.name](JSON.parse(entry[f.name]()));
288         });
289     }
290
291     /**
292      * Converts a list of 'mfde' entry objects to a simple key=>value hash.
293      * Non-multi values are strings or numbers.
294      * Multi values are arrays of strings or numbers.
295      */
296     service.mfdeToHash = function(entries) {
297         var hash = service.mfdeToMetaHash(entries);
298         angular.forEach(hash, 
299             function(sub_hash, name) { hash[name] = sub_hash.value });
300         return hash;
301     }
302
303     /**
304      * Converts a list of 'mfde' entry objects to a nested hash like so:
305      * {name => field_name, label => field_label, value => scalar_or_array}
306      * The scalar_or_array value is a string/number or an array of
307      * string/numbers
308      */
309     service.mfdeToMetaHash = function(entries) {
310         var hash = {};
311         angular.forEach(entries, function(entry) {
312
313             if (!hash[entry.name()]) {
314                 hash[entry.name()] = {
315                     name : entry.name(),
316                     label : entry.label(),
317                     multi : entry.multi() == 't',
318                     value : entry.multi() == 't' ? [] : null
319                 }
320             }
321
322             if (entry.multi() == 't') {
323                 hash[entry.name()].value.push(entry.value());
324             } else {
325                 hash[entry.name()].value = entry.value();
326             }
327         });
328
329         return hash;
330     }
331
332     return service;
333 }])