/* * all.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: hideable */ $(function () { "use strict"; // scan current selection of checkboxes and put them in a cookie: var arr; if ((readCookie('audit-option-checkbox') !== null)) { arr = readCookie('audit-option-checkbox').split(','); arr.forEach(function (val) { $('input[type="checkbox"][value="' + val + '"]').prop('checked', true); }); } else { // no cookie? read list, store in array 'arr' // all account ids: arr = readCheckboxes(); } storeCheckboxes(arr); // process options: showOnlyColumns(arr); // respond to click each button: $('.audit-option-checkbox').click(clickColumnOption); }); function clickColumnOption() { "use strict"; var newArr = readCheckboxes(); showOnlyColumns(newArr); storeCheckboxes(newArr); } function storeCheckboxes(checkboxes) { "use strict"; // store new cookie with those options: createCookie('audit-option-checkbox', checkboxes, 365); } function readCheckboxes() { "use strict"; var checkboxes = []; $.each($('.audit-option-checkbox'), function (i, v) { var c = $(v); if (c.prop('checked')) { //url += c.val() + ','; checkboxes.push(c.val()); } }); return checkboxes; } function showOnlyColumns(checkboxes) { "use strict"; for (var i = 0; i < hideable.length; i++) { var opt = hideable[i]; if (checkboxes.indexOf(opt) > -1) { $('td.hide-' + opt).show(); $('th.hide-' + opt).show(); } else { $('th.hide-' + opt).hide(); $('td.hide-' + opt).hide(); } } }