]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/serial/sdist_editor.js
Reduce hard-coded strings in Serial Control interfaces
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / serial / sdist_editor.js
1 dump('entering serial/sdist_editor.js\n');
2 // vim:noet:sw=4:ts=4:
3
4 JSAN.use('serial.editor_base');
5
6 if (typeof serial == 'undefined') serial = {};
7 serial.sdist_editor = function (params) {
8     try {
9         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
10         JSAN.use('util.error'); this.error = new util.error();
11         JSAN.use('OpenILS.data'); this.data = new OpenILS.data(); this.data.init({'via':'stash'});
12         JSAN.use('util.network'); this.network = new util.network();
13     } catch(E) {
14         dump('serial/sdist_editor: ' + E + '\n');
15     }
16
17     /* This keeps track of what fields have been edited for styling purposes */
18     this.changed = {};
19
20     /* This holds the original values for prepopulating the field editors */
21     this.editor_values = {};
22
23     // setup sre arrays
24     this.sre_id_map = {};
25     this.sres_ou_map = {};
26     var parent_g = window.parent.g;
27     if (parent_g.mfhd) {
28         var mfhd_details = parent_g.mfhd.details;
29         for (var i = 0; i < mfhd_details.length; i++) {
30             var mfhd_detail = {};
31             for (j in mfhd_details[i]) {
32                 mfhd_detail[j] = mfhd_details[i][j];
33             }
34             mfhd_detail.label = mfhd_detail.label + ' (' + (mfhd_detail.entryNum + 1) + ')';
35             var sre_id = mfhd_detail.id;
36             var org_unit_id = mfhd_detail.owning_lib;
37             this.sre_id_map[sre_id] = mfhd_detail;
38             if (!this.sres_ou_map[org_unit_id]) {
39                 this.sres_ou_map[org_unit_id] = [];
40             }
41             this.sres_ou_map[org_unit_id].push(mfhd_detail);
42         }
43     }
44 };
45
46 serial.sdist_editor.prototype = {
47     // we could do this with non-standard '__proto__' property instead
48     'editor_base_init' : serial.editor_base.editor_base_init,
49     'editor_base_apply' : serial.editor_base.editor_base_apply,
50     'editor_base_save' : serial.editor_base.editor_base_save,
51
52     'fm_type' : 'sdist',
53     'fm_type_plural' : 'sdists',
54     'can_have_notes' : true,
55
56     'init' : function (params) {
57         var obj = this;
58
59         params.retrieve_function = 'FM_SDIST_FLESHED_BATCH_RETRIEVE.authoritative';
60
61         obj.editor_base_init(params);
62
63         obj.multi_org_edit = false;
64         var org_unit = obj.sdists[0].holding_lib();
65         for (var i = 1; i < obj.sdists.length; i++) {
66             if (obj.sdists[i].holding_lib() != org_unit) {
67                 obj.multi_org_edit = true;
68                 break;
69             }
70         }        
71
72         /* Do it */
73         obj.summarize( obj.sdists );
74         obj.render();
75     },
76
77     /******************************************************************************************************/
78     /* Restore backup copies */
79
80     'reset' :  serial.editor_base.editor_base_reset,
81
82     /******************************************************************************************************/
83     /* Apply a value to a specific field on all the copies being edited */
84
85     'apply' : function(field,value) {
86         var obj = this;
87
88         // null out call number if the holding lib is changed
89         obj.holding_lib_changed = (field == 'holding_lib');
90         var loop_func = function(sdist) {
91             if (obj.holding_lib_changed) {
92                 var field_name_list = ['bind_call_number','receive_call_number','bind_unit_template','receive_unit_template','record_entry'];
93                 for (var i = 0; i < field_name_list.length; i++) {
94                     sdist[field_name_list[i]](null);
95                     obj.changed[fieldmapper.IDL.fmclasses.sdist.field_map[field_name_list[i]].label] = true;
96                 }
97             }
98         }
99         obj.editor_base_apply(field, value, loop_func);
100         obj.holding_lib_changed = false;
101     },
102
103     /******************************************************************************************************/
104
105     'render_call_number' : function(cn) {
106         var obj = this;
107         if (cn == null) { // true for both 'null' AND undefined
108             return '';
109         } else if (typeof cn != 'object') {
110             return obj.acn_label_map[cn];
111         } else {
112             return cn.label()
113         }
114     },
115
116     'render_unit_template' : function(ut) {
117         var obj = this;
118         if (ut == null) { // true for both 'null' AND undefined
119             return '';
120         } else if (typeof ut != 'object') {
121             return obj.act_name_map[ut];
122         } else {
123             return ut.name()
124         }
125     },
126
127     'render_record_entry' : function(sre) {
128         var obj = this;
129         var sre_id;
130         if (sre == null) { // true for both 'null' AND undefined
131             return '';
132         } else if (typeof sre != 'object') {
133             sre_id = sre;
134         } else {
135             sre_id = sre.id();
136         }
137         return obj.sre_id_map[sre_id].label;
138     },
139
140     'init_panes' : function () {
141         var obj = this;
142         obj.panes_and_field_names = {
143
144         /* These get shown in the left panel */
145         '_editor_left_pane' :
146         [
147             [
148                 'id',
149                 { 
150                     //input: 'c = function(v){ obj.apply("distribution",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
151
152                 }
153             ],
154             [
155                 'label',
156                 { 
157                     input: 'c = function(v){ obj.apply("label",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.setAttribute("value",obj.editor_values.label); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
158                     value_key: 'label'
159                 }
160             ],
161             [
162                 'unit_label_prefix',
163                 {
164                     input: 'c = function(v){ obj.apply("unit_label_prefix",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.setAttribute("value",obj.editor_values.unit_label_prefix); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
165                     value_key: 'unit_label_prefix'
166                 }
167             ],
168             [
169                 'unit_label_suffix',
170                 { 
171                     input: 'c = function(v){ obj.apply("unit_label_suffix",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.setAttribute("value",obj.editor_values.unit_label_suffix); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
172                     value_key: 'unit_label_suffix'
173                 }
174             ],
175         ],
176         /* These get shown in the right panel */
177             '_editor_right_pane' :
178         [
179             [
180                 'holding_lib',
181                 {
182                     render: 'typeof fm.holding_lib() == "object" ? fm.holding_lib().shortname() : obj.data.hash.aou[ fm.holding_lib() ].shortname()',
183                     input: 'c = function(v){ if (obj.editor_values.holding_lib != v) obj.apply("holding_lib",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( obj.data.list.aou, function(myobj) { var sname = myobj.shortname(); for (i = sname.length; i < 20; i++) sname += " "; return [ myobj.name() ? sname + " " + myobj.name() : myobj.shortname(), myobj.id(), ( ! get_bool( obj.data.hash.aout[ myobj.ou_type() ].can_have_vols() ) ), ( obj.data.hash.aout[ myobj.ou_type() ].depth() * 2), ]; }), obj.data.list.au[0].ws_ou()); x.setAttribute("value",obj.editor_values.holding_lib); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
184                     value_key: 'holding_lib',
185                     dropdown_key: 'typeof fm.holding_lib() == "object" ? fm.holding_lib().id() : fm.holding_lib()',
186                 }
187             ],
188         ],
189         /* These get shown in the right 'library-specific-options' panel */
190         '_editor_lso_pane' :
191         [
192             [
193                 'record_entry',
194                 {
195                     render: 'obj.render_record_entry(fm.record_entry())',
196                     input: 'if(!obj.multi_org_edit) { c = function(v){ obj.apply("record_entry",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( obj.get_sre_details_list(), function(obj) { return [ obj.label, obj.id ]; }).sort()); x.setAttribute("value",obj.editor_values.record_entry); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false); }',
197                     value_key: 'record_entry',
198                     dropdown_key: 'fm.record_entry() == null ? null : typeof fm.record_entry() == "object" ? fm.record_entry().id() : fm.record_entry()'
199                 }
200             ],
201             [
202                 'receive_call_number',
203                 {
204                     render: 'obj.render_call_number(fm.receive_call_number())',
205                     input: 'if(!obj.multi_org_edit) { c = function(v){ obj.apply("receive_call_number",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( obj.get_acn_list(), function(obj) { return [ obj.label(), obj.id() ]; }).sort()); x.setAttribute("value",obj.editor_values.receive_call_number); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false); }',
206                     value_key: 'receive_call_number',
207                     dropdown_key: 'fm.receive_call_number() == null ? null : typeof fm.receive_call_number() == "object" ? fm.receive_call_number().id() : fm.receive_call_number()'
208                 }
209             ],
210             [
211                 'bind_call_number',
212                 {
213                     render: 'obj.render_call_number(fm.bind_call_number())',
214                     input: 'if(!obj.multi_org_edit) { c = function(v){ obj.apply("bind_call_number",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( obj.get_acn_list(), function(obj) { return [ obj.label(), obj.id() ]; }).sort()); x.setAttribute("value",obj.editor_values.bind_call_number); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false); }',
215                     value_key: 'bind_call_number',
216                     dropdown_key: 'fm.bind_call_number() == null ? null : typeof fm.bind_call_number() == "object" ? fm.bind_call_number().id() : fm.bind_call_number()'
217                 }
218             ],
219             [
220                 'receive_unit_template',
221                 {
222                     render: 'obj.render_unit_template(fm.receive_unit_template())',
223                     input: 'if(!obj.multi_org_edit) { c = function(v){ obj.apply("receive_unit_template",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( obj.get_act_list(), function(obj) { return [ obj.name(), obj.id() ]; }).sort()); x.setAttribute("value",obj.editor_values.receive_unit_template); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false); }',
224                     value_key: 'receive_unit_template',
225                     dropdown_key: 'fm.receive_unit_template() == null ? null : typeof fm.receive_unit_template() == "object" ? fm.receive_unit_template().id() : fm.receive_unit_template()'
226                 }
227             ],
228             [
229                 'bind_unit_template',
230                 {
231                     render: 'obj.render_unit_template(fm.bind_unit_template())',
232                     input: 'if(!obj.multi_org_edit) { c = function(v){ obj.apply("bind_unit_template",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( obj.get_act_list(), function(obj) { return [ obj.name(), obj.id() ]; }).sort()); x.setAttribute("value",obj.editor_values.bind_unit_template); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false); }',
233                     value_key: 'bind_unit_template',
234                     dropdown_key: 'fm.bind_unit_template() == null ? null : typeof fm.bind_unit_template() == "object" ? fm.bind_unit_template().id() : fm.bind_unit_template()'
235                 }
236             ],
237         ],
238
239         };
240         for (i in obj.panes_and_field_names) {
241             obj.panes_and_field_names[obj.xul_id_prefix + i] = obj.panes_and_field_names[i];
242         }
243     },
244
245     /******************************************************************************************************/
246     /* This loops through all our fieldnames and all the copies, tallying up counts for the different values */
247
248     'summarize' :  serial.editor_base.editor_base_summarize,
249
250     /******************************************************************************************************/
251     /* Display the summarized data and inputs for editing */
252
253     'render' :  serial.editor_base.editor_base_render,
254
255     /******************************************************************************************************/
256     /* This actually draws the change button and input widget for a given field */
257     'render_input' : serial.editor_base.editor_base_render_input,
258
259     /******************************************************************************************************/
260     /* save the distributions */
261
262     'save' : function() {
263         var obj = this;
264         obj.editor_base_save('open-ils.serial.distribution.fleshed.batch.update');
265     },
266
267     /******************************************************************************************************/
268     /* spawn notes interface */
269
270     'notes' : function() {
271         var obj = this;
272         JSAN.use('util.window'); var win = new util.window();
273         win.open(
274             urls.XUL_SERIAL_NOTES, 
275             //+ '?copy_id=' + window.escape(obj.sdists[0].id()),
276             $('serialStrings').getString('staff.serial.sdist_editor.notes'),'chrome,resizable,modal',
277             { 'object_id' : obj.sdists[0].id(), 'function_type' : 'SDISTN', 'object_type' : 'distribution', 'constructor' : sdistn }
278         );
279     },
280
281     /******************************************************************************************************/
282     'save_attributes' : serial.editor_base.editor_base_save_attributes,
283
284     /******************************************************************************************************/
285     /* This returns a list of sre details appropriate for the distributions being edited */
286
287     'get_sre_details_list' : function() {
288         var obj = this;
289         try {
290             /* we only show this list if dealing with one org_unit, default to first sdist*/
291             var lib_id = typeof obj.sdists[0].holding_lib() == 'object' ? obj.sdists[0].holding_lib().id() : obj.sdists[0].holding_lib();
292             var sre_details_list = obj.sres_ou_map[lib_id];
293             if (sre_details_list == null) {
294                 return [];
295             } else {
296                 return sre_details_list;
297             }
298         } catch(E) {
299             obj.error.standard_unexpected_error_alert('get_sre_details_list',E);
300             return [];
301         }
302     },
303
304     /******************************************************************************************************/
305     /* This returns a list of acn's appropriate for the distributions being edited */
306
307     'get_acn_list' : function() {
308         var obj = this;
309         try {
310             var lib_id = typeof obj.sdists[0].holding_lib() == 'object' ? obj.sdists[0].holding_lib().id() : obj.sdists[0].holding_lib();
311
312             if (!obj.acn_lists) {
313                 obj.acn_lists = {};
314             }
315
316             // return cached version if we have it
317             // TODO: clear cache on holding_lib change? (cannot remember how to reproduce this bug)
318             if (obj.acn_lists[lib_id]) {
319                 return obj.acn_lists[lib_id];
320             }
321
322             var acn_list = obj.network.request(
323                 'open-ils.pcrud',
324                 'open-ils.pcrud.search.acn',
325                 [ ses(), {"record" : obj.docid, "owning_lib" : lib_id, "deleted" : 'f' }, {"order_by" : {"acn" : "label"} } ]
326             );
327
328             if (!acn_list) {
329                 return [];
330             } else if (!acn_list.length) {
331                 acn_list = [acn_list];
332             }
333
334             // build label map
335             obj.acn_label_map = {};
336             for (i = 0; i < acn_list.length; i++) {
337                 obj.acn_label_map[acn_list[i].id()] = acn_list[i].label();
338             }
339
340             // cache the list
341             obj.acn_lists[lib_id] = acn_list;
342             return acn_list;
343
344         } catch(E) {
345             obj.error.standard_unexpected_error_alert('get_acn_list',E);
346             return [];
347         }
348     },
349
350     /******************************************************************************************************/
351     /* This returns a list of asset copy templates appropriate for the distributions being edited */
352
353     'get_act_list' : function() {
354         var obj = this;
355         try {
356             /* we only show this list if dealing with one org_unit, default to first sdist*/
357             var lib_id = typeof obj.sdists[0].holding_lib() == 'object' ? obj.sdists[0].holding_lib().id() : obj.sdists[0].holding_lib();
358
359             if (!obj.act_lists) {
360                 obj.act_lists = {};
361             }
362
363             // return cached version if we have it
364             if (obj.act_lists[lib_id]) {
365                 return obj.act_lists[lib_id];
366             }
367             
368             var act_list = obj.network.request(
369                 'open-ils.pcrud',
370                 'open-ils.pcrud.search.act',
371                 [ ses(), {"owning_lib" : lib_id }, {"order_by" : {"act" : "name"} } ]
372             );
373
374             if (act_list == null) {
375                 return [];
376             } else if (!act_list.length) {
377                 act_list = [act_list];
378             }
379
380             // build name map
381             obj.act_name_map = {};
382             for (i = 0; i < act_list.length; i++) {
383                 obj.act_name_map[act_list[i].id()] = act_list[i].name();
384             }
385
386             // cache the list
387             obj.act_lists[lib_id] = act_list;
388             return act_list;
389         } catch(E) {
390             obj.error.standard_unexpected_error_alert('get_act_list',E);
391             return [];
392         }
393     }
394
395 };
396
397 dump('exiting serial/sdist_editor.js\n');