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