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