Bug 19263: Rancor - Add auto-001 widget
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / cateditor-widgets-marc21.inc
1 <div id="editor-widget-templates" style="display:none">
2     <div id="widget-leader">
3         Leader:&nbsp;<span title="Record length (autogenerated)">#####</span>
4         <select name="f5" title="Record status">
5             <option value="a">a - Increase in encoding level</option>
6             <option value="c">c - Corrected or revised</option>
7             <option value="d">d - Deleted</option>
8             <option value="n">n - New</option>
9             <option value="p">p - Increase in encoding level from prepublication</option>
10         </select>
11         <select name="f6" title="Type of record">
12             <option value="a">a - Language material</option>
13             <option value="c">c - Notated music</option>
14             <option value="d">d - Manuscript notated music</option>
15             <option value="e">e - Cartographic material</option>
16             <option value="f">f - Manuscript cartographic material</option>
17             <option value="g">g - Projected medium</option>
18             <option value="i">i - Nonmusical sound recording</option>
19             <option value="j">j - Musical sound recording</option>
20             <option value="k">k - Two-dimensional nonprojectable graphic</option>
21             <option value="m">m - Computer file</option>
22             <option value="o">o - Kit</option>
23             <option value="p">p - Mixed materials</option>
24             <option value="r">r - Three-dimensional artifact or naturally occurring object</option>
25             <option value="t">t - Manuscript language material</option>
26         </select>
27         <select name="f7" title="Bibliographic level">
28             <option value="a">a - Monographic component part</option>
29             <option value="b">b - Serial component part</option>
30             <option value="c">c - Collection</option>
31             <option value="d">d - Subunit</option>
32             <option value="i">i - Integrating resource</option>
33             <option value="m">m - Monograph/item</option>
34             <option value="s">s - Serial</option>
35         </select>
36         <select name="f8" title="Type of control">
37                 <option value=" ">_ - No specific type</option>
38                 <option value="a">a - Archival</option>
39         </select>
40         <span title="Encoding (forced Unicode)">a</span>
41         <span title="Indicator/subfield lengths">22</span>
42         <span title="Data base address (autogenerated)">#####</span>
43         <select name="f17" title="Encoding level">
44             <option value=" ">_ - Full level</option>
45             <option value="1">1 - Full level, material not examined</option>
46             <option value="2">2 - Less-than-full level, material not examined</option>
47             <option value="3">3 - Abbreviated level</option>
48             <option value="4">4 - Core level</option>
49             <option value="5">5 - Partial (preliminary) level</option>
50             <option value="7">7 - Minimal level</option>
51             <option value="8">8 - Prepublication level</option>
52             <option value="u">u - Unknown</option>
53             <option value="z">z - Not applicable</option>
54         </select>
55         <select name="f18" title="Descriptive cataloging form">
56             <option value=" ">_ - Non-ISBD</option>
57             <option value="a">a - AACR 2</option>
58             <option value="c">c - ISBD punctuation omitted</option>
59             <option value="i">i - ISBD punctuation included</option>
60             <option value="n">n - Non-ISBD punctuation omitted</option>
61             <option value="u">u - Unknown</option>
62         </select>
63         <select name="f19" title="Multipart record resource level">
64             <option value=" ">_ - Not specified or not applicable</option>
65             <option value="a">a - Set</option>
66             <option value="b">b - Part with independent title</option>
67             <option value="c">c - Part with dependent title</option>
68         </select>
69         <span title="Length of directory elements">4500</span>
70     </div>
71 </div>
72
73 <script>
74
75 /**
76  * Each widget should provide one to three methods:
77  *   init( text ): Returns the DOM node for this widget.
78  *   postCreate( node, mark ): Optional, called once the mark has been created
79  *                             and the node shown. Bind event handlers here.
80  *   makeTemplate(): Optional, should return some sane default contents for a
81  *                   newly created field/subfield. '<empty>' will be used if this
82  *                   method is unset.
83  *
84  * Following the Koha convention, control fields are defined as tags with a
85  * single subfield, '@'.
86  */
87
88 require( [ 'koha-backend', 'widget' ], function( KohaBackend, Widget ) {
89     Widget.Register( '000@', {
90         makeTemplate: function() {
91             return '     nam a22     7a 4500';
92         },
93         init: function() {
94             var $result = $( '<span class="subfield-widget fixed-widget"></span>' );
95
96             return $result[0];
97         },
98         postCreate: function() {
99             // Clear the length and directory start fields; these are unnecessary for MARCXML and will be filled in upon USMARC export
100             this.setFixed( 0, 5, '     ' );
101             this.setFixed( 9, 17, 'a22     ' );
102             this.setFixed( 20, 24, '4500' );
103
104             this.insertTemplate( '#widget-leader' );
105
106             this.bindFixed( '[name=f5]', 5, 6 );
107             this.bindFixed( '[name=f6]', 6, 7 );
108             this.bindFixed( '[name=f7]', 7, 8 );
109             this.bindFixed( '[name=f8]', 8, 9 );
110             this.bindFixed( '[name=f17]', 17, 18 );
111             this.bindFixed( '[name=f18]', 18, 19 );
112             this.bindFixed( '[name=f19]', 19, 20 );
113         },
114     } );
115
116     Widget.Register( '001@', {
117         init: function() {
118             var $result = $(
119                 '<span class="subfield-widget">'
120                 + _("Control number: ")
121                 + '<span class="control-number-widget-contents"></span>'
122                 + '<button class="control-number-widget-assign">' + _("Assign next") + '</button>'
123                 + '<select class="control-number-widget-sequence"></select>'
124                 + '<button class="control-number-widget-override">Override</button>'
125                 + '</span>'
126             );
127
128             return $result[0];
129         },
130         setControlNumber: function( text ) {
131             if ( text ) this.setText( text );
132             $( this.node ).find('.control-number-widget-contents')
133                 .html( text == '<empty>' ? ( '<span class="hint">' + _("unset") + '</span>' ) : text );
134             this.mark.changed();
135         },
136         postCreate: function( node, mark ) {
137             var widget = this;
138             this.setControlNumber( this.text );
139             $( this.node )
140                 .find('.control-number-widget-assign').click( function() {
141                     var sequence = $( widget.node ).find('.control-number-widget-sequence').val();
142                     $.post(
143                         '/cgi-bin/koha/svc/cataloguing/control_num_sequences/' + sequence
144                     ).done( function( result ) {
145                         if ( result.next_value ) widget.setControlNumber( result.next_value );
146                     } );
147                 } ).end()
148                 .find('.control-number-widget-override').click( function() {
149                     var result = prompt( _("Enter new control number") );
150
151                     if ( result ) widget.setControlNumber( result );
152                 } ).end();
153
154             var sequence_list = $.map( KohaBackend.GetAuthorisedValues( 'CONTROL_NUM_SEQUENCE' ), function( authval ) {
155                 return authval.lib;
156             } );
157             sequence_list.sort();
158
159             $.each( sequence_list, function( undef, sequence ) {
160                 $( widget.node ).find('.control-number-widget-sequence').append( '<option>' + sequence + '</option>' );
161             } );
162
163             // TODO: Make Enter on select click "Assign"
164         }
165     } );
166
167     Widget.Register( '005@', {
168         init: function() {
169             var $result = $( '<span class="subfield-widget fixed-widget">' + _("Updated: ") + '</span>' );
170
171             return $result[0];
172         },
173         postCreate: function( node, mark ) {
174             var parts = this.text.match( /(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})\.(\d)/ );
175
176             if ( parts ) {
177                 var dateVal = new Date(
178                     parseInt( parts[1] ), // Year
179                     parseInt( parts[2] ) - 1, // Month (0-11)
180                     parseInt( parts[3] ), // Day
181                     parseInt( parts[4] ), // Hour
182                     parseInt( parts[5] ), // Minute
183                     parseInt( parts[6] ), // Second
184                     parseInt( parts[7] ) * 100 // Millisecond
185                 );
186
187                 $( this.node ).append( dateVal.toLocaleString() );
188             } else {
189                 $( this.node ).append( '<span class="hint">' + _("unset") + '</span>' );
190             }
191         }
192     } );
193
194     Widget.Register( '006@', {
195         makeTemplate: function() {
196             return "a                 ";
197         },
198         init: function() {
199             var $result = $( '<span class="subfield-widget fixed-widget">' + _("Fixed data:") + '<span class="hint widget-loading">' + _("Loading...") + '</span></span>' );
200
201             return $result[0];
202         },
203         postCreate: function( node, mark ) {
204             this.createFromXML( 'marc21/xml/006' );
205         }
206     } );
207
208     Widget.Register( '007@', {
209         makeTemplate: function() {
210             return "a       ";
211         },
212         init: function() {
213             var $result = $( '<span class="subfield-widget fixed-widget">' + _("Fixed data:") + '<span class="hint widget-loading">' + _("Loading...") + '</span></span>' );
214
215             return $result[0];
216         },
217         postCreate: function( node, mark ) {
218             this.createFromXML( 'marc21/xml/007' );
219         }
220     } );
221
222     Widget.Register( '008@', {
223         makeTemplate: function() {
224             var now = new Date();
225             return Widget.PadNum( now.getYear() % 100, 2 ) + Widget.PadNum( now.getMonth() + 1, 2 ) + Widget.PadNum( now.getDate(), 2 ) + "b        xxu||||| |||| 00| 0 [% DefaultLanguageField008 | html %] d";
226         },
227         init: function() {
228             var $result = $( '<span class="subfield-widget fixed-widget">' + _("Fixed data:") + '<span class="hint widget-loading">' + _("Loading...") + '</span></span>' );
229
230             return $result[0];
231         },
232         postCreate: function( node, mark ) {
233             this.createFromXML( 'marc21/xml/008' );
234         }
235     } );
236 } );
237
238 </script>