This commit is contained in:
Daniel Eduardo Almagro 2024-07-17 20:10:52 +02:00 committed by GitHub
commit d30586e6b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 149 additions and 1 deletions

29
components.d.ts vendored
View file

@ -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']
@ -89,17 +90,28 @@ declare module '@vue/runtime-core' {
HttpStatusCodes: typeof import('./src/tools/http-status-codes/http-status-codes.vue')['default']
IbanValidatorAndParser: typeof import('./src/tools/iban-validator-and-parser/iban-validator-and-parser.vue')['default']
'IconMdi:brushVariant': typeof import('~icons/mdi/brush-variant')['default']
'IconMdi:contentCopy': typeof import('~icons/mdi/content-copy')['default']
'IconMdi:kettleSteamOutline': typeof import('~icons/mdi/kettle-steam-outline')['default']
IconMdiArrowDown: typeof import('~icons/mdi/arrow-down')['default']
IconMdiArrowRightBottom: typeof import('~icons/mdi/arrow-right-bottom')['default']
IconMdiCamera: typeof import('~icons/mdi/camera')['default']
IconMdiChevronDown: typeof import('~icons/mdi/chevron-down')['default']
IconMdiChevronRight: typeof import('~icons/mdi/chevron-right')['default']
IconMdiClose: typeof import('~icons/mdi/close')['default']
IconMdiContentCopy: typeof import('~icons/mdi/content-copy')['default']
IconMdiDeleteOutline: typeof import('~icons/mdi/delete-outline')['default']
IconMdiDownload: typeof import('~icons/mdi/download')['default']
IconMdiEye: typeof import('~icons/mdi/eye')['default']
IconMdiEyeOff: typeof import('~icons/mdi/eye-off')['default']
IconMdiHeart: typeof import('~icons/mdi/heart')['default']
IconMdiPause: typeof import('~icons/mdi/pause')['default']
IconMdiPlay: typeof import('~icons/mdi/play')['default']
IconMdiRecord: typeof import('~icons/mdi/record')['default']
IconMdiRefresh: typeof import('~icons/mdi/refresh')['default']
IconMdiSearch: typeof import('~icons/mdi/search')['default']
IconMdiTranslate: typeof import('~icons/mdi/translate')['default']
IconMdiTriangleDown: typeof import('~icons/mdi/triangle-down')['default']
IconMdiVideo: typeof import('~icons/mdi/video')['default']
InputCopyable: typeof import('./src/components/InputCopyable.vue')['default']
IntegerBaseConverter: typeof import('./src/tools/integer-base-converter/integer-base-converter.vue')['default']
Ipv4AddressConverter: typeof import('./src/tools/ipv4-address-converter/ipv4-address-converter.vue')['default']
@ -126,25 +138,40 @@ 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']
NCheckbox: typeof import('naive-ui')['NCheckbox']
NCode: typeof import('naive-ui')['NCode']
NCollapseTransition: typeof import('naive-ui')['NCollapseTransition']
NColorPicker: typeof import('naive-ui')['NColorPicker']
NConfigProvider: typeof import('naive-ui')['NConfigProvider']
NDatePicker: typeof import('naive-ui')['NDatePicker']
NDivider: typeof import('naive-ui')['NDivider']
NDynamicInput: typeof import('naive-ui')['NDynamicInput']
NEllipsis: typeof import('naive-ui')['NEllipsis']
NForm: typeof import('naive-ui')['NForm']
NFormItem: typeof import('naive-ui')['NFormItem']
NGi: typeof import('naive-ui')['NGi']
NGrid: typeof import('naive-ui')['NGrid']
NH1: typeof import('naive-ui')['NH1']
NH2: typeof import('naive-ui')['NH2']
NH3: typeof import('naive-ui')['NH3']
NIcon: typeof import('naive-ui')['NIcon']
NImage: typeof import('naive-ui')['NImage']
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']
NProgress: typeof import('naive-ui')['NProgress']
NScrollbar: typeof import('naive-ui')['NScrollbar']
NSlider: typeof import('naive-ui')['NSlider']
NSpin: typeof import('naive-ui')['NSpin']
NStatistic: typeof import('naive-ui')['NStatistic']
NSwitch: typeof import('naive-ui')['NSwitch']
NTable: typeof import('naive-ui')['NTable']
NTag: typeof import('naive-ui')['NTag']
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']

View file

@ -0,0 +1,17 @@
import { expect, test } 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 - IT Tools');
});
test('Extract text from HTML', async ({ page }) => {
await page.getByTestId('input').fill('<p>Paste your HTML in the input form on the left</p>');
const extractedText = await page.getByTestId('area-content').innerText();
expect(extractedText.trim()).toEqual('Paste your HTML in the input form on the left'.trim());
});
});

View file

@ -0,0 +1,36 @@
import { describe, expect, 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('<p>Paste your HTML in the input form on the left</p>')).toBeTruthy();
expect(validateHtml('<div>Paste your HTML in the input form on the left</div>')).toBeTruthy();
expect(validateHtml('<div><p>Paste your HTML in the input form on the left</p></div>')).toBeTruthy();
expect(validateHtml('<body><div><p>Paste your HTML in the input form on the left</p></div></body>')).toBeTruthy();
expect(validateHtml('<p>Paste your HTML in the input form on the left</p>')).toBeTruthy();
});
it('check if the value is an html invlid', () => {
expect(validateHtml('<p>Paste your HTML in the input form on the left<p>')).toBeFalsy();
expect(validateHtml('Paste your HTML in the input form on the left<p>')).toBeFalsy();
expect(validateHtml('<p>Paste your HTML in the input form on the left')).toBeFalsy();
expect(validateHtml('<p>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('<p>Paste your HTML in the input form on the left</a>')).toBeFalsy();
expect(validateHtml('<div><p>Paste your HTML in the input form on the left</p>')).toBeTruthy();
});
});
describe('getTextFromHtml', () => {
it('must be return a string', () => {
expect(getTextFromHtml('<p>Paste your HTML in the input form on the left</p>')).toString();
});
it('must be return text from html', () => {
expect(getTextFromHtml('<p>Paste your HTML in the input form on the left</p>')).toStrictEqual(
'Paste your HTML in the input form on the left',
);
});
});
});

View file

@ -0,0 +1,22 @@
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 };

View file

@ -0,0 +1,31 @@
<script setup lang="ts">
import { getTextFromHtml, validateHtml } from './extract-text-from-html.service';
import { withDefaultOnError } from '@/utils/defaults';
import type { UseValidationRule } from '@/composable/validation';
function transformer(value: string) {
return withDefaultOnError(() => {
if (value === '') {
return '';
}
return getTextFromHtml(value);
}, '');
}
const rules: UseValidationRule<string>[] = [
{
validator: (value: string) => value === '' || validateHtml(value),
message: 'Provided HTML is not valid.',
},
];
</script>
<template>
<format-transformer
input-label="Your raw HTML"
input-placeholder="Paste your raw HTML here..."
output-label="Text from your HTML"
:input-validation-rules="rules"
:transformer="transformer"
/>
</template>

View file

@ -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'),
});

View file

@ -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,
],
},
{