diff --git a/components.d.ts b/components.d.ts index f2c3146f..b358b7b3 100644 --- a/components.d.ts +++ b/components.d.ts @@ -77,6 +77,7 @@ declare module '@vue/runtime-core' { EmojiPicker: typeof import('./src/tools/emoji-picker/emoji-picker.vue')['default'] Encryption: typeof import('./src/tools/encryption/encryption.vue')['default'] EtaCalculator: typeof import('./src/tools/eta-calculator/eta-calculator.vue')['default'] + ExtractTextFromHtml: typeof import('./src/tools/extract-text-from-html/extract-text-from-html.vue')['default'] FavoriteButton: typeof import('./src/components/FavoriteButton.vue')['default'] FormatTransformer: typeof import('./src/components/FormatTransformer.vue')['default'] GitMemo: typeof import('./src/tools/git-memo/git-memo.vue')['default'] @@ -126,25 +127,26 @@ declare module '@vue/runtime-core' { MenuLayout: typeof import('./src/components/MenuLayout.vue')['default'] MetaTagGenerator: typeof import('./src/tools/meta-tag-generator/meta-tag-generator.vue')['default'] MimeTypes: typeof import('./src/tools/mime-types/mime-types.vue')['default'] + NAlert: typeof import('naive-ui')['NAlert'] NavbarButtons: typeof import('./src/components/NavbarButtons.vue')['default'] NCode: typeof import('naive-ui')['NCode'] NCollapseTransition: typeof import('naive-ui')['NCollapseTransition'] + NColorPicker: typeof import('naive-ui')['NColorPicker'] NConfigProvider: typeof import('naive-ui')['NConfigProvider'] NDivider: typeof import('naive-ui')['NDivider'] NEllipsis: typeof import('naive-ui')['NEllipsis'] NFormItem: typeof import('naive-ui')['NFormItem'] - NGi: typeof import('naive-ui')['NGi'] - NGrid: typeof import('naive-ui')['NGrid'] NH1: typeof import('naive-ui')['NH1'] NH3: typeof import('naive-ui')['NH3'] NIcon: typeof import('naive-ui')['NIcon'] + NInputGroup: typeof import('naive-ui')['NInputGroup'] + NInputGroupLabel: typeof import('naive-ui')['NInputGroupLabel'] NInputNumber: typeof import('naive-ui')['NInputNumber'] - NLabel: typeof import('naive-ui')['NLabel'] NLayout: typeof import('naive-ui')['NLayout'] NLayoutSider: typeof import('naive-ui')['NLayoutSider'] NMenu: typeof import('naive-ui')['NMenu'] NScrollbar: typeof import('naive-ui')['NScrollbar'] - NSpin: typeof import('naive-ui')['NSpin'] + NSwitch: typeof import('naive-ui')['NSwitch'] NumeronymGenerator: typeof import('./src/tools/numeronym-generator/numeronym-generator.vue')['default'] OtpCodeGeneratorAndValidator: typeof import('./src/tools/otp-code-generator-and-validator/otp-code-generator-and-validator.vue')['default'] PasswordStrengthAnalyser: typeof import('./src/tools/password-strength-analyser/password-strength-analyser.vue')['default'] diff --git a/src/tools/extract-text-from-html/extract-text-from-html.e2e.spec.ts b/src/tools/extract-text-from-html/extract-text-from-html.e2e.spec.ts new file mode 100644 index 00000000..c48029ab --- /dev/null +++ b/src/tools/extract-text-from-html/extract-text-from-html.e2e.spec.ts @@ -0,0 +1,17 @@ +import { test, expect } from '@playwright/test'; + +test.describe('Tool - Extract text from html', () => { + test.beforeEach(async ({ page }) => { + await page.goto('/extract-text-from-html'); + }); + + test('Has correct title', async ({ page }) => { + await expect(page).toHaveTitle('Extract text from HTML'); + }); + + test('Extract text from HTML', async ({ page }) => { + await page.getByTestId('input').fill('

Paste your HTML in the input form on the left

'); + const extractedText = await page.getByTestId('area-content').innerText(); + expect(extractedText.trim()).toEqual('Paste your HTML in the input form on the left'.trim()); + }); +}); diff --git a/src/tools/extract-text-from-html/extract-text-from-html.service.test.ts b/src/tools/extract-text-from-html/extract-text-from-html.service.test.ts new file mode 100644 index 00000000..2648a2cb --- /dev/null +++ b/src/tools/extract-text-from-html/extract-text-from-html.service.test.ts @@ -0,0 +1,36 @@ +import { expect, describe, it } from 'vitest'; +import { getTextFromHtml, validateHtml } from './extract-text-from-html.service'; + +describe('extract-text-from-html service', () => { + describe('validateHtml', () => { + it('check if the value is valid html', () => { + expect(validateHtml('

Paste your HTML in the input form on the left

')).toBeTruthy(); + expect(validateHtml('
Paste your HTML in the input form on the left
')).toBeTruthy(); + expect(validateHtml('

Paste your HTML in the input form on the left

')).toBeTruthy(); + expect(validateHtml('

Paste your HTML in the input form on the left

')).toBeTruthy(); + expect(validateHtml('

Paste your HTML in the input form on the left

')).toBeTruthy(); + }); + + it('check if the value is an html invlid', () => { + expect(validateHtml('

Paste your HTML in the input form on the left

')).toBeFalsy(); + expect(validateHtml('Paste your HTML in the input form on the left

')).toBeFalsy(); + expect(validateHtml('

Paste your HTML in the input form on the left')).toBeFalsy(); + expect(validateHtml('

Paste your HTML in the input form on the left<>')).toBeFalsy(); + expect(validateHtml('<>Paste your HTML in the input form on the left<>')).toBeFalsy(); + expect(validateHtml('

Paste your HTML in the input form on the left')).toBeFalsy(); + expect(validateHtml('

Paste your HTML in the input form on the left

')).toBeTruthy(); + }); + }); + + describe('getTextFromHtml', () => { + it('must be return a string', () => { + expect(getTextFromHtml('

Paste your HTML in the input form on the left

')).toString(); + }); + + it('must be return text from html', () => { + expect(getTextFromHtml('

Paste your HTML in the input form on the left

')).toStrictEqual( + 'Paste your HTML in the input form on the left', + ); + }); + }); +}); diff --git a/src/tools/extract-text-from-html/extract-text-from-html.service.ts b/src/tools/extract-text-from-html/extract-text-from-html.service.ts new file mode 100644 index 00000000..66705a62 --- /dev/null +++ b/src/tools/extract-text-from-html/extract-text-from-html.service.ts @@ -0,0 +1,21 @@ +function validateHtml(value: string) { + try { + new DOMParser().parseFromString(value, 'text/html'); + } catch (error) { + return false; + } + + const regex = /<([a-z][a-z0-9]*)\b[^>]*>(.*?)<\/\1>|<([a-z][a-z0-9]*)\b[^\/]*\/>/gi; + const matches = value.match(regex); + + return Boolean(matches !== null && matches.length); +} + +function getTextFromHtml(value: string) { + const element = document.createElement('div'); + element.innerHTML = value; + const text = element?.innerText || element?.textContent || ''; + return text.replace(/\s+/g, ' '); +} + +export { validateHtml, getTextFromHtml }; diff --git a/src/tools/extract-text-from-html/extract-text-from-html.vue b/src/tools/extract-text-from-html/extract-text-from-html.vue new file mode 100644 index 00000000..471226fb --- /dev/null +++ b/src/tools/extract-text-from-html/extract-text-from-html.vue @@ -0,0 +1,33 @@ + + + + + diff --git a/src/tools/extract-text-from-html/index.ts b/src/tools/extract-text-from-html/index.ts new file mode 100644 index 00000000..b724e809 --- /dev/null +++ b/src/tools/extract-text-from-html/index.ts @@ -0,0 +1,13 @@ +import { CursorText } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'Extract text from HTML', + path: '/extract-text-from-html', + description: + 'Paste your HTML in the input form on the left and you will get text instantly. Occasionally, you may need to extract plain text from an HTML page where CSS properties (like user-select: none;) prevent text selection. The typical workaround involves using the DevTools (F12) to select "Copy → outer HTML". The proposed tool would simplify this process by extracting the "inner Text" directly from the copied HTML.', + keywords: ['extract', 'text', 'from', 'html'], + component: () => import('./extract-text-from-html.vue'), + icon: CursorText, + createdAt: new Date('2024-05-10'), +}); diff --git a/src/tools/index.ts b/src/tools/index.ts index aa861c93..db6d3b47 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -1,6 +1,7 @@ import { tool as base64FileConverter } from './base64-file-converter'; import { tool as base64StringConverter } from './base64-string-converter'; import { tool as basicAuthGenerator } from './basic-auth-generator'; +import { tool as extractTextFromHtml } from './extract-text-from-html'; import { tool as asciiTextDrawer } from './ascii-text-drawer'; @@ -148,6 +149,7 @@ export const toolsByCategory: ToolCategory[] = [ dockerRunToDockerComposeConverter, xmlFormatter, yamlViewer, + extractTextFromHtml, ], }, {