Merge branch 'bug_8660' into 3.12-master
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / quotes.tt
1     [% INCLUDE 'doc-head-open.inc' %]
2     <title>Koha &rsaquo; Tools &rsaquo; Quote editor</title>
3     [% INCLUDE 'doc-head-close.inc' %]
4     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
5     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/quotes.css" />
6     <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
7     <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/dataTables.fnReloadAjax.js"></script>
8     [% INCLUDE 'datatables-strings.inc' %]
9     <script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>
10     <script type="text/javascript" src="[% themelang %]/js/jquery.jeditable.mini.js"></script>
11     <script type="text/javascript">
12     //<![CDATA[
13     var oTable; /* oTable needs to be global */
14     var sEmptyTable = _('No quotes available. Please use the "Add quote" button to add a quote.'); /* override the default message in datatables-strings.inc */
15     $(document).ready(function() {
16         /* NOTE: This is an ajax-source datatable and *not* a server-side sourced datatable. */
17         /* See the datatable docs if you don't understand this difference. */
18         oTable = $("#quotes_editor").dataTable({
19                     "bAutoWidth"        : false,
20                     "bProcessing"       : true,
21                     "bPaginate"         : true,
22                     "sPaginationType"   : "full_numbers",
23                     "sAjaxSource"       : "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
24                     "aoColumns"         : [
25                                             { "sWidth": "3%"  },
26                                             { "sWidth": "11%" },
27                                             { "sWidth": "75%" },
28                                             { "sWidth": "11%" },
29                                           ],
30                    "oLanguage"          : {
31                                             "oPaginate": {
32                                                            "sFirst": MSG_DT_FIRST,
33                                                            "sLast": MSG_DT_LAST,
34                                                            "sNext": MSG_DT_NEXT,
35                                                            "sPrevious": MSG_DT_PREVIOUS,
36                                                          },
37                                             "sEmptyTable": MSG_DT_EMPTY_TABLE,
38                                             "sInfo": MSG_DT_INFO,
39                                             "sInfoEmpty": MSG_DT_INFO_EMPTY,
40                                             "sInfoFiltered": MSG_DT_INFO_FILTERED,
41                                             "sLengthMenu": MSG_DT_LENGTH_MENU,
42                                             "sLoadingRecords": MSG_DT_LOADING_RECORDS,
43                                             "sProcessing": MSG_DT_PROCESSING,
44                                             "sSearch": MSG_DT_SEARCH,
45                                             "sZeroRecords": MSG_DT_ZERO_RECORDS,
46                                           },
47                    "fnPreDrawCallback": function(oSettings) {
48                         return true;
49                     },
50                     "fnRowCallback": function( nRow, aData, iDisplayIndex ) {
51                         /* do foo on the current row and its child nodes */
52                         var noEditFields = [];
53                         var quoteID = $('td', nRow)[0].innerHTML;
54                         $(nRow).attr("id", quoteID); /* set row ids to quote id */
55                         $('td:eq(0)', nRow).click(function() {$(this.parentNode).toggleClass('selected',this.clicked);}); /* add row selectors */
56                         $('td:eq(0)', nRow).attr("title", _("Click ID to select/deselect quote"));
57                         $('td', nRow).attr("id",quoteID); /* FIXME: this is a bit of a hack */
58                         if (isNaN(quoteID)) {
59                             noEditFields = [0,1,2,3]; /* all fields when adding a quote */
60                         }
61                         else {
62                             noEditFields = [0,3]; /* id, timestamp */
63                         }
64                         /* apply no_edit id to noEditFields */
65                         for (i=0; i<noEditFields.length; i++) {
66                             $('td', nRow)[noEditFields[i]].setAttribute("id","no_edit");
67                         }
68                         return nRow;
69                     },
70                    "fnDrawCallback": function(oSettings) {
71                         /* Apply the jEditable handlers to the table on all fields w/o the no_edit id */
72                         $('#quotes_editor tbody td[id!="no_edit"]').editable( "/cgi-bin/koha/tools/quotes/quotes_ajax.pl", {
73                             "submitdata"    : function ( value, settings ) {
74                                                   return {
75                                                       "column"        : oTable.fnGetPosition( this )[2],
76                                                       "action"        : "edit",
77                                                   };
78                                               },
79                             "height"        : "14px",
80                             "placeholder"   : "Saving data...",
81                         });
82                    },
83         });
84     });
85
86         function fnClickAddQuote(e, node) {
87             if (e.charCode) {
88                 /* some browsers only give charCode, so this will need to be */
89                 /* fixed up to handle that */
90                 console.log('charCode: '+e.charCode);
91             }
92             if (e.keyCode == 13) {
93                 var quoteSource = $('#quoteSource').val();
94                 var quoteText = $('#quoteText').val()
95                 /* If passed a quote source, add the quote to the db */
96                 if (quoteSource && quoteText) {
97                     $.ajax({
98                         url: "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
99                         type: "POST",
100                         data: {
101                                 "source"    : quoteSource,
102                                 "text"      : quoteText,
103                                 "action"    : "add",
104                         },
105                         success: function(data){
106                                     var newQuote = data[0];
107                                     var aRow = oTable.fnUpdate(
108                                         newQuote,
109                                         node,
110                                         false,
111                                         false
112                                     );
113                                     oTable.fnPageChange( 'last' );
114                                     $('.add_quote_button').attr('onclick', 'fnClickAddRow()'); // re-enable add button
115                             }
116                     });
117                 }
118                 else {
119                     alert(_('Please supply both the text and source of the quote before saving.'));
120                 }
121             }
122             else if (e.keyCode == 27) {
123                 if (confirm(_('Are you sure you want to cancel adding this quote?'))) {
124                     oTable.fnDeleteRow(node);
125                 }
126                 else {
127                     return;
128                 }
129             }
130         }
131
132         function fnClickAddRow() {
133             $('.add_quote_button').removeAttr('onclick'); // disable add button once it has been clicked
134             var aRow = oTable.fnAddData(
135                 [
136                     'NA', // this is hackish to fool the datatable sort routine into placing this row at the end of the list...
137                     '<input id="quoteSource" type="text" style="height:14px; width:99%" onkeydown="fnClickAddQuote(event,this.parentNode.parentNode)"/>',
138                     '<input id="quoteText" type="text" style="height:14px; width:99%" onkeydown="fnClickAddQuote(event,this.parentNode.parentNode)"/>',
139                     '0000-00-00 00:00:00',
140                 ],
141                 false
142             );
143             oTable.fnPageChange( 'last' );
144             $('#quoteSource').focus();
145         }
146
147         function fnClickDeleteRow() {
148             var idsToDelete = oTable.$('.selected').map(function() {
149                   return this.id;
150             }).get().join(', ');
151             if (!idsToDelete) {
152                 alert(_('Please select a quote(s) by clicking the quote id(s) you desire to delete.'));
153             }
154             else if (confirm(_('Are you sure you wish to delete quote(s) ')+idsToDelete+'?')) {
155                 oTable.$('.selected').each(function(){
156                         var quoteID = $(this).attr('id');
157                             $.ajax({
158                                 url: "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
159                                 type: "POST",
160                                 data: {
161                                         "id"        : quoteID,
162                                         "action"    : "delete",
163                                 },
164                                 /* Delete the row from the datatable */
165                                 success: function(){
166                                     oTable.fnDeleteRow(this);
167                                     oTable.fnReloadAjax(null, null, true);
168                                 }
169                             });
170                     });
171             }
172             else {
173                 return;
174             }
175         }
176     //]]>
177     </script>
178 </head>
179 <body id="tools_quotes" class="tools">
180 [% INCLUDE 'header.inc' %]
181 [% INCLUDE 'cat-search.inc' %]
182
183 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; Quote Editor</div>
184
185 <div id="doc3" class="yui-t2">
186     <div id="bd">
187         <div id="yui-main">
188             <div class="yui-b">
189                 [% INCLUDE 'quotes-toolbar.inc' %]
190                 <h2>Quote editor</h2>
191                 <div id="instructions">
192                 <fieldset id="quote_editor_help" class="rows">
193                     <legend>Instructions</legend>
194                     <div id="quote_editor_inst">
195                         <ul>
196                         <li>Click on the 'Add quote' button to add a single quote; Press the &lt;Enter&gt; key to save the quote. <b>Note:</b> Both the 'source' and 'text' fields must have content in order for the quote to be saved.</li>
197                         <li>Click on any field to edit the contents; Press the &lt;Enter&gt; key to save edit.</li>
198                         <li>Click on one or more quote numbers to select entire quotes for deletion; Click the 'Delete quote(s)' button to delete selected quotes.</li>
199                         <li>Click the 'Import quotes' button in the toolbar to import a CSV file of quotes.</li>
200                         </ul>
201                     </div>
202                 </fieldset>
203                 </div>
204                 <table id="quotes_editor">
205                 <thead>
206                     <tr>
207                         <th><span style="cursor: help" onclick="event.stopPropagation();alert(_('Click on the quote\'s id to select or deselect the quote. Multiple quotes may be selected.'));">ID</span></th>
208                         <th>Source</th>
209                         <th>Text</th>
210                         <th>Last displayed</th>
211                     </tr>
212                 </thead>
213                 <tbody>
214                     <!-- tbody content is generated by DataTables -->
215                     <tr>
216                         <td></td>
217                         <td></td>
218                         <td>Loading data...</td>
219                         <td></td>
220                     </tr>
221                 </tbody>
222                 </table>
223                 <fieldset id="footer" class="action">
224                 </fieldset>
225             </div>
226         </div>
227     <div class="yui-b noprint">
228         [% INCLUDE 'tools-menu.inc' %]
229     </div>
230 </div>
231 [% INCLUDE 'intranet-bottom.inc' %]