mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
232 lines
5.1 KiB
JavaScript
232 lines
5.1 KiB
JavaScript
/*
|
|
* list.js
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/** global: edit_selected_txt, edit_bulk_selected_txt, delete_selected_txt, token */
|
|
|
|
/**
|
|
*
|
|
*/
|
|
$(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').unbind('change').change(function () {
|
|
countChecked();
|
|
});
|
|
|
|
// click the mass edit button:
|
|
$('.mass_edit').click(goToMassEdit);
|
|
// click the bulk edit button:
|
|
$('.bulk_edit').click(goToBulkEdit);
|
|
// click the delete button:
|
|
$('.mass_delete').click(goToMassDelete);
|
|
});
|
|
|
|
/**
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
function goToMassEdit() {
|
|
"use strict";
|
|
var checkedArray = getCheckboxes();
|
|
|
|
// go to specially crafted URL:
|
|
var bases = document.getElementsByTagName('base');
|
|
var baseHref = null;
|
|
|
|
if (bases.length > 0) {
|
|
baseHref = bases[0].href;
|
|
}
|
|
|
|
window.location.href = baseHref + '/transactions/mass/edit/' + checkedArray;
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
function goToBulkEdit() {
|
|
"use strict";
|
|
var checkedArray = getCheckboxes();
|
|
|
|
// go to specially crafted URL:
|
|
var bases = document.getElementsByTagName('base');
|
|
var baseHref = null;
|
|
|
|
if (bases.length > 0) {
|
|
baseHref = bases[0].href;
|
|
}
|
|
|
|
window.location.href = baseHref + '/transactions/bulk/edit/' + checkedArray;
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
function goToMassDelete() {
|
|
"use strict";
|
|
var checkedArray = getCheckboxes();
|
|
|
|
// go to specially crafted URL:
|
|
var bases = document.getElementsByTagName('base');
|
|
var baseHref = null;
|
|
|
|
if (bases.length > 0) {
|
|
baseHref = bases[0].href;
|
|
}
|
|
window.location.href = baseHref + '/transactions/mass/delete/' + checkedArray;
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @returns {Array}
|
|
*/
|
|
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 + ')');
|
|
$('.bulk_edit span').text(edit_bulk_selected_txt + ' (' + checked + ')');
|
|
$('.mass_delete span').text(delete_selected_txt + ' (' + checked + ')');
|
|
|
|
// get amount for the transactions:
|
|
//getAmounts();
|
|
|
|
$('.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);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
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();
|
|
|
|
// show reconcile account button, if present
|
|
$('.mass_reconcile').show();
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
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();
|
|
|
|
// hide reconcile account button, if present
|
|
$('.mass_reconcile').hide();
|
|
|
|
return false;
|
|
} |