Adjusting tooltip arrow position, added open and close events. Fixed search tooltip layout.

This commit is contained in:
DebaucheryLibrarian
2020-12-29 00:42:02 +01:00
parent 442e69187b
commit 8dd10f7e77
6 changed files with 123 additions and 54 deletions

View File

@@ -118,6 +118,12 @@ function html(context, selector) {
return el && el.innerHTML;
}
function htmls(context, selector) {
const els = all(context, selector, null, true);
return els.map(el => el.innerHTML);
}
function texts(context, selector, applyTrim = true, filter = true) {
const el = q(context, selector, null, applyTrim);
if (!el) return null;
@@ -363,27 +369,28 @@ const legacyFuncs = {
const quFuncs = {
all,
html,
content,
contents,
cnt: content,
cnts: contents,
content,
contents,
count,
date,
dateAgo,
dur: duration,
duration,
element: q,
el: q,
element: q,
exists,
html,
htmls,
image,
images,
img: image,
imgs: images,
length: duration,
meta,
number,
num: number,
number,
poster,
q,
sourceSet,
@@ -444,8 +451,8 @@ function initAll(context, selector, window) {
.map(element => init(element, window));
}
function extract(htmlValue, selector) {
const { window } = new JSDOM(htmlValue, { virtualConsole });
function extract(htmlValue, selector, options) {
const { window } = new JSDOM(htmlValue, { virtualConsole, ...options });
if (selector) {
return init(window.document.querySelector(selector), window);
@@ -454,8 +461,8 @@ function extract(htmlValue, selector) {
return init(window.document, window);
}
function extractAll(htmlValue, selector) {
const { window } = new JSDOM(htmlValue, { virtualConsole });
function extractAll(htmlValue, selector, options) {
const { window } = new JSDOM(htmlValue, { virtualConsole, ...options });
return initAll(window.document, selector, window);
}
@@ -467,8 +474,8 @@ async function request(method = 'get', urlValue, body, selector, headers, option
if (res.ok) {
const item = queryAll
? extractAll(res.body.toString(), selector)
: extract(res.body.toString(), selector);
? initAll(res.document, selector, res.window)
: init(res.document, selector, res.window);
return {
item,
@@ -506,6 +513,10 @@ async function postAll(urlValue, body, selector, headers, options) {
return request('post', urlValue, body, selector, headers, options, true);
}
function session(headers, options) {
return http.session(headers, options);
}
module.exports = {
extractDate,
extract,
@@ -532,5 +543,6 @@ module.exports = {
post,
postAll,
prefixUrl,
session,
...legacyFuncs,
};