]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/services/marcedit.js
LP1693580 Marc editor notify and API changes
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / cat / services / marcedit.js
1 /**
2  *  A MARC editor...
3  */
4
5 angular.module('egMarcMod', ['egCoreMod', 'ui.bootstrap'])
6
7 .directive("egContextMenuItem", ['$timeout',function ($timeout) {
8     return {
9         restrict: 'E',
10         replace: true,
11         template: '<li><a ng-click="setContent(item.value,item.action)">{{item.label}}</a></li>',
12         scope: { item: '=', content: '=', contextMenuEvent: '=' },
13         controller: ['$scope','$element',
14             function ($scope , $element) {
15                 if (!$scope.item.label) $scope.item.label = $scope.item.value;
16                 if ($scope.item.divider) {
17                     $element.css('borderTop','solid 1px');
18                 }
19
20                 $scope.setContent = function (v, a) {
21                     var replace_with = v;
22
23                     if (a) {
24                         replace_with = a(
25                             $scope,
26                             $element,
27                             $scope.item.value,
28                             $scope.$parent.$parent.content,
29                             $scope.contextMenuEvent
30                         );
31                     }
32
33                     if (typeof replace_with !== 'undefined') {
34                         $timeout(function(){
35                             $scope.$parent.$parent.$apply(function(){
36                                 $scope.$parent.$parent.content = replace_with
37                             })
38                         }, 0);
39                     }
40                     $($element).parent().css({display: 'none'});
41                 }
42             }
43         ]
44     }
45 }])
46
47 .directive("contenteditable", function() {
48     return {
49         restrict: "A",
50         require: "ngModel",
51         link: function(scope,element,attrs,ngModel){
52
53             function read(){
54                 // save new text into model
55                 var elhtml = element.text();
56                 ngModel.$setViewValue(elhtml);
57             }
58
59             ngModel.$render = function(){
60                 element.text(ngModel.$viewValue || "");
61             };
62
63             element.bind("blur.c_e keyup.c_e change.c_e", function(){
64                 scope.$apply(read);
65             });
66         }
67     };
68 })
69
70 .directive("egMarcEditEditable", ['$timeout', '$compile', '$document', function ($timeout, $compile, $document) {
71     return {
72         restrict: 'E',
73         replace: true,
74         templateUrl: './cat/share/t_marcedit_editable',
75         scope: {
76             field: '=',
77             onKeydown: '=',
78             subfield: '=',
79             content: '=',
80             contextItemContainer: '@',
81             contextItemGenerator: '=',
82             max: '@',
83             itype: '@',
84             selectOnFocus: '=',
85             advanceFocusAfterInput: '=',
86             isDisabled: "="
87         },
88         controller : ['$scope',
89             function ( $scope ) {
90                 $scope.isInputDisabled = $scope.isDisabled == 'disabled';
91                 if ($scope.contextItemContainer && angular.isArray($scope.$parent[$scope.contextItemContainer]))
92                     $scope.item_container = $scope.$parent[$scope.contextItemContainer];
93                 else if ($scope.contextItemGenerator)
94                     $scope.item_generator = $scope.contextItemGenerator;
95
96                 $scope.showContext = function (event) {
97                     $scope.item_list = [];
98                     if ($scope.item_container) {
99                         $scope.item_list = $scope.item_container;
100                     } else if ($scope.item_generator) {
101                         // always recalculate; tag and/or subfield
102                         // codes may have changed
103
104                         var generator = $scope.item_generator;
105                         if (!angular.isArray(generator)) generator = [generator];
106
107                         var is_first = true;
108                         angular.forEach(generator, function (g) {
109                             var sub_list = g();
110
111                             if (is_first)
112                                 is_first = false;
113                             else if (Boolean(sub_list[0]))
114                                 sub_list[0].divider = true;
115
116                             $scope.item_list = $scope.item_list.concat(sub_list);
117                         });
118
119                     } else {
120                         return true;
121                     }
122
123                     if (angular.isArray($scope.item_list) && $scope.item_list.length > 0) { // we have a list of values or transforms
124                         console.log('Showing context menu...');
125                         $('body').trigger('click');
126
127                         $scope.contextMenuEvent = event;
128                         var tmpl = 
129                             '<ul class="dropdown-menu scrollable-menu" role="menu" style="z-index: 2000;">'+
130                                 '<eg-context-menu-item context-menu-event="contextMenuEvent" ng-repeat="item in item_list" item="item" content="content"/>'+
131                             '</ul>';
132             
133                         var tnode = angular.element(tmpl);
134                         $document.find('body').append(tnode);
135
136                         $(tnode).css({
137                             display: 'block',
138                             top: event.pageY,
139                             left: event.pageX
140                         });
141
142                         $timeout(function() {
143                             var e = $compile(tnode)($scope);
144                         }, 0);
145
146
147                         $('body').on('click.context_menu',function() {
148                             $(tnode).css('display','none');
149                             $('body').off('click.context_menu');
150                         });
151
152                         return false;
153                     }
154             
155                     return true;
156                 }
157
158             }
159         ],
160         link: function (scope, element, attrs) {
161
162             if (scope.onKeydown) element.bind('keydown', {scope : scope}, scope.onKeydown);
163
164             if (Boolean(scope.selectOnFocus)) {
165                 element.addClass('noSelection');
166                 element.bind('focus', function (e) {
167                     var el = $(e.target).children('input').first();
168                     if (el.select) { el.select(); }
169                 });
170             }
171
172             element.children("div[contenteditable]").each(function() {
173                 $(this).focus(function(e) {
174                     var tNode = e.target.firstChild;
175                     var range = document.createRange();
176                     range.setStart(tNode, 0);
177                     range.setEnd(tNode, tNode.length);
178                     var sel = window.getSelection();
179                     sel.removeAllRanges();
180                     sel.addRange(range);
181                 });
182             });
183
184             function findCaretTarget(id, itype) {
185                 var tgt = null;
186                 if (itype == 'tag') {
187                     tgt = id.replace(/tag$/, 'i1');
188                 } else if (itype == 'ind') {
189                     if (id.match(/i1$/)) {
190                         tgt = id.replace(/i1$/, 'i2');
191                     } else if (id.match(/i2$/)) {
192                         tgt = id.replace(/i2$/, 's0code');
193                     }
194                 } else if (itype == 'sfc') {
195                     tgt = id.replace(/code$/, 'value');
196                 }
197                 return tgt;
198             }
199             if (Boolean(scope.advanceFocusAfterInput)) {
200                 element.bind('input', function (e) {
201                     if (scope.content.length == scope.max) {
202                         var tgt = findCaretTarget(e.currentTarget.id, scope.itype);
203                         if (tgt) {
204                             var element = $('#' + tgt).get(0);
205                             if (element) {
206                                 element.focus();
207                             }
208                         }
209                     }
210                 });
211             }
212
213             element.bind('change', function (e) { element.size = scope.max || parseInt(scope.content.length * 1.1) });
214
215             element.bind('contextmenu', {scope : scope}, scope.showContext);
216         }
217     }
218 }])
219
220 .directive("egMarcEditFixedField", ['$timeout', '$compile', '$document', function ($timeout, $compile, $document) {
221     return {
222         transclude: true,
223         restrict: 'E',
224         template: '<div class="col-md-2">'+
225                     '<div class="col-md-1"><label name="{{fixedField}}" for="{{fixedField}}_ff_input">{{fixedFieldLabel}}</label></div>'+
226                     '<div class="col-md-1"><input type="text" style="padding-left: 5px; margin-left: 1em" size="4" id="{{fixedField}}_ff_input"/></div>'+
227                   '</div>',
228         scope: { record: "=", fixedField: "@", fixedFieldLabel: "@" },
229         replace: true,
230         controller : ['$scope', '$element', 'egTagTable',
231             function ( $scope ,  $element ,  egTagTable) {
232                 $($element).removeClass('fixed-field-box');
233                 $($element).children().css({ display : 'none' });
234                 $scope.fixedFieldLabel = $scope.fixedFieldLabel || $scope.fixedField;
235                 $scope.me = null;
236                 $scope.content = null; // this is where context menus dump their values
237                 $scope.item_container = [];
238                 $scope.in_handler = false;
239                 $scope.ready = false;
240                 $element.find('input').bind('focus', function (e) { e.target.select() });
241                 $element.find('input').bind('mouseup', function(e) {
242                     e.preventDefault()
243                     return false;
244                 });
245
246                 $scope.$watch('content', function (newVal, oldVal) {
247                     var input = $($element).find('input');
248                     input.val(newVal);
249                     input.trigger('keyup'); // cascade the update
250                 });
251
252                 $scope.$watch('record.ready', function (newVal, oldVal) { // wait for the record to be loaded
253                     if (newVal && !$scope.ready) {
254                         $scope.rtype = $scope.record.recordType();
255
256                         egTagTable.fetchFFPosTable( $scope.rtype ).then(function (ff_list) {
257                             angular.forEach(ff_list, function (ff) {
258                                 if (!$scope.me) {
259                                     if (ff.fixed_field == $scope.fixedField && ff.rec_type == $scope.rtype) {
260                                         $scope.me = ff;
261                                         $scope.ready = true;
262                                         $($element).addClass('fixed-field-box');
263                                         $($element).children().css({ display : 'inline' });
264
265                                         var input = $($element).find('input');
266                                         input.attr('maxlength', $scope.me.length);
267                                         input.val($scope.record.extractFixedField($scope.me.fixed_field));
268                                         input.on('keyup', function(e) {
269                                             $scope.in_handler = true;
270                                             $scope.record.setFixedField($scope.me.fixed_field, input.val());
271                                             try { $scope.$parent.$digest(); } catch(e) {};
272                                         });
273                                     }
274                                 }
275                             });
276                             return $scope.me;
277                         }).then(function (me) {
278                             if (me) {
279                                 $scope.$watch(
280                                     function() {
281                                         return $scope.record.extractFixedField($scope.fixedField);
282                                     },
283                                     function (newVal, oldVal) {
284                                         if ($scope.in_handler) {
285                                             $scope.in_handler = false;
286                                         } else if (oldVal != newVal) {
287                                             $($element).find('input').val(newVal);
288                                         }
289                                     }
290                                 );
291                             }
292                         }).then(function () {
293                             return egTagTable.fetchFFValueTable( $scope.rtype );
294                         }).then(function (vlist) {
295                             if (vlist[$scope.fixedField]) {
296                                 vlist[$scope.fixedField].forEach(function (v) {
297                                     if (v[0].length <= v[2]) {
298                                         $scope.item_container.push({ value : v[0], label : v[0] + ': ' + v[1] });
299                                     }
300                                 });
301                             }
302                         }).then(function () {
303                             if ($scope.item_container && $scope.item_container.length)
304                                 $($element).bind('contextmenu', $scope.showContext);
305                         });
306
307                     }
308                 });
309
310                 $scope.showContext = function (event) {
311                     if ($scope.context_menu_element) {
312                         console.log('Reshowing context menu...');
313                         $('body').trigger('click');
314                         $($scope.context_menu_element).css({ display: 'block', top: event.pageY, left: event.pageX });
315                         $('body').on('click.context_menu',function() {
316                             $($scope.context_menu_element).css('display','none');
317                             $('body').off('click.context_menu');
318                         });
319                         return false;
320                     }
321
322                     if (angular.isArray($scope.item_container)) { // we have a list of values or transforms
323                         console.log('Showing context menu...');
324                         $('body').trigger('click');
325
326                         var tmpl = 
327                             '<ul class="dropdown-menu scrollable-menu" role="menu" style="z-index: 2000;">'+
328                                 '<eg-context-menu-item ng-repeat="item in item_container" item="item" content="content"/>'+
329                             '</ul>';
330             
331                         var tnode = angular.element(tmpl);
332                         $document.find('body').append(tnode);
333
334                         $(tnode).css({
335                             display: 'block',
336                             top: event.pageY,
337                             left: event.pageX
338                         });
339
340                         $scope.context_menu_element = tnode;
341
342                         $timeout(function() {
343                             var e = $compile(tnode)($scope);
344                         }, 0);
345
346
347                         $('body').on('click.context_menu',function() {
348                             $(tnode).css('display','none');
349                             $('body').off('click.context_menu');
350                         });
351
352                         return false;
353                     }
354             
355                     return true;
356                 }
357
358             }
359         ]
360     }
361 }])
362
363 .directive("egMarcEditSubfield", function () {
364     return {
365         transclude: true,
366         restrict: 'E',
367         template: '<span>'+
368                     '<span><label class="marcedit marcsfcodedelimiter"'+
369                         'for="r{{field.record.subfield(\'901\',\'c\')[1] || 0}}f{{field.position}}s{{subfield[2]}}code" '+
370                         '>‡</label><eg-marc-edit-editable '+
371                         'itype="sfc" '+
372                         'select-on-focus="true" '+
373                         'advance-focus-after-input="true" '+
374                         'class="marcedit marcsf marcsfcode" '+
375                         'field="field" '+
376                         'subfield="subfield" '+
377                         'content="subfield[0]" '+
378                         'max="1" '+
379                         'on-keydown="onKeydown" '+
380                         'context-item-generator="sf_code_options" '+
381                         'id="r{{field.record.subfield(\'901\',\'c\')[1] || 0}}f{{field.position}}s{{subfield[2]}}code" '+
382                     '/></span>'+
383                     '<span><eg-marc-edit-editable '+
384                         'itype="sfv" '+
385                         'select-on-focus="true" '+
386                         'class="marcedit marcsf marcsfvalue" '+
387                         'field="field" '+
388                         'subfield="subfield" '+
389                         'content="subfield[1]" '+
390                         'on-keydown="onKeydown" '+
391                         'context-item-generator="sf_val_options" '+
392                         'id="r{{field.record.subfield(\'901\',\'c\')[1] || 0}}f{{field.position}}s{{subfield[2]}}value" '+
393                     '/></span>'+
394                   '</span>',
395         scope: { field: "=", subfield: "=", onKeydown: '=' },
396         replace: true,
397         controller : ['$scope', 'egTagTable',
398             function ( $scope ,  egTagTable) {
399
400                 $scope.sf_code_options = function () {
401                     return egTagTable.getSubfieldCodes($scope.field.tag);
402                 }
403                 $scope.sf_val_options = function () {
404                     return egTagTable.getSubfieldValues($scope.field.tag, $scope.subfield[0]);
405                 }
406             }
407         ]
408     }
409 })
410
411 .directive("egMarcEditInd", function () {
412     return {
413         transclude: true,
414         restrict: 'E',
415         template: '<span><eg-marc-edit-editable '+
416                       'itype="ind" '+
417                       'class="marcedit marcind" '+
418                       'select-on-focus="true" '+
419                       'advance-focus-after-input="true" '+
420                       'field="field" '+
421                       'content="ind" '+
422                       'max="1" '+
423                       'on-keydown="onKeydown" '+
424                       'context-item-generator="ind_val_options" '+
425                       'id="r{{field.record.subfield(\'901\',\'c\')[1] || 0}}f{{field.position}}i{{indNumber}}"'+
426                       '/></span>',
427         scope: { ind : '=', field: '=', onKeydown: '=', indNumber: '@' },
428         replace: true,
429         controller : ['$scope', 'egTagTable',
430             function ( $scope ,  egTagTable) {
431
432                 $scope.ind_val_options = function () {
433                     return egTagTable.getIndicatorValues($scope.field.tag, $scope.indNumber);
434                 }
435             }
436         ]
437     }
438 })
439
440 .directive("egMarcEditTag", function () {
441     return {
442         transclude: true,
443         restrict: 'E',
444         template: '<span><eg-marc-edit-editable '+
445                       'itype="tag" '+
446                       'class="marcedit marctag" '+
447                       'select-on-focus="true" '+
448                       'advance-focus-after-input="true" '+
449                       'field="field" '+
450                       'content="tag" '+
451                       'max="3" '+
452                       'on-keydown="onKeydown" '+
453                       'context-item-generator="tag_options" '+
454                       'id="r{{field.record.subfield(\'901\',\'c\')[1] || 0}}f{{field.position}}tag"'+
455                       '/></span>',
456         scope: { tag : '=', field: '=', onKeydown: '=', contextFunctions: '=' },
457         replace: true,
458         controller : ['$scope', 'egTagTable', 'egCore',
459             function ( $scope ,  egTagTable,   egCore) {
460
461                 $scope.tag_options = [
462                     function () {
463                         var options = [
464                             { label : egCore.strings.ADD_006, action : function(j1,j2,j3,j4,e) { $scope.contextFunctions.add006(e) } },
465                             { label : egCore.strings.ADD_007, action : function(j1,j2,j3,j4,e) { $scope.contextFunctions.add007(e) } },
466                             { label : egCore.strings.ADD_REPLACE_008, action : function(j1,j2,j3,j4,e) { $scope.contextFunctions.reify008(e) } },
467                         ];
468
469                         if (!$scope.field.isControlfield()) {
470                             options = options.concat([
471                                 { label : egCore.strings.INSERT_FIELD_AFTER, action : function(j1,j2,j3,j4,e) { $scope.contextFunctions.addDatafield(e) } },
472                                 { label : egCore.strings.INSERT_FIELD_BEFORE, action : function(j1,j2,j3,j4,e) { $scope.contextFunctions.addDatafield(e,true) } },
473                             ]);
474                         }
475
476                         options.push({ label : egCore.strings.DELETE_FIELD, action : function(j1,j2,j3,j4,e) { $scope.contextFunctions.deleteDatafield(e) } });
477                         return options;
478                     },
479                     function () { return egTagTable.getFieldTags() }
480                 ];
481
482             }
483         ]
484     }
485 })
486
487 .directive("egMarcEditDatafield", function () {
488     return {
489         transclude: true,
490         restrict: 'E',
491         template: '<div>'+
492                     '<span><eg-marc-edit-tag context-functions="contextFunctions" field="field" tag="field.tag" on-keydown="onKeydown"/></span>'+
493                     '<span><eg-marc-edit-ind field="field" ind="field.ind1" on-keydown="onKeydown" ind-number="1"/></span>'+
494                     '<span><eg-marc-edit-ind field="field" ind="field.ind2" on-keydown="onKeydown" ind-number="2"/></span>'+
495                     '<span><eg-marc-edit-subfield ng-class="{ \'unvalidatedheading\' : field.heading_checked && !field.heading_valid, \'marcedit_stacked_subfield\' : stackSubfields.enabled }" ng-repeat="subfield in field.subfields" subfield="subfield" field="field" on-keydown="onKeydown"/></span>'+
496                     // FIXME: template should probably be moved to file to improve
497                     // translatibility
498                     '<span  ng-class="{ \'marcedit_stacked_subfield\' : stackSubfields.enabled }">' +
499                     '<button class="btn btn-info btn-xs" '+
500                     'aria-label="Manage authority record links" '+
501                     'ng-show="isAuthorityControlled(field)"'+
502                     'ng-click="spawnAuthorityLinker()"'+
503                     '>'+
504                     '<span class="glyphicon glyphicon-link"></span>'+
505                     '</button>'+
506                     '<span ng-show="field.heading_checked && field.heading_valid" class="glyphicon glyphicon-ok-sign"></span>'+
507                     '<span ng-show="field.heading_checked && !field.heading_valid" class="glyphicon glyphicon-question-sign"></span>'+
508                     '</span>'+
509                   '</div>',
510         scope: { field: "=", onKeydown: '=', contextFunctions: '=' },
511         replace: true,
512         controller : ['$scope','$uibModal',
513             function ( $scope,  $uibModal ) {
514                 $scope.stackSubfields = $scope.$parent.$parent.stackSubfields;
515                 $scope.isAuthorityControlled = function () {
516                     return ($scope.$parent.$parent.record_type == 'bre') &&
517                            $scope.$parent.$parent.controlSet.bibFieldByTag($scope.field.tag);
518                 }
519                 $scope.spawnAuthorityLinker = function() {
520                     // intentionally making a clone in case
521                     // user decides to abandon the linking
522                     var fieldCopy = new MARC21.Field({
523                         tag       : $scope.field.tag,
524                         ind1      : $scope.field.ind1,
525                         ind2      : $scope.field.ind2
526                     });
527                     angular.forEach($scope.field.subfields, function(sf) {
528                         fieldCopy.subfields.push(sf.slice(0));
529                     });
530                     var cs = $scope.$parent.$parent.controlSet;
531                     var args = { changed : false };
532                     $uibModal.open({
533                         templateUrl: './cat/share/t_authority_link_dialog',
534                         backdrop: 'static',
535                         size: 'lg',
536                         controller: ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
537                             $scope.controlSet = cs;
538                             $scope.bibField = fieldCopy;
539                             $scope.focusMe = true;
540                             $scope.args = args;
541                             $scope.ok = function(args) { $uibModalInstance.close(args) };
542                             $scope.cancel = function () { $uibModalInstance.dismiss() };
543                         }]
544                     }).result.then(function (args) {
545                         if (args.changed) {
546                             $scope.field.subfields.length = 0;
547                             angular.forEach(fieldCopy.subfields, function(sf) {
548                                 $scope.field.addSubfields(sf[0], sf[1]);
549                             });
550                         }
551                     });
552                 }
553             }
554         ]
555     }
556 })
557
558 .directive("egMarcEditControlfield", function () {
559     return {
560         transclude: true,
561         restrict: 'E',
562         template: '<div>'+
563                     '<span><eg-marc-edit-tag context-functions="contextFunctions" field="field" tag="field.tag" on-keydown="onKeydown"/></span>'+
564                     '<span><eg-marc-edit-editable '+
565                       'itype="cfld" '+
566                       'field="field" '+
567                       'class="marcedit marcdata" '+
568                       'content="field.data" '+
569                       'on-keydown="onKeydown" '+
570                       'id="r{{field.record.subfield(\'901\',\'c\')[1] || 0}}f{{field.position}}data"'+
571                       '/></span>'+
572                       // TODO: move to TT2 template
573                       '<button class="btn btn-info btn-xs" '+
574                       'aria-label="Physical Characteristics Wizard" '+
575                       'ng-show="showPhysCharLink()"'+
576                       'ng-click="spawnPhysCharWizard()"'+
577                       '>'+
578                       '<span class="glyphicon glyphicon-edit"></span>'+
579                       '</button>'+
580                   '</div>',
581         scope: { field: "=", onKeydown: '=', contextFunctions: '=' },
582         controller : ['$scope','$uibModal',
583             function ( $scope,  $uibModal) {
584                 $scope.showPhysCharLink = function () {
585                     return ($scope.$parent.$parent.record_type == 'bre') 
586                         && $scope.field.tag == '007';
587                 }
588                 $scope.spawnPhysCharWizard = function() {
589                     var args = {
590                         changed : false,
591                         field : $scope.field,
592                         orig_value : $scope.field.data
593                     };
594                     $uibModal.open({
595                         templateUrl: './cat/share/t_physchar_dialog',
596                         controller: ['$scope','$uibModalInstance',
597                             function( $scope , $uibModalInstance) {
598                             $scope.focusMe = true;
599                             $scope.args = args;
600                             $scope.ok = function(args) { $uibModalInstance.close(args) };
601                             $scope.cancel = function () { 
602                                 $uibModalInstance.dismiss();
603                                 args.field.data = args.orig_value;
604                             };
605                         }],
606                     }).result.then(function (args) {
607                         // $scope.field.data is changed within the 
608                         // wizard.  Nothing left to do on submit.
609                     });
610
611                 }
612             }
613         ]
614     }
615 })
616
617 .directive("egMarcEditLeader", function () {
618     return {
619         transclude: true,
620         restrict: 'E',
621         template: '<div>'+
622                     '<span><eg-marc-edit-editable '+
623                       'class="marcedit marctag" '+
624                       'content="tag" '+
625                       'on-keydown="onKeydown" '+
626                       'id="leadertag" '+
627                       'is-disabled="disabled"'+
628                       '/></span>'+
629                     '<span><eg-marc-edit-editable '+
630                       'class="marcedit marcdata" '+
631                       'itype="ldr" '+
632                       'max="{{record.leader.length}}" '+
633                       'content="record.leader" '+
634                       'id="r{{record.subfield(\'901\',\'c\')[1] || 0}}leaderdata" '+
635                       'on-keydown="onKeydown"'+
636                       '/></span>'+
637                   '</div>',
638         controller : ['$scope',
639             function ( $scope ) {
640                 $scope.tag = 'LDR';
641             }
642         ],
643         scope: { record: "=", onKeydown: '=' }
644     }
645 })
646
647 /// TODO: fixed field editor and such
648 .directive("egMarcEditRecord", function () {
649     return {
650         templateUrl : './cat/share/t_marcedit',
651         restrict: 'E',
652         replace: true,
653         scope: {
654             dirtyFlag : '=',
655             recordId : '=',
656             marcXml : '=',
657             bibSource : '=?',
658             onSave : '=',
659             // in-place mode means that the editor is being
660             // used just to munge some MARCXML client-side, rather
661             // than to (immediately) update the database
662             //
663             // In short, we can use inPlaceMode as a way to skip
664             // "normal" bre saving and then process the MARC ourselves
665             // via a callback
666             //
667             // inPlaceMode is r/w to allow our Z39.50 import editor to be
668             // switched back into a normal editor after the initial import
669             inPlaceMode : '=',
670             fastAdd : '@',
671             flatOnly : '@',
672             embedded : '@',
673             recordType : '@',
674             maxUndo : '@',
675             saveLabel : '@'
676         },
677         link: function (scope, element, attrs) {
678
679             element.bind('mouseup', function(e) {;
680                 scope.current_event_target = $(e.target).attr('id');
681                 if (scope.current_event_target && $(e.target).hasClass('noSelection')) {
682                     e.preventDefault()
683                     return false;
684                 }
685             });
686
687             element.bind('click', function(e) {;
688                 scope.current_event_target = $(e.target).attr('id');
689                 if (scope.current_event_target) {
690                     console.log('Recording click event on ' + scope.current_event_target);
691                     scope.current_event_target_cursor_pos =
692                         e.target.selectionDirection=='backward' ?
693                             e.target.selectionStart :
694                             e.target.selectionEnd;
695                 }
696             });
697
698         },
699         controller : ['$timeout','$scope','$q','$window','egCore', 'egTagTable',
700                       'egConfirmDialog','egAlertDialog','ngToast','egStrings',
701             function ( $timeout , $scope , $q,  $window , egCore ,  egTagTable , 
702                        egConfirmDialog , egAlertDialog , ngToast , egStrings) {
703
704
705                 $scope.onSaveCallback = $scope.onSave;
706                 if (typeof $scope.onSaveCallback !== 'undefined' && !angular.isArray($scope.onSaveCallback))
707                     $scope.onSaveCallback = [ $scope.onSaveCallback ];
708
709                 $scope.$watch('dirtyFlag',
710                     function(newVal, oldVal) {
711                         if (newVal && newVal != oldVal && !$scope.opac_iframe) {
712                             $($window).on('beforeunload', function(){
713                                 return egCore.strings.DIRTY_MARC_WARNING;
714                             });
715                         } else {
716                             if (!$scope.opac_iframe)
717                                 $($window).off('beforeunload');
718                         }
719                     }
720                 );
721
722                 MARC21.Record.delimiter = '$';
723
724                 $scope.enable_fast_add = false;
725                 $scope.fast_item_callnumber = '';
726                 $scope.fast_item_barcode = '';
727
728                 $scope.flatEditor = { isEnabled : $scope.flatOnly ? true : false };
729                 
730                 egCore.hatch.getItem('cat.marcedit.flateditor').then(function(val) {
731                     $scope.flatEditor.isEnabled = val;
732                 });
733                 
734                 $scope.$watch('flatEditor.isEnabled', function (newVal, oldVal) {
735                     if (newVal != oldVal) egCore.hatch.setItem('cat.marcedit.flateditor', newVal);
736                 });
737
738                 // necessary to prevent ng-model scope hiding ugliness in egMarcEditBibSource:
739                 $scope.bib_source = {
740                     id : $scope.bibSource ? $scope.bibSource : null
741                 };
742                 $scope.brandNewRecord = false;
743                 $scope.record_type = $scope.recordType || 'bre';
744                 $scope.max_undo = $scope.maxUndo || 100;
745                 $scope.record_undo_stack = [];
746                 $scope.record_redo_stack = [];
747                 $scope.in_undo = false;
748                 $scope.in_redo = false;
749                 $scope.record = new MARC21.Record();
750                 $scope.save_stack_depth = 0;
751                 $scope.controlfields = [];
752                 $scope.datafields = [];
753                 $scope.controlSet = egTagTable.getAuthorityControlSet();
754                 $scope.showHelp = false;
755                 $scope.stackSubfields = { enabled : false };
756                 egCore.hatch.getItem('cat.marcedit.stack_subfields').then(function(val) {
757                     $scope.stackSubfields.enabled = val;
758                 });
759                 $scope.$watch('stackSubfields.enabled', function (newVal, oldVal) {
760                     if (newVal != oldVal) egCore.hatch.setItem('cat.marcedit.stack_subfields', newVal);
761                 });
762                 $scope.caretRecId = $scope.recordId;
763
764                 egTagTable.loadTagTable({ marcRecordType : $scope.record_type });
765
766                 $scope.saveFlatTextMARC = function () {
767                     $scope.record = new MARC21.Record({ marcbreaker : $scope.flat_text_marc });
768                 };
769
770                 $scope.refreshVisual = function () {
771                     if (!$scope.flatEditor.isEnabled) {
772                         $scope.controlfields = $scope.record.fields.filter(function(f){ return f.isControlfield() });
773                         $scope.datafields = $scope.record.fields.filter(function(f){ return !f.isControlfield() });
774                     }
775                 };
776
777                 var addDatafield = function (e,before) {
778                     var element = $(e.target);
779
780                     var index_field = e.data.scope.field.position;
781                     var new_field_index = index_field;
782
783                     var new_field = new MARC21.Field({
784                         tag : '999',
785                         subfields : [[' ','',0]]
786                     });
787
788                     if (Boolean(before)) {
789                         e.data.scope.field.record.insertFieldsBefore(
790                             e.data.scope.field,
791                             new_field
792                         );
793                     } else {
794                         e.data.scope.field.record.insertFieldsAfter(
795                             e.data.scope.field,
796                             new_field
797                         );
798                         new_field_index++;
799                     }
800
801                     $scope.current_event_target = 'r' + $scope.caretRecId +
802                                                   'f' + new_field_index + 'tag';
803
804                     $scope.current_event_target_cursor_pos = 0;
805                     $scope.current_event_target_cursor_pos_end = 3;
806                     $scope.force_render = true;
807
808                     $timeout(function(){$scope.$digest()}).then(setCaret);
809                 };
810
811                 var deleteDatafield = function (e) {
812                     var del_field = e.data.scope.field.position;
813
814                     var sf901c = e.data.scope.field.record.subfield('901','c');
815                     var recId = (sf901c === null) ? '' : sf901c[1];
816                     var domnode = $('#r' + recId + 'f' + del_field);
817
818                     e.data.scope.field.record.deleteFields(
819                         e.data.scope.field
820                     );
821
822                     domnode.scope().$destroy();
823                     domnode.remove();
824
825                     $scope.current_event_target = 'r' + $scope.caretRecId +
826                                                   'f' + del_field + 'tag';
827
828                     $scope.current_event_target_cursor_pos = 0;
829                     $scope.current_event_target_cursor_pos_end = 0
830                     $scope.force_render = true;
831
832                     $timeout(function(){$scope.$digest()}).then(setCaret);
833                 };
834
835                 var add006 = function (e) {
836                     e.data.scope.field.record.insertOrderedFields(
837                         new MARC21.Field({
838                             tag : '006',
839                             data : '                                        '
840                         })
841                     );
842
843                     $scope.force_render = true;
844                     $timeout(function(){$scope.$digest()}).then(setCaret);
845                 };
846
847                 var add007 = function (e) {
848                     e.data.scope.field.record.insertOrderedFields(
849                         new MARC21.Field({
850                             tag : '007',
851                             data : '                                        '
852                         })
853                     );
854
855                     $scope.force_render = true;
856                     $timeout(function(){$scope.$digest()}).then(setCaret);
857                 };
858
859                 var reify008 = function (e) {
860                     var new_008_data = e.data.scope.field.record.generate008();
861
862
863                     var old_008s = e.data.scope.field.record.field('008',true);
864                     old_008s.forEach(function(o) {
865                         var domnode = $('#r'+o.record.subfield('901','c')[1] + 'f' + o.position);
866                         domnode.scope().$destroy();
867                         domnode.remove();
868                         e.data.scope.field.record.deleteFields(o);
869                     });
870
871                     e.data.scope.field.record.insertOrderedFields(
872                         new MARC21.Field({
873                             tag : '008',
874                             data : new_008_data
875                         })
876                     );
877
878                     $scope.force_render = true;
879                     $timeout(function(){$scope.$digest()}).then(setCaret);
880                 };
881
882                 $scope.context_functions = {
883                     addDatafield : addDatafield,
884                     deleteDatafield : deleteDatafield,
885                     add006 : add006,
886                     add007 : add007,
887                     reify008 : reify008
888                 };
889
890                 $scope.onKeydown = function (event) {
891                     var event_return = true;
892
893                     console.log(
894                         'keydown: which='+event.which+
895                         ', ctrlKey='+event.ctrlKey+
896                         ', shiftKey='+event.shiftKey+
897                         ', altKey='+event.altKey+
898                         ', metaKey='+event.altKey
899                     );
900
901                     if (event.which == 89 && event.ctrlKey) { // ctrl+y, redo
902                         event_return = $scope.processRedo();
903                     } else if (event.which == 90 && event.ctrlKey) { // ctrl+z, undo
904                         event_return = $scope.processUndo();
905                     } else if ((event.which == 68 || event.which == 73) && event.ctrlKey) { // ctrl+d or ctrl+i, insert subfield
906
907                         var element = $(event.target);
908                         var new_sf, index_sf, move_data;
909
910                         if (element.hasClass('marcsfvalue')) {
911                             index_sf = event.data.scope.subfield[2];
912                             new_sf = index_sf + 1;
913
914                             var start = event.target.selectionStart || getCaretPosEditableDiv(element);
915                             var end;
916                             if (event.target.value){
917                                 end = event.target.selectionEnd - event.target.selectionStart ?
918                                         event.target.selectionEnd :
919                                         event.target.value.length;
920                             } else {
921                                 end = element.text().length;
922                             }
923
924                             move_data = element.value ?
925                                 element.value.substring(start,end) :
926                                 element.text().substring(start, end);
927
928                         } else if (element.hasClass('marcsfcode')) {
929                             index_sf = event.data.scope.subfield[2];
930                             new_sf = index_sf + 1;
931                         } else if (element.hasClass('marctag') || element.hasClass('marcind')) {
932                             index_sf = 0;
933                             new_sf = index_sf;
934                         }
935
936                         $scope.current_event_target = 'r' + $scope.caretRecId +
937                                                       'f' + event.data.scope.field.position + 
938                                                       's' + new_sf + 'code';
939
940                         event.data.scope.field.subfields.forEach(function(sf) {
941                             if (sf[2] >= new_sf) sf[2]++;
942                             if (sf[2] == index_sf) {
943                                 sf[1] = event.target.value ?
944                                     event.target.value.substring(0,start) + event.target.value.substring(end) :
945                                     element.text().substring(0, start);
946                             }
947                         });
948                         event.data.scope.field.subfields.splice(
949                             new_sf,
950                             0,
951                             [' ', move_data, new_sf ]
952                         );
953
954                         $scope.current_event_target_cursor_pos = 0;
955                         $scope.current_event_target_cursor_pos_end = 1;
956
957                         $timeout(function(){$scope.$digest()}).then(setCaret);
958
959                         event_return = false;
960
961                     } else if (event.which == 117 && event.shiftKey) { // shift + F6, insert 006
962                         add006(event);
963                         event_return = false;
964
965                     } else if (event.which == 118 && event.shiftKey) { // shift + F7, insert 007
966                         add007(event);
967                         event_return = false;
968
969                     } else if (event.which == 119 && event.shiftKey) { // shift + F8, insert/replace 008
970                         reify008(event);
971                         event_return = false;
972
973                     } else if (event.which == 13 && event.ctrlKey) { // ctrl+enter, insert datafield
974                         addDatafield(event, event.shiftKey); // shift key inserts before
975                         event_return = false;
976
977                     } else if (event.which == 13 &&
978                               ($(event.target).hasClass('marcsf') || $(event.target.parentNode).hasClass('marcsf'))
979                               ) {
980                         // bare return; don't allow it
981                         event_return = false;
982
983                     } else if (event.which == 46 && event.ctrlKey) { // ctrl+del, remove field
984                         deleteDatafield(event);
985                         event_return = false;
986
987                     } else if (event.which == 46 && event.shiftKey && ($(event.target).hasClass('marcsf') || $(event.target.parentNode).hasClass('marcsf'))) { 
988                         // shift+del, remove subfield
989
990                         var sf = event.data.scope.subfield[2] - 1;
991                         if (sf == -1) sf = 0;
992
993                         event.data.scope.field.deleteExactSubfields(
994                             event.data.scope.subfield
995                         );
996
997                         if (!event.data.scope.field.subfields[sf]) {
998                             $scope.current_event_target = 'r' + $scope.caretRecId +
999                                                           'f' + event.data.scope.field.position + 
1000                                                           'tag';
1001                         } else {
1002                             $scope.current_event_target = 'r' + $scope.caretRecId +
1003                                                           'f' + event.data.scope.field.position + 
1004                                                           's' + sf + 'value';
1005                         }
1006
1007                         $scope.current_event_target_cursor_pos = 0;
1008                         $scope.current_event_target_cursor_pos_end = 0;
1009                         $scope.force_render = true;
1010
1011                         $timeout(function(){$scope.$digest()}).then(setCaret);
1012
1013                         event_return = false;
1014
1015                     } else if (event.keyCode == 38) {
1016                         if (event.ctrlKey) { // copy the field up
1017                             var index_field = event.data.scope.field.position;
1018
1019                             var field_obj;
1020                             if (event.data.scope.field.isControlfield()) {
1021                                 field_obj = new MARC21.Field({
1022                                     tag : event.data.scope.field.tag,
1023                                     data : event.data.scope.field.data
1024                                 });
1025                             } else {
1026                                 var sf_clone = [];
1027                                 for (var i in event.data.scope.field.subfields) {
1028                                     sf_clone.push(event.data.scope.field.subfields[i].slice());
1029                                 }
1030                                 field_obj = new MARC21.Field({
1031                                     tag : event.data.scope.field.tag,
1032                                     ind1 : event.data.scope.field.ind1,
1033                                     ind2 : event.data.scope.field.ind2,
1034                                     subfields : sf_clone
1035                                 });
1036                             }
1037
1038
1039                             event.data.scope.field.record.insertFieldsBefore(
1040                                 event.data.scope.field,
1041                                 field_obj
1042                             );
1043
1044                             $scope.current_event_target = 'r' + $scope.caretRecId +
1045                                                           'f' + index_field + 'tag';
1046
1047                             $scope.current_event_target_cursor_pos = 0;
1048                             $scope.current_event_target_cursor_pos_end = 3;
1049                             $scope.force_render = true;
1050
1051                             $timeout(function(){$scope.$digest()}).then(setCaret);
1052
1053                         } else { // jump to prev field
1054                             if (event.data.scope.field.position > 0) {
1055                                 $timeout(function(){
1056                                     $scope.current_event_target_cursor_pos = 0;
1057                                     $scope.current_event_target_cursor_pos_end = 0;
1058                                     $scope.current_event_target = 'r' + $scope.caretRecId +
1059                                                                   'f' + (event.data.scope.field.position - 1) +
1060                                                                   'tag';
1061                                 }).then(setCaret);
1062                             }
1063                         }
1064
1065                         event_return = false;
1066
1067                     } else if (event.keyCode == 40) { // down arrow...
1068                         if (event.ctrlKey) { // copy the field down
1069
1070                             var index_field = event.data.scope.field.position;
1071                             var new_field = index_field + 1;
1072
1073                             var field_obj;
1074                             if (event.data.scope.field.isControlfield()) {
1075                                 field_obj = new MARC21.Field({
1076                                     tag : event.data.scope.field.tag,
1077                                     data : event.data.scope.field.data
1078                                 });
1079                             } else {
1080                                 var sf_clone = [];
1081                                 for (var i in event.data.scope.field.subfields) {
1082                                     sf_clone.push(event.data.scope.field.subfields[i].slice());
1083                                 }
1084                                 field_obj = new MARC21.Field({
1085                                     tag : event.data.scope.field.tag,
1086                                     ind1 : event.data.scope.field.ind1,
1087                                     ind2 : event.data.scope.field.ind2,
1088                                     subfields : sf_clone
1089                                 });
1090                             }
1091
1092                             event.data.scope.field.record.insertFieldsAfter(
1093                                 event.data.scope.field,
1094                                 field_obj
1095                             );
1096
1097                             $scope.current_event_target = 'r' + $scope.caretRecId +
1098                                                           'f' + new_field + 'tag';
1099
1100                             $scope.current_event_target_cursor_pos = 0;
1101                             $scope.current_event_target_cursor_pos_end = 3;
1102                             $scope.force_render = true;
1103
1104                             $timeout(function(){$scope.$digest()}).then(setCaret);
1105
1106                         } else { // jump to next field
1107                             if (event.data.scope.field.record.fields[event.data.scope.field.position + 1]) {
1108                                 $timeout(function(){
1109                                     $scope.current_event_target_cursor_pos = 0;
1110                                     $scope.current_event_target_cursor_pos_end = 0;
1111                                     $scope.current_event_target = 'r' + $scope.caretRecId +
1112                                                                   'f' + (event.data.scope.field.position + 1) +
1113                                                                   'tag';
1114                                 }).then(setCaret);
1115                             }
1116                         }
1117
1118                         event_return = false;
1119
1120                     } else { // Assumes only marc editor elements have IDs that can trigger this event handler.
1121                         $scope.current_event_target = $(event.target).hasClass('focusable') ? $(event.target) : null;//.attr('id');
1122                         if ($scope.current_event_target) {
1123                             $scope.current_event_target_cursor_pos =
1124                                 event.target.selectionDirection=='backward' ?
1125                                     event.target.selectionStart :
1126                                     event.target.selectionEnd;
1127                         }
1128                     }
1129
1130                     return event_return;
1131                 };
1132
1133                 function setCaret() {
1134                     if ($scope.current_event_target) {
1135                         console.log("Putting caret in " + $scope.current_event_target);
1136                         if (!$scope.current_event_target_cursor_pos_end)
1137                             $scope.current_event_target_cursor_pos_end = $scope.current_event_target_cursor_pos
1138
1139                         var element = $('#'+$scope.current_event_target + " .focusable").get(0);
1140                         if (element) {
1141                             element.focus();
1142                             if (element.setSelectionRange) {
1143                                 element.setSelectionRange(
1144                                     $scope.current_event_target_cursor_pos,
1145                                     $scope.current_event_target_cursor_pos_end
1146                                 );
1147                             }
1148                         }
1149                         $scope.current_event_cursor_pos_end = null;
1150                         $scope.current_event_target = null;
1151                     }
1152                 }
1153
1154                 function getCaretPosEditableDiv(editableDiv){
1155                     var caretPos = 0, sel, range;
1156                     if (window.getSelection) {
1157                         sel = window.getSelection();
1158                         if (sel.rangeCount) {
1159                             range = sel.getRangeAt(0);
1160                             if (range.commonAncestorContainer.parentNode == editableDiv[0]) {
1161                                 caretPos = range.endOffset;
1162                             }
1163                         }
1164                     }
1165                     return caretPos;
1166                 }
1167
1168                 function loadRecord() {
1169                     return (function() {
1170                         var deferred = $q.defer();
1171                         if ($scope.recordId) {
1172                             egCore.pcrud.retrieve(
1173                                 $scope.record_type, $scope.recordId
1174                             ).then(function(rec) {
1175                                 deferred.resolve(rec);
1176                             });
1177                         } else {
1178                             if ($scope.recordType == 'bre') {
1179                                 var bre = new egCore.idl.bre();
1180                                 bre.marc($scope.marcXml);
1181                                 deferred.resolve(bre);
1182                             } else if ($scope.recordType == 'are') {
1183                                 var are = new egCore.idl.are();
1184                                 are.marc($scope.marcXml);
1185                                 deferred.resolve(are);
1186                             } else if ($scope.recordType == 'sre') {
1187                                 var sre = new egCore.idl.sre();
1188                                 sre.marc($scope.marcXml);
1189                                 deferred.resolve(sre);
1190                             }
1191                             $scope.brandNewRecord = true;
1192                         }
1193                         return deferred.promise;
1194                     })().then(function(rec) {
1195                         $scope.in_redo = true;
1196                         $scope[$scope.record_type] = rec;
1197                         $scope.record = new MARC21.Record({ marcxml : $scope.Record().marc() });
1198                         if (!$scope.recordId) {
1199                             var sf901c = $scope.record.subfield('901', 'c');
1200                             if (sf901c !== null) {
1201                                 $scope.caretRecId = sf901c[1];
1202                             }
1203                         }
1204                         $scope.calculated_record_type = $scope.record.recordType();
1205                         $scope.controlfields = $scope.record.fields.filter(function(f){ return f.isControlfield() });
1206                         $scope.datafields = $scope.record.fields.filter(function(f){ return !f.isControlfield() });
1207                         $scope.save_stack_depth = $scope.record_undo_stack.length;
1208                         $scope.dirtyFlag = false;
1209                         $scope.flat_text_marc = $scope.record.toBreaker();
1210
1211                         if ($scope.record_type == 'bre' && !$scope.brandNewRecord) {
1212                             $scope.bib_source.id = $scope.bibSource = rec.source(); //$scope.Record().source();
1213                         }
1214
1215                     }).then(function(){
1216                         return egTagTable.fetchFFPosTable($scope.calculated_record_type)
1217                     }).then(function(){
1218                         return egTagTable.fetchFFValueTable($scope.calculated_record_type)
1219                     }).then(setCaret);
1220                 }
1221
1222                 $scope.$watch('record.toBreaker()', function (newVal, oldVal) {
1223                     if (!$scope.in_undo && !$scope.in_redo && oldVal != newVal) {
1224                         $scope.record_undo_stack.push({
1225                             breaker: oldVal,
1226                             target: $scope.current_event_target,
1227                             pos: $scope.current_event_target_cursor_pos
1228                         });
1229
1230                         if ($scope.force_render) {
1231                             $scope.controlfields = $scope.record.fields.filter(function(f){ return f.isControlfield() });
1232                             $scope.datafields = $scope.record.fields.filter(function(f){ return !f.isControlfield() });
1233                             $scope.force_render = false;
1234                         }
1235
1236                         $scope.flat_text_marc = newVal;
1237                     }
1238
1239                     if ($scope.record_undo_stack.length != $scope.save_stack_depth) {
1240                         $scope.dirtyFlag = true;
1241                     } else {
1242                         $scope.dirtyFlag = false;
1243                     }
1244
1245                     if ($scope.record_undo_stack.length > $scope.max_undo)
1246                         $scope.record_undo_stack.shift();
1247
1248                     console.log('undo stack is ' + $scope.record_undo_stack.length + ' deep');
1249                     $scope.in_redo = false;
1250                     $scope.in_undo = false;
1251                 });
1252
1253                 $scope.processUndo = function () {
1254                     if ($scope.record_undo_stack.length) {
1255                         $scope.in_undo = true;
1256
1257                         var undo_item = $scope.record_undo_stack.pop();
1258                         $scope.record_redo_stack.push(undo_item);
1259
1260                         $scope.record = new MARC21.Record({ marcbreaker : undo_item.breaker });
1261                         $scope.controlfields = $scope.record.fields.filter(function(f){ return f.isControlfield() });
1262                         $scope.datafields = $scope.record.fields.filter(function(f){ return !f.isControlfield() });
1263
1264                         $scope.current_event_target = undo_item.target;
1265                         $scope.current_event_target_cursor_pos = undo_item.pos;
1266                         console.log('Undo targeting ' + $scope.current_event_target + ' position ' + $scope.current_event_target_cursor_pos);
1267
1268                         $timeout(function(){$scope.$digest()}).then(setCaret);
1269                         return false;
1270                     }
1271
1272                     return true;
1273                 };
1274
1275                 $scope.processRedo = function () {
1276                     if ($scope.record_redo_stack.length) {
1277                         $scope.in_redo = true;
1278
1279                         var redo_item = $scope.record_redo_stack.pop();
1280                         $scope.record_undo_stack.push(redo_item);
1281
1282                         $scope.record = new MARC21.Record({ marcbreaker : redo_item.breaker });
1283                         $scope.controlfields = $scope.record.fields.filter(function(f){ return f.isControlfield() });
1284                         $scope.datafields = $scope.record.fields.filter(function(f){ return !f.isControlfield() });
1285
1286                         $scope.current_event_target = redo_item.target;
1287                         $scope.current_event_target_cursor_pos = redo_item.pos;
1288                         console.log('Redo targeting ' + $scope.current_event_target + ' position ' + $scope.current_event_target_cursor_pos);
1289
1290                         $timeout(function(){$scope.$digest()}).then(setCaret);
1291                         return false;
1292                     }
1293
1294                     return true;
1295                 };
1296
1297                 $scope.Record = function () {
1298                     return $scope[$scope.record_type];
1299                 };
1300
1301                 $scope.deleteRecord = function () {
1302                     egConfirmDialog.open(
1303                         egCore.strings.CONFIRM_DELETE_RECORD,
1304                         (($scope.record_type == 'bre') ?
1305                             egCore.strings.CONFIRM_DELETE_BRE_MSG :
1306                             egCore.strings.CONFIRM_DELETE_ARE_MSG),
1307                         { id : $scope.recordId }
1308                     ).result.then(function() {
1309                         if ($scope.record_type == 'bre') {
1310                             egCore.net.request(
1311                                 'open-ils.cat',
1312                                 'open-ils.cat.biblio.record_entry.delete',
1313                                 egCore.auth.token(), $scope.recordId
1314                             ).then(function(resp) {
1315                                 var evt = egCore.evt.parse(resp);
1316                                 if (evt) {
1317                                     return egAlertDialog.open(
1318                                         egCore.strings.ALERT_DELETE_FAILED,
1319                                         { id : $scope.recordId, desc : evt.desc }
1320                                     );
1321                                 } else {
1322                                     loadRecord().then(processOnSaveCallbacks);
1323                                 }
1324                             });
1325                         } else {
1326                             $scope.Record().deleted(true);
1327                             return $scope.saveRecord();
1328                         }
1329                     });
1330                 };
1331
1332                 $scope.undeleteRecord = function () {
1333                     $scope.Record().deleted(false);
1334                     return $scope.saveRecord();
1335                 };
1336
1337                 $scope.validateHeadings = function () {
1338                     if ($scope.record_type != 'bre') return;
1339                     var chain = $q.when();
1340                     angular.forEach($scope.record.fields, function(f) {
1341                         if (!$scope.controlSet.bibFieldByTag(f.tag)) return;
1342                         // if heading already has a $0, assume it's good
1343                         if (f.subfield('0', true).length) {
1344                             f.heading_checked = true;
1345                             f.heading_valid = true;
1346                             return;
1347                         }
1348                         var auth_match = $scope.controlSet.bibToAuthorities(f);
1349                         if (auth_match.length == 0) return;
1350                         chain = chain.then(function() {
1351                             var promise = egCore.net.request(
1352                                 'open-ils.search',
1353                                 'open-ils.search.authority.simple_heading.from_xml.batch.atomic',
1354                                 auth_match[0]
1355                             ).then(function (matches) {
1356                                 f.heading_valid = false;
1357                                 if (matches[0]) { // probably set
1358                                     for (var cset in matches[0]) {
1359                                         var arr = matches[0][cset];
1360                                         if (arr.length) {
1361                                             // protect against errant empty string values
1362                                             if (arr.length == 1 && arr[0] == '')
1363                                                 continue;
1364                                             f.heading_valid = true;
1365                                             break;
1366                                         }
1367                                     }
1368                                 }
1369                                 f.heading_checked = true;
1370                             });
1371                             return promise;
1372                         });
1373                     });
1374                 }
1375
1376                 processOnSaveCallbacks = function() {
1377                     var deferred = $q.defer();
1378                     if (typeof $scope.onSaveCallback !== 'undefined') {
1379                         var promise = deferred.promise;
1380
1381                         angular.forEach($scope.onSaveCallback, function (f) {
1382                             if (angular.isFunction(f)) promise = promise.then(f);
1383                         });
1384
1385                     }
1386                     return deferred.resolve($scope.recordId)
1387                 };
1388
1389                 // Returns a promise 
1390                 function createOrUpdateRecord() {
1391
1392                     var promise;
1393                     if ($scope.recordId) {  
1394
1395                         var method = $scope.record_type === 'bre' ?
1396                             'open-ils.cat.biblio.record.marc.replace' :
1397                             'open-ils.cat.authority.record.overlay';
1398
1399                         promise = egCore.net.request(
1400                             'open-ils.cat', method,
1401                             egCore.auth.token(), $scope.recordId, 
1402                             $scope.Record().marc(), $scope.Record().source()
1403                         );
1404
1405                     } else {
1406
1407                         var method = $scope.record_type === 'bre' ?
1408                             'open-ils.cat.biblio.record.xml.create' :
1409                             'open-ils.cat.authority.record.import';
1410
1411                         promise = egCore.net.request(
1412                             'open-ils.cat', method,
1413                             egCore.auth.token(), 
1414                             $scope.Record().marc(),
1415                             $scope.Record().source()
1416                         );
1417                     }
1418
1419                     return promise.then(handleCreateOrUpdateResult);
1420                 }
1421
1422                 function handleCreateOrUpdateResult(result) {
1423
1424                     var evt = egCore.evt.parse(result)
1425                     var mode = $scope.recordId ? 'update' : 'create';
1426
1427                     if (evt) {
1428                         var msg = mode === 'update' ? 
1429                             egStrings.MARC_ALERT_UPDATE_FAILED :
1430                             egStrings.MARC_ALERT_CREATE_FAILED;
1431                         ngToast.warning(msg, {error: '' + evt});
1432                         return $q.reject();
1433                     }
1434
1435                     var msg = mode === 'update' ? 
1436                         egStrings.MARC_ALERT_UPDATE_SUCCESS :
1437                         egStrings.MARC_ALERT_CREATE_SUCCESS;
1438                     ngToast.create(msg);
1439
1440                     console.debug('MARC create/update returned', result);
1441
1442                     // synchronize values 
1443                     if (!$scope.recordId) {
1444                         $scope.recordId = $scope.caretRecId = result.id(); 
1445                     }
1446
1447                     $scope.dirtyFlag = false;
1448
1449                     return result;
1450                 }
1451
1452                 $scope.saveRecord = function () {
1453                     
1454                     if ($scope.inPlaceMode) {
1455                         $scope.marcXml = $scope.record.toXmlString();
1456                         
1457                         if ($scope.record_type == 'bre'){
1458                             $scope.bibSource = $scope.bib_source.id;
1459                         }
1460
1461                         return $timeout(processOnSaveCallbacks);
1462                     }
1463
1464                     $scope.mangle_005();
1465                     $scope.record.pruneEmptyFieldsAndSubfields();
1466                     $scope.Record().marc($scope.record.toXmlString());
1467
1468                     var updating = Boolean($scope.recordId);
1469                     return createOrUpdateRecord().then(function(record) {
1470
1471                         if (updating) {
1472                             $scope.save_stack_depth = $scope.record_undo_stack.length;
1473                         }
1474
1475                         if (!$scope.enable_fast_add) {
1476                             return record;
1477                         }
1478
1479                         egCore.net.request(
1480                             'open-ils.actor',
1481                             'open-ils.actor.anon_cache.set_value',
1482                             null, 'edit-these-copies', {
1483                                 record_id: $scope.recordId,
1484                                 raw: [{
1485                                     label : $scope.fast_item_callnumber,
1486                                     barcode : $scope.fast_item_barcode,
1487                                     fast_add : true
1488                                 }],
1489                                 hide_vols : false,
1490                                 hide_copies : false
1491                             }
1492                         ).then(function(key) {
1493                             if (key) {
1494                                 var url = egCore.env.basePath + 'cat/volcopy/' + key;
1495                                 $timeout(function() { $window.open(url, '_blank') });
1496                             } else {
1497                                 alert('Could not create anonymous cache key!');
1498                             }
1499                         });
1500                     }).then(loadRecord).then(processOnSaveCallbacks);
1501                 };
1502
1503                 $scope.seeBreaker = function () {
1504                     alert($scope.record.toBreaker());
1505                 };
1506
1507                 $scope.$watch('recordId',
1508                     function(newVal, oldVal) {
1509                         if (newVal && newVal !== oldVal) {
1510                             loadRecord();
1511                         }
1512                     }
1513                 );
1514                 $scope.$watch('marcXml',
1515                     function(newVal, oldVal) {
1516                         if (newVal && newVal !== oldVal) {
1517                             loadRecord();
1518                         }
1519                     }
1520                 );
1521
1522                 var unregister = $scope.$watch(function() {
1523                     return egTagTable.initialized();
1524                 }, function(val) {
1525                     if (val) {
1526                         unregister();
1527                         if ($scope.recordId || $scope.marcXml) {
1528                             loadRecord();
1529                         }
1530                     }
1531                 });
1532
1533                 $scope.mangle_005 = function () {
1534                     var now = new Date();
1535                     var y = now.getUTCFullYear();
1536                 
1537                     var m = now.getUTCMonth() + 1;
1538                     if (m < 10) m = '0' + m;
1539                 
1540                     var d = now.getUTCDate();
1541                     if (d < 10) d = '0' + d;
1542                 
1543                     var H = now.getUTCHours();
1544                     if (H < 10) H = '0' + H;
1545                 
1546                     var M = now.getUTCMinutes();
1547                     if (M < 10) M = '0' + M;
1548                 
1549                     var S = now.getUTCSeconds();
1550                     if (S < 10) S = '0' + S;
1551                 
1552                     var stamp = '' + y + m + d + H + M + S + '.0';
1553                     var f = $scope.record.field('005',true)[0];
1554                     if (f) {
1555                         f.data = stamp;
1556                     } else {
1557                         $scope.record.insertOrderedFields(
1558                             new MARC21.Field({
1559                                 tag : '005',
1560                                 data: stamp
1561                             })
1562                         );
1563                     }
1564                 
1565                 }
1566
1567             }
1568         ]          
1569     }
1570 })
1571
1572 .directive("egMarcEditBibsource", ['$timeout',function ($timeout) {
1573     return {
1574         restrict: 'E',
1575         replace: true,
1576         template: '<span class="nullable">'+
1577                     '<select class="form-control" ng-model="bib_source.id" ng-options="s.id() as s.source() for s in bib_sources | orderBy: \'source()\'">'+
1578                       '<option value="">Select a Source</option>'+
1579                     '</select>'+
1580                   '</span>',
1581         controller: ['$scope','egCore',
1582             function ($scope , egCore) {
1583
1584                 egCore.pcrud.retrieveAll('cbs', {}, {atomic : true})
1585                     .then(function(list) {
1586                         $scope.bib_sources = list;
1587                     });
1588
1589                 $scope.$watch('bib_source.id',
1590                     function(newVal, oldVal) {
1591                         if (newVal !== oldVal) {
1592                             $scope.bre.source(newVal);
1593                         }
1594                     }
1595                 );
1596
1597             }
1598         ]
1599     }
1600 }])
1601
1602 .directive("egMarcEditAuthorityLinker", function () {
1603     return {
1604         restrict: 'E',
1605         replace: true,
1606         templateUrl: './cat/share/t_authority_linker',
1607         scope : {
1608             bibField : '=',
1609             controlSet : '=',
1610             changed : '='
1611         },
1612         controller: ['$scope','$uibModal','egCore','egAuth',
1613             function ($scope , $uibModal,  egCore,  egAuth) {
1614
1615                 $scope.searchStr = '';
1616                 var cni = egCore.env.aous['cat.marc_control_number_identifier'] ||
1617                   'Set cat.marc_control_number_identifier in Library Settings';
1618
1619                 var axis_list = $scope.controlSet.bibFieldBrowseAxes($scope.bibField.tag);
1620                 $scope.axis = axis_list[0];
1621
1622                 $scope._controlled_sf_list = {};
1623                 $scope._controlled_auth_sf_list = {};
1624                 var found_acs = [];
1625                 angular.forEach($scope.controlSet.controlSetList(), function(acs_id) {
1626                     if ($scope.controlSet.controlSet(acs_id).control_map[$scope.bibField.tag])
1627                         found_acs.push(acs_id);
1628                 });
1629                 if (found_acs.length) {
1630                      angular.forEach($scope.controlSet.controlSet(found_acs[0]).control_map[$scope.bibField.tag],
1631                         function(value, sf_label) {
1632                             $scope._controlled_sf_list[ sf_label ] = 1;
1633                             angular.forEach($scope.controlSet.controlSet(found_acs[0]).control_map[$scope.bibField.tag][sf_label],
1634                                 function(auth_sf, auth_tag) {
1635                                     if (!$scope._controlled_auth_sf_list[auth_tag]) {
1636                                         $scope._controlled_auth_sf_list[auth_tag] = { };
1637                                     }
1638                                     $scope._controlled_auth_sf_list[auth_tag][auth_sf] = 1;
1639                                 }
1640                             );
1641                         }
1642                     )
1643                 }
1644
1645                 $scope.bibField.subfields.forEach(function (sf) {
1646                     if (sf[0] in $scope._controlled_sf_list) {
1647                         sf.selected = true;
1648                         sf.selectable = true;
1649                     } else {
1650                         sf.selectable = false;
1651                     }
1652                 });
1653                 $scope.summarizeField = function() {
1654                     var source_f = {
1655                         'tag': $scope.bibField.tag,
1656                         'ind1': $scope.bibField.ind1,
1657                         'ind2': $scope.bibField.ind2,
1658                         'subfields': []
1659                     };
1660                     $scope.bibField.subfields.forEach(function(sf) {
1661                         if (sf.selected) {
1662                             source_f.subfields.push([ sf[0], sf[1] ]);
1663                         }
1664                     });
1665                     return source_f;
1666                 }
1667                 $scope.getSearchString = function() {
1668                     var source_f = $scope.summarizeField();
1669                     var values = [];
1670                     angular.forEach(source_f.subfields, function(val) {
1671                         values.push(val[1]);
1672                     });
1673                     return values.join(' ');
1674                 }
1675                 $scope.searchStr = $scope.getSearchString();
1676                 $scope.$watch(function() {
1677                     var ct = 0;
1678                     angular.forEach($scope.bibField.subfields, function(sf) {
1679                         if (sf.selected) ct++
1680                         });
1681                     return ct;
1682                 },
1683                 function(newVal, oldVal) {
1684                     $scope.searchStr = $scope.getSearchString();
1685                 });
1686
1687                 $scope.updateSubfieldZero = function(value) {
1688                     $scope.changed = true;
1689                     $scope.bibField.deleteSubfield({ code : ['0'] });
1690                     $scope.bibField.subfields.push([
1691                         '0', '(' + cni + ')' + value
1692                     ]);
1693                 };
1694
1695                 $scope.applyHeading = function(headingField) {
1696                     // TODO: move the MARC21 rules for copying indicators
1697                     // out of here
1698                     if (headingField.tag == '130' && $scope.bibField.tag == '130') {
1699                         $scope.bibField.ind1 = headingField.ind2;
1700                     } else {
1701                         $scope.bibField.ind1 = headingField.ind1;
1702                     }
1703                     // deal with 4xx and 5xx
1704                     var authFallbackTag = '1' + headingField.tag.substr(1, 2);
1705                     var _valid_auth_sfs = (headingField.tag in $scope._controlled_auth_sf_list) ?
1706                                           $scope._controlled_auth_sf_list[headingField.tag] :
1707                                           (authFallbackTag in $scope._controlled_auth_sf_list) ?
1708                                           $scope._controlled_auth_sf_list[authFallbackTag] :
1709                                           [];
1710                     // save the $0 for later use
1711                     var sfZero = '';
1712                     if (headingField.subfield('0')) {
1713                         sfZero = headingField.subfield('0')[1];
1714                     }
1715                     // grab any bib subfields not under authority control
1716                     // TODO do something about uncontrolled subdivisions
1717                     var uncontrolledBibSf = [];
1718                     angular.forEach($scope.bibField.subfields, function(sf) {
1719                         if (!(sf[0] in $scope._controlled_sf_list) && (sf[0] != '0')) {
1720                             uncontrolledBibSf.push([ sf[0], sf[1] ]);
1721                         }
1722                     });
1723                     // grab the authority subfields
1724                     var authoritySf = [];
1725                     angular.forEach(headingField.subfields, function(sf) {
1726                         if (sf[0] in _valid_auth_sfs) {
1727                             authoritySf.push([ sf[0], sf[1] ]);
1728                         }
1729                     });
1730                     $scope.bibField.subfields.length = 0;
1731                     angular.forEach(authoritySf, function(sf) {
1732                         $scope.bibField.addSubfields(sf[0], sf[1]);
1733                     });
1734                     angular.forEach(uncontrolledBibSf, function(sf) {
1735                         $scope.bibField.addSubfields(sf[0], sf[1]);
1736                     });
1737                     if (sfZero) {
1738                         $scope.bibField.addSubfields('0', sfZero);
1739                     }
1740                     $scope.bibField.subfields.forEach(function (sf) {
1741                     if (sf[0] in $scope._controlled_sf_list) {
1742                             // intentionally not selecting any subfields
1743                             // after we've applied an authority heading
1744                             sf.selected = false;
1745                             sf.selectable = true;
1746                         } else {
1747                             sf.selectable = false;
1748                         }
1749                     });
1750                     $scope.changed = true;
1751                 }
1752
1753                 $scope.createAuthorityFromBib = function(spawn_editor) {
1754                     var source_f = $scope.summarizeField();
1755
1756                     var args = { authority_id : 0 };
1757                     var method = (spawn_editor) ?
1758                         'open-ils.cat.authority.record.create_from_bib.readonly' :
1759                         'open-ils.cat.authority.record.create_from_bib';
1760                     egCore.net.request(
1761                         'open-ils.cat',
1762                         method,
1763                         source_f,
1764                         cni,
1765                         egAuth.token()
1766                     ).then(function(newAuthority) {
1767                         if (spawn_editor) {
1768                             $uibModal.open({
1769                                 templateUrl: './cat/share/t_edit_new_authority',
1770                                 size: 'lg',
1771                                 controller:
1772                                     ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
1773                                     $scope.focusMe = true;
1774                                     $scope.args = args;
1775                                     $scope.dirty_flag = false;
1776                                     $scope.marc_xml = newAuthority,
1777                                     $scope.ok = function(args) { $uibModalInstance.close(args) }
1778                                     $scope.cancel = function () { $uibModalInstance.dismiss() }
1779                                 }]
1780                             }).result.then(function (args) {
1781                                 if (!args || !args.authority_id) return;
1782                                 $scope.updateSubfieldZero(args.authority_id);
1783                             });
1784                         } else {
1785                             $scope.updateSubfieldZero(newAuthority.id());
1786                         }
1787                     });
1788                 }
1789
1790             }
1791         ]
1792     }
1793 })
1794
1795 .directive("egPhyscharWizard", ['$sce', function ($sce) {
1796     return {
1797         restrict: 'E',
1798         replace: true,
1799         templateUrl: './cat/share/t_physchar_wizard',
1800         scope : {
1801             field : '='
1802         },
1803         controller: ['$scope','$q','egTagTable',
1804             function ($scope , $q , egTagTable) {
1805
1806                 // $scope.step is the 1-based position in the list of 
1807                 // subfields for the currently selected type.
1808                 // step==0 means we are currently selecting the type
1809                 $scope.step = 0;
1810
1811                 // position and offset of the "subfields" we're
1812                 // currently editing; this is maintained as a convenience
1813                 // for the highlighting of the currently active position
1814                 $scope.offset = 0;
1815                 $scope.len = 1;
1816
1817                 if (!$scope.field.data) 
1818                     $scope.field.data = '';
1819
1820                 // currently selected subfield value selector option
1821                 $scope.selected_option = null;
1822
1823                 function current_ptype() {
1824                     return $scope.field.data.substr(0, 1);   
1825                 }
1826
1827                 function current_subfield() {
1828                     return egTagTable.getPhysCharSubfieldMap(current_ptype())
1829                     .then(function(sf_list) {return sf_list[$scope.step-1]});
1830                 }
1831
1832                 $scope.values_for_step = [];
1833                 function set_values_for_step() {
1834                     var promise;
1835
1836                     if ($scope.step == 0) {
1837                         $scope.offset = 0;
1838                         $scope.len    = 1;
1839                         promise = egTagTable.getPhysCharTypeMap();
1840                     } else {
1841                         promise = current_subfield().then(
1842                             function(subfield) {
1843                                 return egTagTable
1844                                     .getPhysCharValueMap(subfield.id());
1845                             }
1846                         );
1847                     }
1848
1849                     return promise.then(function(list) { 
1850                         $scope.values_for_step = list;
1851                         set_selected_option_from_field();
1852                         set_label_for_step();
1853                     });
1854                 }
1855
1856                 $scope.change_ptype = function(option) {
1857                     $scope.selected_option = option;
1858                     var new_val = option.ptype_key();
1859                     if (current_ptype() != new_val) {
1860                         $scope.field.data = new_val; // total reset
1861                     }
1862                 }
1863
1864                 $scope.change_option = function(option) {
1865                     $scope.selected_option = option;
1866                     var new_val = option.value();
1867                     get_step_slot().then(function(slot) {
1868                         var value = $scope.field.data;
1869                         while (value.length < (slot[0] + slot[1])) 
1870                             value += ' ';
1871                         var before = value.substr(0, slot[0]);
1872                         var after = value.substr(slot[0] + slot[1]);
1873                         $scope.field.data = 
1874                             before + new_val.substr(0, slot[1]) + after;
1875                         $scope.offset = slot[0];
1876                         $scope.len    = slot[1];
1877                     });
1878                 }
1879
1880                 function get_step_slot() {
1881                     if ($scope.step == 0) return $q.when([0, 1]);
1882                     return current_subfield().then(function(sf) {
1883                         return [sf.start_pos(), sf.length()]
1884                     });
1885                 }
1886
1887                 $scope.is_last_step = function() {
1888                     // This one is called w/ every digest, so avoid async
1889                     // calls.  Wait until we have loaded the current ptype
1890                     // subfields to determine if this is the last step.
1891                     return (
1892                         current_ptype() && 
1893                         egTagTable.phys_char_sf_map[current_ptype()] &&
1894                         egTagTable.phys_char_sf_map[current_ptype()].length 
1895                             == $scope.step
1896                     );
1897                 }
1898
1899                 $scope.label_for_step = '';
1900                 function set_label_for_step() {
1901                     if ($scope.step > 0) {
1902                         current_subfield().then(function(sf) {
1903                             $scope.label_for_step = sf.label();
1904                         });
1905                     }
1906                 }
1907                 
1908                 $scope.next_step = function() {
1909                     $scope.step++;
1910                     set_values_for_step();
1911                 }
1912
1913                 $scope.prev_step = function() {
1914                     $scope.step--;
1915                     set_values_for_step();
1916                 }
1917
1918                 function set_selected_option_from_field() {
1919                     if ($scope.step == 0) {
1920                         $scope.selected_option = $scope.values_for_step
1921                         .filter(function(opt) {
1922                             return (opt.ptype_key() == current_ptype())})[0];
1923                     } else {
1924                         get_step_slot().then(function(slot) {
1925                             $scope.offset = slot[0];
1926                             $scope.len    = slot[1];
1927                             var val = String.prototype.substr.apply(                      
1928                                 $scope.field.data, slot);
1929                             if (val) {
1930                                 $scope.selected_option = $scope.values_for_step
1931                                 .filter(function(opt) { 
1932                                     return (opt.value() == val)})[0];
1933                             } else {
1934                                 $scope.selected_option = null;
1935                             }
1936                         })
1937                     }
1938                 }
1939
1940                 $scope.highlightedFieldData = function() {
1941                     if (
1942                             $scope.len && $scope.field.data &&
1943                             $scope.field.data.length > 0 &&
1944                             $scope.field.data.length >= $scope.offset
1945                         ) {
1946                         return $sce.trustAsHtml(
1947                             $scope.field.data.substring(0, $scope.offset) + 
1948                             '<span class="active-physchar">' +
1949                             $scope.field.data.substr($scope.offset, $scope.len) +
1950                             '</span>' +
1951                             $scope.field.data.substr($scope.offset + $scope.len)
1952                         );
1953                     } else {
1954                         return $scope.field.data;
1955                     }
1956                 };
1957
1958                 set_values_for_step();
1959             }
1960         ]
1961     }
1962 }])
1963
1964
1965 .directive("egMarcEditAuthorityBrowser", function () {
1966     return {
1967         restrict: 'E',
1968         replace: true,
1969         templateUrl: './cat/share/t_authority_browser',
1970         scope : {
1971             searchString : '=',
1972             controlSet : '=',
1973             axis : '=',
1974             applyHeading : '&'
1975         },
1976         controller: ['$scope','$http',
1977             function ($scope , $http) {
1978
1979                 $scope.page = 0;
1980                 $scope.limit = 5;
1981                 $scope.main_headings = [];
1982
1983                 function getHeadingString(headingField) {
1984                     var heading = '';
1985                     angular.forEach(headingField.subfields, function (sf) {
1986                         if (['x', 'y', 'z'].indexOf(sf[0]) > -1) {
1987                             heading += ' --';
1988                         }
1989                         if (heading) {
1990                             heading += ' ';
1991                         }
1992                         heading += sf[1];
1993                     });
1994                     return heading;
1995                 }
1996
1997                 $scope.doBrowse = function() {
1998                     $scope.main_headings.length = 0;
1999                     if ($scope.searchString.length == 0) return;
2000                     var type = 'authority.'
2001                     var url = '/opac/extras/browse/marcxml/'
2002                             + 'authority.' + $scope.axis + '.refs'
2003                             + '/1' // OU - currently unscoped
2004                             + '/' + $scope.searchString
2005                             + '/' + $scope.page
2006                             + '/' + $scope.limit;
2007                     $http({
2008                         url : url,
2009                         method : 'GET',
2010                         transformResponse : function(data) {
2011                             // use a bit of jQuery to deal with the XML
2012                             var $xml = $( $.parseXML(data) );
2013                             var marc = [];
2014                             $xml.find('record').each(function() {
2015                                 var rec = new MARC21.Record();
2016                                 rec.fromXmlDocument($(this)[0].outerHTML);
2017                                 marc.push(rec);
2018                             });
2019                             return marc;
2020                         }
2021                     }).then(function(response) {
2022                         angular.forEach(response.data, function(rec) {
2023                             var authId = rec.subfield('901', 'c')[1];
2024                             var auth_org = '';
2025                             if (rec.field('003')) {
2026                                 auth_org = rec.field('003').data;
2027                             }
2028                             var headingField = rec.field('1..');
2029                             var seeFroms = rec.field('4..', true);
2030                             var seeAlsos = rec.field('5..', true);
2031
2032                             var main_heading = {
2033                                 authority_id : authId,
2034                                 heading : getHeadingString(headingField),
2035                                 seealso_headings : [ ],
2036                                 seefrom_headings : [ ],
2037                             };
2038
2039                             var sfZero = '';
2040                             if (auth_org) {
2041                                 sfZero = '(' + auth_org + ')';
2042                             }
2043                             sfZero += authId;
2044                             headingField.addSubfields('0', sfZero);
2045
2046                             main_heading['headingField'] = headingField;
2047                             angular.forEach(seeAlsos, function(headingField) {
2048                                 main_heading.seealso_headings.push({
2049                                     heading : getHeadingString(headingField),
2050                                     headingField : headingField
2051                                 });
2052                             });
2053                             angular.forEach(seeFroms, function(headingField) {
2054                                 main_heading.seefrom_headings.push({
2055                                     heading : getHeadingString(headingField),
2056                                     headingField : headingField
2057                                 });
2058                             });
2059                             $scope.main_headings.push(main_heading);
2060                         });
2061                     });
2062                 }
2063
2064                 $scope.$watch('searchString',
2065                     function(newVal, oldVal) {
2066                         if (newVal !== oldVal) {
2067                             $scope.doBrowse();
2068                         }
2069                     }
2070                 );
2071                 $scope.$watch('page',
2072                     function(newVal, oldVal) {
2073                         if (newVal !== oldVal) {
2074                             $scope.doBrowse();
2075                         }
2076                     }
2077                 );
2078
2079                 $scope.doBrowse();
2080             }
2081         ]
2082     }
2083 })
2084
2085 ;