Let's do separate JS functions instead so we can easily access them via utils.javascript.assemble.
79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
/**
|
|
* Copyright 2016 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
*
|
|
* This file is part of qutebrowser.
|
|
*
|
|
* qutebrowser 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.
|
|
*
|
|
* qutebrowser 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 qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
window._qutebrowser.webelem = (function() {
|
|
var funcs = {};
|
|
var elements = [];
|
|
|
|
function serialize_elem(elem, id) {
|
|
var out = {
|
|
"id": id,
|
|
"text": elem.text,
|
|
"tag_name": elem.tagName,
|
|
"outer_xml": elem.outerHTML,
|
|
};
|
|
|
|
var attributes = {};
|
|
for (var i = 0; i < elem.attributes.length; ++i) {
|
|
var attr = elem.attributes[i];
|
|
attributes[attr.name] = attr.value;
|
|
}
|
|
out.attributes = attributes;
|
|
|
|
// console.log(JSON.stringify(out));
|
|
|
|
return out;
|
|
}
|
|
|
|
funcs.find_all = function(selector) {
|
|
var elems = document.querySelectorAll(selector);
|
|
var out = [];
|
|
var id = elements.length;
|
|
|
|
for (var i = 0; i < elems.length; ++i) {
|
|
var elem = elems[i];
|
|
out.push(serialize_elem(elem, id));
|
|
elements[id] = elem;
|
|
id++;
|
|
}
|
|
|
|
return out;
|
|
};
|
|
|
|
funcs.focus_element = function() {
|
|
var elem = document.activeElement;
|
|
|
|
if (!elem || elem === document.body) {
|
|
// "When there is no selection, the active element is the page's
|
|
// <body> or null."
|
|
return null;
|
|
}
|
|
|
|
var id = elements.length;
|
|
elements[id] = elem;
|
|
return serialize_elem(elem, id);
|
|
};
|
|
|
|
};
|
|
|
|
return funcs;
|
|
})();
|