2016-04-05 04:59:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
|
|
|
|
* Author: Alex Yatskov <alex@foosoft.net>
|
2016-04-06 05:18:55 +00:00
|
|
|
*
|
2016-04-05 04:59:30 +00:00
|
|
|
* This program 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.
|
2016-04-06 05:18:55 +00:00
|
|
|
*
|
2016-04-05 04:59:30 +00:00
|
|
|
* 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 General Public License for more details.
|
2016-04-06 05:18:55 +00:00
|
|
|
*
|
2016-04-05 04:59:30 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
function optionsToForm(opts) {
|
2016-05-03 00:27:26 +00:00
|
|
|
$('#enableAnkiConnect').prop('checked', opts.enableAnkiConnect);
|
2016-05-02 04:18:28 +00:00
|
|
|
$('#selectMatchedText').prop('checked', opts.selectMatchedText);
|
2016-04-07 04:02:31 +00:00
|
|
|
$('#loadOnStartup').prop('checked', opts.loadOnStartup);
|
2016-05-02 04:18:28 +00:00
|
|
|
$('#scanLength').val(opts.scanLength);
|
2016-04-05 04:59:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function formToOptions() {
|
2016-04-05 05:07:57 +00:00
|
|
|
return sanitizeOptions({
|
2016-05-02 04:18:28 +00:00
|
|
|
loadOnStartup: $('#loadOnStartup').prop('checked'),
|
|
|
|
selectMatchedText: $('#selectMatchedText').prop('checked'),
|
2016-05-03 00:27:26 +00:00
|
|
|
enableAnkiConnect: $('#enableAnkiConnect').prop('checked'),
|
2016-05-02 04:18:28 +00:00
|
|
|
scanLength: $('#scanLength').val()
|
2016-04-05 05:07:57 +00:00
|
|
|
});
|
2016-04-05 04:59:30 +00:00
|
|
|
}
|
|
|
|
|
2016-04-06 05:18:55 +00:00
|
|
|
$('#saveOptions').click(() => {
|
2016-04-07 04:02:31 +00:00
|
|
|
const opts = formToOptions();
|
2016-04-08 20:33:46 +00:00
|
|
|
saveOptions(opts, () => {
|
|
|
|
$('.notifyAlerts').hide();
|
|
|
|
$('#notifySave').slideDown();
|
|
|
|
chrome.extension.getBackgroundPage().yomichan.updateOptions(opts);
|
|
|
|
});
|
2016-04-06 05:18:55 +00:00
|
|
|
});
|
2016-04-05 05:07:57 +00:00
|
|
|
|
|
|
|
$('#resetOptions').click(() => {
|
2016-04-08 20:33:46 +00:00
|
|
|
optionsToForm(sanitizeOptions({}));
|
|
|
|
$('.notifyAlerts').hide();
|
|
|
|
$('#notifyReset').slideDown();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('[data-hide]').on('click', function() {
|
|
|
|
$('#' + $(this).attr('data-hide')).hide();
|
2016-04-05 04:59:30 +00:00
|
|
|
});
|
2016-04-06 05:18:55 +00:00
|
|
|
|
|
|
|
$(document).ready(() => loadOptions((opts) => optionsToForm(opts)));
|