uBlock/src/js/cloud-ui.js

218 lines
6.2 KiB
JavaScript
Raw Normal View History

2015-08-12 00:49:36 +02:00
/*******************************************************************************
uBlock Origin - a browser extension to block requests.
2016-03-06 16:51:06 +01:00
Copyright (C) 2015-2016 Raymond Hill
2015-08-12 00:49:36 +02: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.
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/uBlock
*/
/* global uDom */
/******************************************************************************/
(function() {
2016-03-06 16:51:06 +01:00
'use strict';
2015-08-12 00:49:36 +02:00
/******************************************************************************/
self.cloud = {
options: {},
datakey: '',
data: undefined,
onPush: null,
onPull: null
};
/******************************************************************************/
var widget = uDom.nodeFromId('cloudWidget');
if ( widget === null ) {
return;
}
self.cloud.datakey = widget.getAttribute('data-cloud-entry') || '';
if ( self.cloud.datakey === '' ) {
return;
}
2016-03-06 16:51:06 +01:00
var messaging = vAPI.messaging;
2015-08-12 00:49:36 +02:00
/******************************************************************************/
var onCloudDataReceived = function(entry) {
if ( typeof entry !== 'object' || entry === null ) {
return;
}
self.cloud.data = entry.data;
uDom.nodeFromId('cloudPull').removeAttribute('disabled');
2016-01-08 17:08:53 +01:00
uDom.nodeFromId('cloudPullAndMerge').removeAttribute('disabled');
2015-08-12 00:49:36 +02:00
var timeOptions = {
weekday: 'short',
year: 'numeric',
month: 'short',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
timeZoneName: 'short'
};
var time = new Date(entry.tstamp);
widget.querySelector('span').textContent =
entry.source + '\n' +
time.toLocaleString('fullwide', timeOptions);
};
/******************************************************************************/
var fetchCloudData = function() {
2016-03-06 16:51:06 +01:00
messaging.send(
'cloudWidget',
2015-08-12 00:49:36 +02:00
{
what: 'cloudPull',
datakey: self.cloud.datakey
},
onCloudDataReceived
);
};
/******************************************************************************/
var pushData = function() {
if ( typeof self.cloud.onPush !== 'function' ) {
return;
}
2016-03-06 16:51:06 +01:00
messaging.send(
'cloudWidget',
2015-08-12 00:49:36 +02:00
{
what: 'cloudPush',
datakey: self.cloud.datakey,
data: self.cloud.onPush()
},
fetchCloudData
);
};
/******************************************************************************/
2016-01-08 17:08:53 +01:00
var pullData = function() {
2015-08-12 00:49:36 +02:00
if ( typeof self.cloud.onPull === 'function' ) {
2016-01-08 17:08:53 +01:00
self.cloud.onPull(self.cloud.data, false);
}
};
/******************************************************************************/
var pullAndMergeData = function() {
if ( typeof self.cloud.onPull === 'function' ) {
self.cloud.onPull(self.cloud.data, true);
2015-08-12 00:49:36 +02:00
}
};
/******************************************************************************/
var openOptions = function() {
var input = uDom.nodeFromId('cloudDeviceName');
input.value = self.cloud.options.deviceName;
input.setAttribute('placeholder', self.cloud.options.defaultDeviceName);
uDom.nodeFromId('cloudOptions').classList.add('show');
};
/******************************************************************************/
var closeOptions = function(ev) {
var root = uDom.nodeFromId('cloudOptions');
if ( ev.target !== root ) {
return;
}
root.classList.remove('show');
};
/******************************************************************************/
var submitOptions = function() {
var onOptions = function(options) {
if ( typeof options !== 'object' || options === null ) {
return;
}
self.cloud.options = options;
};
2016-03-06 16:51:06 +01:00
messaging.send(
'cloudWidget',
{
what: 'cloudSetOptions',
options: {
deviceName: uDom.nodeFromId('cloudDeviceName').value
}
},
onOptions
);
2015-08-12 00:49:36 +02:00
uDom.nodeFromId('cloudOptions').classList.remove('show');
};
/******************************************************************************/
var onInitialize = function(options) {
if ( typeof options !== 'object' || options === null ) {
return;
}
if ( !options.enabled ) {
return;
}
self.cloud.options = options;
fetchCloudData();
var html = [
'<button id="cloudPush" type="button" title="cloudPush"></button>',
'<span data-i18n="cloudNoData"></span>',
2016-01-08 17:08:53 +01:00
'<button id="cloudPull" type="button" title="cloudPull" disabled></button>&nbsp;',
'<button id="cloudPullAndMerge" type="button" title="cloudPullAndMerge" disabled></button>',
2015-08-12 00:49:36 +02:00
'<span id="cloudCog" class="fa">&#xf013;</span>',
'<div id="cloudOptions">',
' <div>',
' <p><label data-i18n="cloudDeviceNamePrompt"></label> <input id="cloudDeviceName" type="text" value="">',
' <p><button id="cloudOptionsSubmit" type="button" data-i18n="genericSubmit"></button>',
' </div>',
'</div>',
].join('');
vAPI.insertHTML(widget, html);
vAPI.i18n.render(widget);
widget.classList.remove('hide');
uDom('#cloudPush').on('click', pushData);
uDom('#cloudPull').on('click', pullData);
2016-01-08 17:08:53 +01:00
uDom('#cloudPullAndMerge').on('click', pullAndMergeData);
2015-08-12 00:49:36 +02:00
uDom('#cloudCog').on('click', openOptions);
uDom('#cloudOptions').on('click', closeOptions);
uDom('#cloudOptionsSubmit').on('click', submitOptions);
};
2016-03-06 16:51:06 +01:00
messaging.send('cloudWidget', { what: 'cloudGetOptions' }, onInitialize);
2015-08-12 00:49:36 +02:00
/******************************************************************************/
// https://www.youtube.com/watch?v=aQFp67VoiDA
2015-08-12 00:49:36 +02:00
})();