Bug 25744: replace <b> with <strong> in the staff interface
[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                             <strong>Note: </strong>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                         "placeholder"   : "Saving data...",
126                     });
127                },
128             });
129             $("#add_quote").click(function(){
130                 fnClickAddRow();
131                 return false;
132             });
133             $("#delete_quote").click(function(){
134                 fnClickDeleteRow();
135                 return false;
136             });
137             $("#id_help").on("click",function(e){
138                 e.stopPropagation();
139                 alert( _("Click on the quote's id to select or deselect the quote. Multiple quotes may be selected.") );
140             });
141         });
142
143         function fnClickAddQuote(e, node) {
144             if (e.charCode) {
145                 /* some browsers only give charCode, so this will need to be */
146                 /* fixed up to handle that */
147                 console.log('charCode: '+e.charCode);
148             }
149             if (e.keyCode == 13) {
150                 var quoteSource = $('#quoteSource').val();
151                 var quoteText = $('#quoteText').val()
152                 /* If passed a quote source, add the quote to the db */
153                 if (quoteSource && quoteText) {
154                     $.ajax({
155                         url: "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
156                         type: "POST",
157                         data: {
158                             "source"    : quoteSource,
159                             "text"      : quoteText,
160                             "action"    : "add",
161                         },
162                         success: function(data){
163                             var newQuote = data[0];
164                             var aRow = oTable.fnUpdate(
165                                 newQuote,
166                                 node,
167                                 undefined,
168                                 false,
169                                 false
170                             );
171                             oTable.fnPageChange( 'last' );
172                             $('.add_quote_button').attr('onclick', 'fnClickAddRow()'); // re-enable add button
173                         }
174                     });
175                 } else {
176                     alert(_("Please supply both the text and source of the quote before saving."));
177                 }
178             } else if (e.keyCode == 27) {
179                 if (confirm(_("Are you sure you want to cancel adding this quote?"))) {
180                     oTable.fnDeleteRow(node);
181                 } else {
182                     return;
183                 }
184             }
185         }
186
187         function fnClickAddRow() {
188             $('.add_quote_button').removeAttr('onclick'); // disable add button once it has been clicked
189             var aRow = oTable.fnAddData(
190                 [
191                     'NA', // this is hackish to fool the datatable sort routine into placing this row at the end of the list...
192                     '<input id="quoteSource" type="text" style="width:99%" onkeydown="fnClickAddQuote(event,this.parentNode.parentNode)"/>',
193                     '<input id="quoteText" type="text" style="width:99%" onkeydown="fnClickAddQuote(event,this.parentNode.parentNode)"/>',
194                     '0000-00-00 00:00:00',
195                 ],
196                 false
197             );
198             oTable.fnPageChange( 'last' );
199             $('#quoteSource').focus();
200         }
201
202         function fnClickDeleteRow() {
203             var idsToDelete = oTable.$('.selected').map(function() {
204                   return this.id;
205             }).get().join(', ');
206             if (!idsToDelete) {
207                 alert(_("Please select a quote(s) by clicking the quote id(s) you desire to delete."));
208             } else if (confirm(_("Are you sure you wish to delete quote(s) %s?").format(idsToDelete))) {
209                 oTable.$('.selected').each(function(){
210                     var quoteID = $(this).attr('id');
211                     $.ajax({
212                         url: "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
213                         type: "POST",
214                         data: {
215                                 "id"        : quoteID,
216                                 "action"    : "delete",
217                         },
218                         /* Delete the row from the datatable */
219                         success: function(){
220                             oTable.fnDeleteRow(this);
221                             oTable.fnReloadAjax(null, null, true);
222                         }
223                     });
224                 });
225             } else {
226                 return;
227             }
228         }
229     </script>
230 [% END %]
231
232 [% INCLUDE 'intranet-bottom.inc' %]