2014-06-24 00:42:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-11-03 16:20:47 +01:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2018-07-19 00:00:55 +02:00
|
|
|
Copyright (C) 2014-present Raymond Hill
|
2014-06-24 00:42:43 +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
|
|
|
|
*/
|
|
|
|
|
2014-10-19 13:11:27 +02:00
|
|
|
/* global uDom */
|
|
|
|
|
2016-11-03 16:20:47 +01:00
|
|
|
'use strict';
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-19 21:35:00 +02:00
|
|
|
(( ) => {
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2015-03-20 15:36:38 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-04-13 14:10:55 +02:00
|
|
|
const resizeFrame = function() {
|
2019-05-19 21:35:00 +02:00
|
|
|
const navRect = document.getElementById('dashboard-nav')
|
|
|
|
.getBoundingClientRect();
|
|
|
|
const viewRect = document.documentElement.getBoundingClientRect();
|
2018-07-19 00:00:55 +02:00
|
|
|
document.getElementById('iframe').style.setProperty(
|
|
|
|
'height',
|
|
|
|
(viewRect.height - navRect.height) + 'px'
|
|
|
|
);
|
2015-03-20 15:36:38 +01:00
|
|
|
};
|
|
|
|
|
2019-05-19 21:35:00 +02:00
|
|
|
const discardUnsavedData = function(synchronous = false) {
|
|
|
|
const paneFrame = document.getElementById('iframe');
|
|
|
|
const paneWindow = paneFrame.contentWindow;
|
|
|
|
if (
|
|
|
|
typeof paneWindow.hasUnsavedData !== 'function' ||
|
|
|
|
paneWindow.hasUnsavedData() === false
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( synchronous ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Promise(resolve => {
|
|
|
|
const modal = uDom.nodeFromId('unsavedWarning');
|
|
|
|
modal.classList.add('on');
|
|
|
|
modal.focus();
|
|
|
|
|
|
|
|
const onDone = status => {
|
|
|
|
modal.classList.remove('on');
|
|
|
|
document.removeEventListener('click', onClick, true);
|
|
|
|
resolve(status);
|
|
|
|
};
|
|
|
|
|
|
|
|
const onClick = ev => {
|
|
|
|
const target = ev.target;
|
|
|
|
if ( target.matches('[data-i18n="dashboardUnsavedWarningStay"]') ) {
|
|
|
|
return onDone(false);
|
|
|
|
}
|
|
|
|
if ( target.matches('[data-i18n="dashboardUnsavedWarningIgnore"]') ) {
|
|
|
|
return onDone(true);
|
|
|
|
}
|
|
|
|
if ( modal.querySelector('[data-i18n="dashboardUnsavedWarning"]').contains(target) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
onDone(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
document.addEventListener('click', onClick, true);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const loadDashboardPanel = function(pane = '') {
|
2016-01-24 16:15:32 +01:00
|
|
|
if ( pane === '' ) {
|
2018-07-19 00:00:55 +02:00
|
|
|
pane = vAPI.localStorage.getItem('dashboardLastVisitedPane');
|
|
|
|
if ( pane === null ) {
|
|
|
|
pane = 'settings.html';
|
|
|
|
}
|
2016-01-24 16:15:32 +01:00
|
|
|
}
|
2019-05-19 21:35:00 +02:00
|
|
|
const tabButton = uDom(`[href="#${pane}"]`);
|
2018-07-19 00:00:55 +02:00
|
|
|
if ( !tabButton || tabButton.hasClass('selected') ) { return; }
|
2019-05-19 21:35:00 +02:00
|
|
|
const loadPane = ( ) => {
|
|
|
|
self.location.replace(`#${pane}`);
|
|
|
|
uDom('.tabButton.selected').toggleClass('selected', false);
|
|
|
|
tabButton.toggleClass('selected', true);
|
|
|
|
uDom.nodeFromId('iframe').setAttribute('src', pane);
|
|
|
|
vAPI.localStorage.setItem('dashboardLastVisitedPane', pane);
|
|
|
|
};
|
|
|
|
const r = discardUnsavedData();
|
|
|
|
if ( r === false ) { return; }
|
|
|
|
if ( r === true ) {
|
|
|
|
return loadPane();
|
|
|
|
}
|
|
|
|
r.then(status => {
|
|
|
|
if ( status === false ) { return; }
|
|
|
|
loadPane();
|
|
|
|
});
|
2014-07-02 18:02:29 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2019-05-19 21:35:00 +02:00
|
|
|
const onTabClickHandler = function(ev) {
|
|
|
|
loadDashboardPanel(ev.target.hash.slice(1));
|
|
|
|
ev.preventDefault();
|
2014-07-02 18:02:29 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2018-07-19 00:00:55 +02:00
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/106
|
|
|
|
vAPI.messaging.send('dashboard', { what: 'canUpdateShortcuts' }, response => {
|
|
|
|
document.body.classList.toggle('canUpdateShortcuts', response === true);
|
2014-06-24 00:42:43 +02:00
|
|
|
});
|
|
|
|
|
2018-07-19 00:00:55 +02:00
|
|
|
resizeFrame();
|
2019-04-13 14:10:55 +02:00
|
|
|
loadDashboardPanel();
|
|
|
|
|
2018-07-19 00:00:55 +02:00
|
|
|
window.addEventListener('resize', resizeFrame);
|
|
|
|
uDom('.tabButton').on('click', onTabClickHandler);
|
2019-04-13 14:10:55 +02:00
|
|
|
|
2019-05-19 21:35:00 +02:00
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event
|
|
|
|
window.addEventListener('beforeunload', ( ) => {
|
|
|
|
if ( discardUnsavedData(true) ) { return; }
|
|
|
|
event.preventDefault();
|
|
|
|
event.returnValue = '';
|
|
|
|
});
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|