/* * index.js * Copyright (c) 2019 james@firefly-iii.org * * This file is part of Firefly III (https://github.com/firefly-iii). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ /** global: token */ 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 () { "use strict"; $('.group-rules').find('tbody').sortable( { helper: fixHelper, stop: sortStop, handle: '.rule-handle', cursor: "move" } ); // test rule triggers button: $('.test_rule_triggers').click(testRuleTriggers); } ); function testRuleTriggers(e) { var obj = $(e.target); var ruleId = parseInt(obj.data('id')); var icon = obj; if (obj.prop("tagName") === 'A') { icon = $('i', obj); } // change icon: icon.addClass('fa-spinner fa-spin').removeClass('fa-flask'); var modal = $("#testTriggerModal"); // respond to modal: modal.on('hide.bs.modal', function (e) { disableRuleSpinners(); }); // Find a list of existing transactions that match these triggers $.get('rules/test-rule/' + ruleId).done(function (data) { // Set title and body modal.find(".transactions-list").html(data.html); // Show warning if appropriate if (data.warning) { modal.find(".transaction-warning .warning-contents").text(data.warning); modal.find(".transaction-warning").show(); } else { modal.find(".transaction-warning").hide(); } // Show the modal dialog modal.modal(); }).fail(function () { alert('Cannot get transactions for given triggers.'); disableRuleSpinners(); }); return false; } function disableRuleSpinners() { $('i.test_rule_triggers').removeClass('fa-spin fa-spinner').addClass('fa-flask'); } function sortStop(event, ui) { "use strict"; // resort / move rule $.each($('.group-rules'), function(i,v) { $.each($('tr.single-rule', $(v)), function (i, v) { var holder = $(v); var position = parseInt(holder.data('position')); var ruleGroupId = holder.data('group-id'); var ruleId = holder.data('id'); var originalOrder = parseInt(holder.data('order')); var newOrder; if (position === i) { // not changed, position is what it should be. return; } if (position < i) { // position is less. console.log('Rule #' + ruleId + ' moved down from position ' + originalOrder + ' to ' + (i + 1)); } if (position > i) { console.log('Rule #' + ruleId + ' moved up from position ' + originalOrder + ' to ' + (i + 1)); } // update position: holder.data('position', i); newOrder = i+1; $.post('rules/move-rule/' + ruleId + '/' + ruleGroupId, {order: newOrder, _token: token}); }); }); }