mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			146 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			146 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /*
 | |
|  * list.js
 | |
|  * Copyright (C) 2016 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This software may be modified and distributed under the terms of the
 | |
|  * Creative Commons Attribution-ShareAlike 4.0 International License.
 | |
|  *
 | |
|  * See the LICENSE file for details.
 | |
|  */
 | |
| 
 | |
| /** global: edit_selected_txt, delete_selected_txt */
 | |
| 
 | |
| $(document).ready(function () {
 | |
|     "use strict";
 | |
|     $('.mass_edit_all').show();
 | |
|     $('.mass_select').click(startMassSelect);
 | |
|     $('.mass_stop_select').click(stopMassSelect);
 | |
| 
 | |
|     // top button to select all / deselect all:
 | |
|     $('input[name="select_all"]').change(function () {
 | |
|         if (this.checked) {
 | |
|             checkAll();
 | |
|             countChecked();
 | |
|         } else {
 | |
|             uncheckAll();
 | |
|             countChecked();
 | |
|         }
 | |
|     });
 | |
|     $('.select_all_single').change(function () {
 | |
|         countChecked();
 | |
|     });
 | |
| 
 | |
|     // click the edit button:
 | |
|     $('.mass_edit').click(goToMassEdit);
 | |
|     // click the delete button:
 | |
|     $('.mass_delete').click(goToMassDelete);
 | |
| });
 | |
| 
 | |
| function goToMassEdit() {
 | |
|     "use strict";
 | |
|     var checkedArray = getCheckboxes();
 | |
| 
 | |
|     // go to specially crafted URL:
 | |
|     window.location.href = 'transactions/mass/edit/' + checkedArray;
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| function goToMassDelete() {
 | |
|     "use strict";
 | |
|     var checkedArray = getCheckboxes();
 | |
| 
 | |
|     // go to specially crafted URL:
 | |
|     window.location.href = 'transactions/mass/delete/' + checkedArray;
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| function getCheckboxes() {
 | |
|     "use strict";
 | |
|     var list = [];
 | |
|     $.each($('.select_all_single'), function (i, v) {
 | |
|         var checkbox = $(v);
 | |
|         if (checkbox.prop('checked')) {
 | |
|             // add to list.
 | |
|             list.push(checkbox.val());
 | |
|         }
 | |
|     });
 | |
|     return list;
 | |
| }
 | |
| 
 | |
| 
 | |
| function countChecked() {
 | |
|     "use strict";
 | |
|     var checked = $('.select_all_single:checked').length;
 | |
|     if (checked > 0) {
 | |
|         $('.mass_edit span').text(edit_selected_txt + ' (' + checked + ')');
 | |
|         $('.mass_delete span').text(delete_selected_txt + ' (' + checked + ')');
 | |
|         $('.mass_button_options').show();
 | |
| 
 | |
|     } else {
 | |
|         $('.mass_button_options').hide();
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| function checkAll() {
 | |
|     "use strict";
 | |
|     $('.select_all_single').prop('checked', true);
 | |
| }
 | |
| function uncheckAll() {
 | |
|     "use strict";
 | |
|     $('.select_all_single').prop('checked', false);
 | |
| }
 | |
| 
 | |
| function stopMassSelect() {
 | |
|     "use strict";
 | |
| 
 | |
|     // uncheck all:
 | |
|     $('input[name="select_all"]').prop('checked', false);
 | |
|     uncheckAll();
 | |
|     countChecked();
 | |
| 
 | |
| 
 | |
|     // hide "select all" box in table header.
 | |
|     $('.select_boxes').hide();
 | |
| 
 | |
|     // show the other header cell.
 | |
|     $('.no_select_boxes').show();
 | |
| 
 | |
|     // show edit/delete buttons
 | |
|     $('.edit_buttons').show();
 | |
| 
 | |
|     // hide the checkbox.
 | |
|     $('.select_single').hide();
 | |
| 
 | |
|     // show the start button
 | |
|     $('.mass_select').show();
 | |
| 
 | |
|     // hide the stop button
 | |
|     $('.mass_stop_select').hide();
 | |
| 
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| function startMassSelect() {
 | |
|     "use strict";
 | |
| 
 | |
|     // show "select all" box in table header.
 | |
|     $('.select_boxes').show();
 | |
| 
 | |
|     // hide the other header cell.
 | |
|     $('.no_select_boxes').hide();
 | |
| 
 | |
|     // hide edit/delete buttons
 | |
|     $('.edit_buttons').hide();
 | |
| 
 | |
|     // show the checkbox.
 | |
|     $('.select_single').show();
 | |
| 
 | |
|     // hide the start button
 | |
|     $('.mass_select').hide();
 | |
| 
 | |
|     // show the stop button
 | |
|     $('.mass_stop_select').show();
 | |
| 
 | |
|     return false;
 | |
| } |