1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-28 11:00:38 +12:00
uMatrix/src/js/settings.js
2014-10-17 15:01:09 -04:00

132 lines
4.4 KiB
JavaScript

/*******************************************************************************
µMatrix - a Chromium browser extension to black/white list requests.
Copyright (C) 2014 Raymond Hill
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.
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.
You should have received a copy of the GNU General Public License
along with this program. If not, see {http://www.gnu.org/licenses/}.
Home: https://github.com/gorhill/uMatrix
*/
/******************************************************************************/
(function() {
/******************************************************************************/
messaging.start('settings.js');
var cachedUserSettings = {};
/******************************************************************************/
var subframeDemoBackgroundImage = 'repeating-linear-gradient(\
-45deg,\
{{color}},{{color}} 24%,\
transparent 26%,transparent 49%,\
{{color}} 51%,{{color}} 74%,\
transparent 76%,transparent\
)';
var updateSubframeDemo = function() {
var demo = $('#subframe-color-demo');
var color = $('#subframe-color').val();
demo.css('border-color', color);
var re = new RegExp('\{\{color\}\}', 'g');
demo.css('background-image', subframeDemoBackgroundImage.replace(re, color));
demo.css('opacity', (parseInt($('#subframe-opacity').val(), 10) / 100).toFixed(1));
};
var onSubframeColorChanged = function() {
var color = $('#subframe-color').val();
if ( color === '' ) {
$('#subframe-color').val(color);
}
changeUserSettings('subframeColor', color);
var opacity = parseInt($('#subframe-opacity').val(), 10);
if ( Number.isNaN(opacity) ) {
opacity = 100;
}
changeUserSettings('subframeOpacity', opacity);
updateSubframeDemo();
};
/******************************************************************************/
function changeUserSettings(name, value) {
messaging.tell({
what: 'userSettings',
name: name,
value: value
});
}
/******************************************************************************/
function prepareToDie() {
onSubframeColorChanged();
}
/******************************************************************************/
var installEventHandlers = function() {
// `data-range` allows to add/remove bool properties without
// changing code.
$('input[data-range="bool"]').on('change', function() {
changeUserSettings(this.id, this.checked);
});
$('input[name="displayTextSize"]').on('change', function(){
changeUserSettings('displayTextSize', $(this).attr('value'));
});
$('#smart-auto-reload').on('change', function(){
changeUserSettings('smartAutoReload', this.value);
});
$('#subframe-color').on('change', function(){ onSubframeColorChanged(); });
$('#subframe-opacity').on('change', function(){ onSubframeColorChanged(); });
// https://github.com/gorhill/httpswitchboard/issues/197
$(window).one('beforeunload', prepareToDie);
};
/******************************************************************************/
$(function() {
var onUserSettingsReceived = function(userSettings) {
// Cache copy
cachedUserSettings = userSettings;
// `data-range` allows to add/remove bool properties without
// changing code.
$('input[data-range="bool"]').each(function() {
this.checked = userSettings[this.id] === true;
});
$('input[name="displayTextSize"]').attr('checked', function(){
return $(this).attr('value') === userSettings.displayTextSize;
});
$('#smart-auto-reload').val(userSettings.smartAutoReload);
$('#subframe-color').val(userSettings.subframeColor);
$('#subframe-opacity').val(userSettings.subframeOpacity);
updateSubframeDemo();
installEventHandlers();
};
messaging.ask({ what: 'getUserSettings' }, onUserSettingsReceived);
});
/******************************************************************************/
})();