uBlock/src/js/dashboard.js

83 lines
2.6 KiB
JavaScript
Raw Normal View History

2014-06-24 00:42:43 +02:00
/*******************************************************************************
2015-03-07 19:20:18 +01:00
µBlock - a browser extension to block requests.
2014-06-24 00:42:43 +02:00
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/uBlock
*/
/* global uDom */
2014-06-24 00:42:43 +02:00
/******************************************************************************/
(function() {
2015-03-20 15:36:38 +01:00
'use strict';
/******************************************************************************/
var resizeFrame = function() {
var navRect = document.getElementById('dashboard-nav').getBoundingClientRect();
var viewRect = document.documentElement.getBoundingClientRect();
document.getElementById('iframe').style.setProperty('height', (viewRect.height - navRect.height) + 'px');
};
2014-07-02 18:02:29 +02:00
/******************************************************************************/
2014-07-03 01:19:40 +02:00
var loadDashboardPanel = function(tab, q) {
var tabButton = uDom('[href="#' + tab + '"]');
2014-07-02 18:02:29 +02:00
if ( !tabButton ) {
return;
}
2014-07-03 01:19:40 +02:00
q = q || '';
uDom('iframe').attr('src', tab + q);
2014-07-02 18:02:29 +02:00
uDom('.tabButton').toggleClass('selected', false);
tabButton.toggleClass('selected', true);
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
var onTabClickHandler = function(e) {
loadDashboardPanel(this.hash.slice(1));
e.preventDefault();
2014-07-02 18:02:29 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-07-02 18:02:29 +02:00
uDom.onLoad(function() {
2015-03-20 15:36:38 +01:00
window.addEventListener('resize', resizeFrame);
resizeFrame();
2014-07-02 18:02:29 +02:00
var matches = window.location.search.slice(1).match(/\??(tab=([^&]+))?(.*)$/);
var tab = '', q = '';
if ( matches && matches.length === 4 ) {
tab = matches[2];
q = matches[3];
if ( q !== '' && q.charAt(0) === '&' ) {
q = '?' + q.slice(1);
}
}
if ( !tab ) {
tab = 'settings';
2014-06-24 00:42:43 +02:00
}
2014-07-03 01:19:40 +02:00
loadDashboardPanel(tab + '.html', q);
2014-07-02 18:02:29 +02:00
uDom('.tabButton').on('click', onTabClickHandler);
2014-06-24 00:42:43 +02:00
});
/******************************************************************************/
})();