lint fixes

This commit is contained in:
Atish Amte
2023-08-17 01:11:31 +05:30
parent 338082f0aa
commit 888fa356b9
3 changed files with 23 additions and 52 deletions
@@ -102,7 +102,7 @@ class Playwright_DocumentLoaders implements INode {
type: 'string',
optional: true,
additionalParams: true,
description: 'CSS selectors like .div or #div',
description: 'CSS selectors like .div or #div'
},
{
label: 'Metadata',
@@ -119,7 +119,7 @@ class Playwright_DocumentLoaders implements INode {
const metadata = nodeData.inputs?.metadata
const relativeLinksMethod = nodeData.inputs?.relativeLinksMethod as string
let limit = nodeData.inputs?.limit as string
let waitUntilGoToOption = nodeData.inputs?.waitUntilGoToOption as "load" | "domcontentloaded" | "networkidle" | "commit" | undefined
let waitUntilGoToOption = nodeData.inputs?.waitUntilGoToOption as 'load' | 'domcontentloaded' | 'networkidle' | 'commit' | undefined
let waitForSelector = nodeData.inputs?.waitForSelector as string
let url = nodeData.inputs?.url as string
@@ -136,14 +136,14 @@ class Playwright_DocumentLoaders implements INode {
args: ['--no-sandbox'],
headless: true
}
};
}
if (waitUntilGoToOption) {
config['gotoOptions'] = {
waitUntil: waitUntilGoToOption
}
}
if (waitForSelector) {
config['evaluate'] = async (page: Page, browser: Browser): Promise<string> => {
config['evaluate'] = async (page: Page, _: Browser): Promise<string> => {
await page.waitForSelector(waitForSelector)
const result = await page.evaluate(() => document.body.innerHTML)
@@ -63,7 +63,8 @@ class Puppeteer_DocumentLoaders implements INode {
type: 'number',
optional: true,
additionalParams: true,
description: 'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
description:
'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
warning: `Retrieving all links might take long time, and all links will be upserted again if the flow's state changed (eg: different URL, chunk size, etc)`
},
{
@@ -75,12 +76,12 @@ class Puppeteer_DocumentLoaders implements INode {
{
label: 'Load',
name: 'load',
description: `When the initial HTML document\'s DOM has been loaded and parsed`
description: `When the initial HTML document's DOM has been loaded and parsed`
},
{
label: 'DOM Content Loaded',
name: 'domcontentloaded',
description: `When the complete HTML document\'s DOM has been loaded and parsed`
description: `When the complete HTML document's DOM has been loaded and parsed`
},
{
label: 'Network Idle 0',
@@ -102,7 +103,7 @@ class Puppeteer_DocumentLoaders implements INode {
type: 'string',
optional: true,
additionalParams: true,
description: 'CSS selectors like .div or #div',
description: 'CSS selectors like .div or #div'
},
{
label: 'Metadata',
@@ -136,14 +137,14 @@ class Puppeteer_DocumentLoaders implements INode {
args: ['--no-sandbox'],
headless: 'new'
}
};
}
if (waitUntilGoToOption) {
config['gotoOptions'] = {
waitUntil: waitUntilGoToOption
}
}
if (waitForSelector) {
config['evaluate'] = async (page: Page, browser: Browser): Promise<string> => {
config['evaluate'] = async (page: Page, _: Browser): Promise<string> => {
await page.waitForSelector(waitForSelector)
const result = await page.evaluate(() => document.body.innerHTML)