2016-01-29 17:31:07 +01:00
|
|
|
/*
|
|
|
|
* index.js
|
2017-10-21 08:40:00 +02:00
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
2016-01-29 17:31:07 +01:00
|
|
|
*
|
2017-10-21 08:40:00 +02:00
|
|
|
* This file is part of Firefly III.
|
2016-12-23 07:02:45 +01:00
|
|
|
*
|
2017-10-21 08:40:00 +02:00
|
|
|
* 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
|
2017-12-17 14:43:13 +01:00
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
2016-01-29 17:31:07 +01:00
|
|
|
*/
|
2017-12-29 09:05:35 +01:00
|
|
|
/** global: token */
|
2016-01-29 17:31:07 +01:00
|
|
|
var fixHelper = function (e, tr) {
|
2015-05-24 20:41:14 +02:00
|
|
|
"use strict";
|
2016-01-29 17:31:07 +01:00
|
|
|
var $originals = tr.children();
|
|
|
|
var $helper = tr.clone();
|
|
|
|
$helper.children().each(function (index) {
|
|
|
|
// Set helper cell sizes to match the original sizes
|
|
|
|
$(this).width($originals.eq(index).width());
|
2015-05-24 18:22:41 +02:00
|
|
|
});
|
2016-01-29 17:31:07 +01:00
|
|
|
return $helper;
|
2015-05-24 18:22:41 +02:00
|
|
|
};
|
|
|
|
|
2015-02-24 21:10:25 +01:00
|
|
|
$(function () {
|
2015-05-24 20:41:14 +02:00
|
|
|
"use strict";
|
2015-02-24 21:10:25 +01:00
|
|
|
$('.addMoney').on('click', addMoney);
|
|
|
|
$('.removeMoney').on('click', removeMoney);
|
|
|
|
|
2017-02-25 05:57:01 +01:00
|
|
|
$('#sortable-piggy').find('tbody').sortable(
|
2015-03-15 18:00:33 +01:00
|
|
|
{
|
2015-04-28 09:15:31 +02:00
|
|
|
helper: fixHelper,
|
2015-03-15 18:00:33 +01:00
|
|
|
stop: stopSorting,
|
2015-04-28 20:17:31 +02:00
|
|
|
handle: '.handle',
|
|
|
|
start: function (event, ui) {
|
|
|
|
// Build a placeholder cell that spans all the cells in the row
|
|
|
|
var cellCount = 0;
|
|
|
|
$('td, th', ui.helper).each(function () {
|
|
|
|
// For each TD or TH try and get it's colspan attribute, and add that or 1 to the total
|
|
|
|
var colspan = 1;
|
|
|
|
var colspanAttr = $(this).attr('colspan');
|
|
|
|
if (colspanAttr > 1) {
|
|
|
|
colspan = colspanAttr;
|
|
|
|
}
|
|
|
|
cellCount += colspan;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Add the placeholder UI - note that this is the item's content, so TD rather than TR
|
|
|
|
ui.placeholder.html('<td colspan="' + cellCount + '"> </td>');
|
|
|
|
}
|
2015-03-15 18:00:33 +01:00
|
|
|
}
|
|
|
|
);
|
2015-02-24 21:10:25 +01:00
|
|
|
});
|
|
|
|
|
2015-05-24 18:22:41 +02:00
|
|
|
|
2015-02-24 21:10:25 +01:00
|
|
|
function addMoney(e) {
|
2015-05-24 20:41:14 +02:00
|
|
|
"use strict";
|
2015-02-24 21:10:25 +01:00
|
|
|
var pigID = parseInt($(e.target).data('id'));
|
2015-05-31 20:23:49 +02:00
|
|
|
$('#defaultModal').empty().load('piggy-banks/add/' + pigID, function () {
|
|
|
|
$('#defaultModal').modal('show');
|
2015-03-15 18:00:33 +01:00
|
|
|
});
|
2015-02-24 21:10:25 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeMoney(e) {
|
2015-05-24 20:41:14 +02:00
|
|
|
"use strict";
|
2015-02-24 21:10:25 +01:00
|
|
|
var pigID = parseInt($(e.target).data('id'));
|
2015-05-31 20:24:06 +02:00
|
|
|
$('#defaultModal').empty().load('piggy-banks/remove/' + pigID, function () {
|
|
|
|
$('#defaultModal').modal('show');
|
2015-03-15 18:00:33 +01:00
|
|
|
});
|
2015-02-24 21:10:25 +01:00
|
|
|
|
|
|
|
return false;
|
2015-03-15 18:00:33 +01:00
|
|
|
}
|
2017-08-12 07:47:42 +02:00
|
|
|
|
2015-03-15 18:00:33 +01:00
|
|
|
function stopSorting() {
|
2015-05-24 20:41:14 +02:00
|
|
|
"use strict";
|
2015-03-15 18:00:33 +01:00
|
|
|
$('.loadSpin').addClass('fa fa-refresh fa-spin');
|
|
|
|
var order = [];
|
2017-01-01 17:01:29 +01:00
|
|
|
$.each($('#sortable-piggy>tbody>tr'), function (i, v) {
|
2015-03-15 18:00:33 +01:00
|
|
|
var holder = $(v);
|
|
|
|
var id = holder.data('id');
|
|
|
|
order.push(id);
|
|
|
|
});
|
2017-12-20 20:07:57 +01:00
|
|
|
$.post('piggy-banks/sort', {order: order, _token: token}).done(function () {
|
2015-03-15 18:00:33 +01:00
|
|
|
$('.loadSpin').removeClass('fa fa-refresh fa-spin');
|
|
|
|
});
|
2015-02-24 21:10:25 +01:00
|
|
|
}
|