2016-12-23 07:02:45 +01:00
|
|
|
/*
|
|
|
|
* index.js
|
2017-10-21 08:40:00 +02:00
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
2016-12-23 07:02:45 +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-12-23 07:02:45 +01:00
|
|
|
*/
|
|
|
|
|
2018-02-01 17:55:18 +01:00
|
|
|
/** global: infoIncomeUri, page, token, spent, budgeted, available, currencySymbol, budgetIndexUri, updateIncomeUri, periodStart, periodEnd, budgetAmountUri, accounting */
|
2017-09-29 08:52:15 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
$(function () {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
$('.updateIncome').on('click', updateIncome);
|
|
|
|
|
|
|
|
/*
|
|
|
|
On start, fill the "spent"-bar using the content from the page.
|
|
|
|
*/
|
|
|
|
drawSpentBar();
|
|
|
|
drawBudgetedBar();
|
|
|
|
|
|
|
|
/*
|
|
|
|
When the input changes, update the percentages for the budgeted bar:
|
|
|
|
*/
|
2017-11-24 17:05:22 +01:00
|
|
|
$('input[type="number"]').on('change', updateBudgetedAmounts);
|
2017-09-29 08:52:15 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
$('.selectPeriod').change(function (e) {
|
|
|
|
var sel = $(e.target).val();
|
|
|
|
if (sel !== "x") {
|
|
|
|
var newUri = budgetIndexUri.replace("REPLACE", sel);
|
2018-02-01 17:55:18 +01:00
|
|
|
window.location.assign(newUri + "?page=" + page);
|
2017-09-29 08:52:15 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-10-17 15:18:09 +02:00
|
|
|
// sortable!
|
|
|
|
if (typeof $(".sortable-table tbody").sortable !== "undefined") {
|
|
|
|
$(".sortable-table tbody").sortable(
|
|
|
|
{
|
|
|
|
helper: fixHelper,
|
|
|
|
items: 'tr:not(.ignore)',
|
|
|
|
stop: sortStop,
|
|
|
|
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>');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2017-09-29 08:52:15 +02:00
|
|
|
});
|
|
|
|
|
2018-10-17 15:18:09 +02:00
|
|
|
var fixHelper = function (e, tr) {
|
|
|
|
"use strict";
|
|
|
|
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());
|
|
|
|
});
|
|
|
|
return $helper;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function sortStop(event, ui) {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
//var current = $(ui.item);
|
|
|
|
var list = $('.sortable-table tbody tr');
|
|
|
|
var submit = [];
|
|
|
|
$.each(list, function (i, v) {
|
|
|
|
var row = $(v);
|
|
|
|
var id = parseInt(row.data('id'));
|
|
|
|
if (id > 0) {
|
|
|
|
submit.push(id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var arr = {
|
|
|
|
budgetIds: submit,
|
|
|
|
page: page,
|
|
|
|
_token: token
|
|
|
|
};
|
2018-12-18 07:08:35 +01:00
|
|
|
$.post('budgets/reorder', arr);
|
2018-10-17 15:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-24 22:54:59 +02:00
|
|
|
function drawSpentBar() {
|
2015-05-24 18:22:41 +02:00
|
|
|
"use strict";
|
2015-06-02 18:13:23 +02:00
|
|
|
if ($('.spentBar').length > 0) {
|
|
|
|
var overspent = spent > budgeted;
|
|
|
|
var pct;
|
|
|
|
|
|
|
|
if (overspent) {
|
|
|
|
// draw overspent bar
|
|
|
|
pct = (budgeted / spent) * 100;
|
|
|
|
$('.spentBar .progress-bar-warning').css('width', pct + '%');
|
|
|
|
$('.spentBar .progress-bar-danger').css('width', (100 - pct) + '%');
|
|
|
|
} else {
|
|
|
|
// draw normal bar:
|
|
|
|
pct = (spent / budgeted) * 100;
|
|
|
|
$('.spentBar .progress-bar-info').css('width', pct + '%');
|
|
|
|
}
|
2015-02-22 09:46:21 +01:00
|
|
|
}
|
2015-05-24 22:54:59 +02:00
|
|
|
}
|
2015-02-22 09:46:21 +01:00
|
|
|
|
2015-05-24 22:54:59 +02:00
|
|
|
function drawBudgetedBar() {
|
2015-05-24 18:22:41 +02:00
|
|
|
"use strict";
|
2015-02-22 09:46:21 +01:00
|
|
|
|
2015-06-02 18:13:23 +02:00
|
|
|
if ($('.budgetedBar').length > 0) {
|
2016-12-22 16:36:56 +01:00
|
|
|
var budgetedMuch = budgeted > available;
|
2015-06-02 18:13:23 +02:00
|
|
|
|
|
|
|
// recalculate percentage:
|
|
|
|
|
|
|
|
var pct;
|
|
|
|
if (budgetedMuch) {
|
|
|
|
// budgeted too much.
|
2016-12-22 16:36:56 +01:00
|
|
|
pct = (available / budgeted) * 100;
|
2015-06-02 18:13:23 +02:00
|
|
|
$('.budgetedBar .progress-bar-warning').css('width', pct + '%');
|
|
|
|
$('.budgetedBar .progress-bar-danger').css('width', (100 - pct) + '%');
|
|
|
|
$('.budgetedBar .progress-bar-info').css('width', 0);
|
|
|
|
} else {
|
2016-12-22 16:36:56 +01:00
|
|
|
pct = (budgeted / available) * 100;
|
2015-06-02 18:13:23 +02:00
|
|
|
$('.budgetedBar .progress-bar-warning').css('width', 0);
|
|
|
|
$('.budgetedBar .progress-bar-danger').css('width', 0);
|
|
|
|
$('.budgetedBar .progress-bar-info').css('width', pct + '%');
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#budgetedAmount').html(currencySymbol + ' ' + budgeted.toFixed(2));
|
|
|
|
}
|
2015-02-22 09:46:21 +01:00
|
|
|
}
|
|
|
|
|
2017-09-29 08:52:15 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param e
|
|
|
|
*/
|
2015-05-24 22:54:59 +02:00
|
|
|
function updateBudgetedAmounts(e) {
|
2015-05-24 18:22:41 +02:00
|
|
|
"use strict";
|
2015-05-24 22:54:59 +02:00
|
|
|
var target = $(e.target);
|
|
|
|
var id = target.data('id');
|
2017-11-24 17:05:22 +01:00
|
|
|
var leftCell = $('td[class$="left"][data-id="' + id + '"]');
|
2017-12-29 09:05:35 +01:00
|
|
|
var link = $('a[data-id="' + id + '"][class="budget-link"]');
|
2015-05-24 22:54:59 +02:00
|
|
|
var value = target.val();
|
|
|
|
var original = target.data('original');
|
2017-06-07 11:58:04 +02:00
|
|
|
|
2017-11-24 17:05:22 +01:00
|
|
|
// disable input
|
|
|
|
target.prop('disabled', true);
|
|
|
|
|
|
|
|
// replace link (for now)
|
2017-12-29 09:05:35 +01:00
|
|
|
link.attr('href', '#');
|
2017-11-24 17:05:22 +01:00
|
|
|
|
|
|
|
// replace "left" with spinner.
|
|
|
|
leftCell.empty().html('<i class="fa fa-fw fa-spin fa-spinner"></i>');
|
|
|
|
|
|
|
|
// send a post to Firefly to update the amount:
|
|
|
|
var newUri = budgetAmountUri.replace("REPLACE", id);
|
|
|
|
|
2017-12-20 20:07:57 +01:00
|
|
|
$.post(newUri, {amount: value, start: periodStart, end: periodEnd, _token: token}).done(function (data) {
|
2017-11-24 17:05:22 +01:00
|
|
|
|
|
|
|
// difference between new value and original value
|
|
|
|
var difference = value - original;
|
|
|
|
|
|
|
|
// update budgeted value
|
2015-05-24 22:54:59 +02:00
|
|
|
budgeted = budgeted + difference;
|
|
|
|
|
2017-11-24 17:05:22 +01:00
|
|
|
// fill in "left" value:
|
2018-04-22 11:17:30 +02:00
|
|
|
|
|
|
|
|
2018-07-14 16:08:34 +02:00
|
|
|
if (data.left_per_day !== null) {
|
|
|
|
leftCell.html(data.left + ' (' + data.left_per_day + ')');
|
2018-04-22 11:17:30 +02:00
|
|
|
} else {
|
|
|
|
leftCell.html(data.left);
|
|
|
|
}
|
2017-11-24 17:05:22 +01:00
|
|
|
|
|
|
|
// update "budgeted" input:
|
|
|
|
target.val(data.amount);
|
|
|
|
|
|
|
|
// enable thing again
|
|
|
|
target.prop('disabled', false);
|
|
|
|
|
|
|
|
// set new original value:
|
|
|
|
target.data('original', data.amount);
|
|
|
|
|
2015-05-24 22:54:59 +02:00
|
|
|
// run drawBudgetedBar() again:
|
|
|
|
drawBudgetedBar();
|
2015-02-22 09:46:21 +01:00
|
|
|
|
2017-11-24 17:05:22 +01:00
|
|
|
// update the link if relevant:
|
|
|
|
link.attr('href', 'budgets/show/' + id);
|
|
|
|
if (data.limit > 0) {
|
|
|
|
link.attr('href', 'budgets/show/' + id + '/' + data.limit);
|
|
|
|
}
|
2018-03-24 06:46:37 +01:00
|
|
|
|
|
|
|
// update the warning if relevant:
|
|
|
|
if (data.large_diff === true) {
|
|
|
|
$('span[class$="budget_warning"][data-id="' + id + '"]').html(data.warn_text).show();
|
|
|
|
console.log('Show warning for budget');
|
|
|
|
} else {
|
|
|
|
$('span[class$="budget_warning"][data-id="' + id + '"]').empty().hide();
|
|
|
|
}
|
2017-11-24 17:05:22 +01:00
|
|
|
});
|
2015-02-22 09:46:21 +01:00
|
|
|
}
|
|
|
|
|
2017-09-29 08:52:15 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
function updateIncome() {
|
2015-05-24 18:22:41 +02:00
|
|
|
"use strict";
|
2017-09-29 08:52:15 +02:00
|
|
|
$('#defaultModal').empty().load(updateIncomeUri, function () {
|
|
|
|
$('#defaultModal').modal('show');
|
2017-06-06 20:35:39 +02:00
|
|
|
});
|
|
|
|
|
2017-09-29 08:52:15 +02:00
|
|
|
return false;
|
|
|
|
}
|