diff options
author | 2023-04-10 17:34:58 +0200 | |
---|---|---|
committer | 2023-04-10 22:38:35 +0200 | |
commit | c0a89131dd919c2bb6562cb0de18b1396e12bf23 (patch) | |
tree | 42cfe5c700ff2cd5190e8585589ea4f8f697bee5 /src | |
parent | 05f06f6a072e8421c48ebe7c2bafcbbe056163ed (diff) | |
download | it-tools-c0a89131dd919c2bb6562cb0de18b1396e12bf23.tar.gz it-tools-c0a89131dd919c2bb6562cb0de18b1396e12bf23.tar.zst it-tools-c0a89131dd919c2bb6562cb0de18b1396e12bf23.zip |
feat(new-tool): yaml and json converters
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/index.ts | 4 | ||||
-rw-r--r-- | src/tools/json-to-yaml-converter/index.ts | 12 | ||||
-rw-r--r-- | src/tools/json-to-yaml-converter/json-to-yaml.e2e.spec.ts | 19 | ||||
-rw-r--r-- | src/tools/json-to-yaml-converter/json-to-yaml.vue | 29 | ||||
-rw-r--r-- | src/tools/yaml-to-json-converter/index.ts | 12 | ||||
-rw-r--r-- | src/tools/yaml-to-json-converter/yaml-to-json.e2e.spec.ts | 31 | ||||
-rw-r--r-- | src/tools/yaml-to-json-converter/yaml-to-json.vue | 32 |
7 files changed, 139 insertions, 0 deletions
diff --git a/src/tools/index.ts b/src/tools/index.ts index c68c20a..5cb0cdc 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -1,6 +1,8 @@ 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 yamlToJson } from './yaml-to-json-converter'; +import { tool as jsonToYaml } from './json-to-yaml-converter'; import { tool as ipv6UlaGenerator } from './ipv6-ula-generator'; import { tool as ipv4AddressConverter } from './ipv4-address-converter'; import { tool as benchmarkBuilder } from './benchmark-builder'; @@ -66,6 +68,8 @@ export const toolsByCategory: ToolCategory[] = [ colorConverter, caseConverter, textToNatoAlphabet, + yamlToJson, + jsonToYaml, ], }, { diff --git a/src/tools/json-to-yaml-converter/index.ts b/src/tools/json-to-yaml-converter/index.ts new file mode 100644 index 0000000..9db09d3 --- /dev/null +++ b/src/tools/json-to-yaml-converter/index.ts @@ -0,0 +1,12 @@ +import { Braces } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'JSON to YAML converter', + path: '/json-to-yaml-converter', + description: 'Simply convert JSON to YAML with this live online converter.', + keywords: ['yaml', 'to', 'json'], + component: () => import('./json-to-yaml.vue'), + icon: Braces, + createdAt: new Date('2023-04-10'), +}); diff --git a/src/tools/json-to-yaml-converter/json-to-yaml.e2e.spec.ts b/src/tools/json-to-yaml-converter/json-to-yaml.e2e.spec.ts new file mode 100644 index 0000000..bce095b --- /dev/null +++ b/src/tools/json-to-yaml-converter/json-to-yaml.e2e.spec.ts @@ -0,0 +1,19 @@ +import { test, expect } from '@playwright/test'; + +test.describe('Tool - json to yaml', () => { + test.beforeEach(async ({ page }) => { + await page.goto('/json-to-yaml-converter'); + }); + + test('Has correct title', async ({ page }) => { + await expect(page).toHaveTitle('JSON to YAML converter - IT Tools'); + }); + + test('json is parsed and output clean yaml', async ({ page }) => { + await page.getByTestId('input').fill('{"foo":"bar","list":["item",{"key":"value"}]}'); + + const generatedJson = await page.getByTestId('area-content').innerText(); + + expect(generatedJson.trim()).toEqual(`foo: bar\nlist:\n - item\n - key: value`.trim()); + }); +}); diff --git a/src/tools/json-to-yaml-converter/json-to-yaml.vue b/src/tools/json-to-yaml-converter/json-to-yaml.vue new file mode 100644 index 0000000..f25ef37 --- /dev/null +++ b/src/tools/json-to-yaml-converter/json-to-yaml.vue @@ -0,0 +1,29 @@ +<template> + <format-transformer + input-label="Your JSON" + input-placeholder="Paste your JSON here..." + output-label="YAML from your JSON" + output-language="yaml" + :input-validation-rules="rules" + :transformer="transformer" + /> +</template> + +<script setup lang="ts"> +import type { UseValidationRule } from '@/composable/validation'; +import { isNotThrowing } from '@/utils/boolean'; +import { withDefaultOnError } from '@/utils/defaults'; +import { stringify } from 'yaml'; +import JSON5 from 'json5'; + +const transformer = (value: string) => withDefaultOnError(() => stringify(JSON5.parse(value)), ''); + +const rules: UseValidationRule<string>[] = [ + { + validator: (value: string) => value === '' || isNotThrowing(() => stringify(JSON5.parse(value))), + message: 'Provided JSON is not valid.', + }, +]; +</script> + +<style lang="less" scoped></style> diff --git a/src/tools/yaml-to-json-converter/index.ts b/src/tools/yaml-to-json-converter/index.ts new file mode 100644 index 0000000..724ecdb --- /dev/null +++ b/src/tools/yaml-to-json-converter/index.ts @@ -0,0 +1,12 @@ +import { AlignJustified } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'YAML to JSON converter', + path: '/yaml-to-json-converter', + description: 'Simply convert YAML to JSON with this live online converter.', + keywords: ['yaml', 'to', 'json'], + component: () => import('./yaml-to-json.vue'), + icon: AlignJustified, + createdAt: new Date('2023-04-10'), +}); diff --git a/src/tools/yaml-to-json-converter/yaml-to-json.e2e.spec.ts b/src/tools/yaml-to-json-converter/yaml-to-json.e2e.spec.ts new file mode 100644 index 0000000..10db449 --- /dev/null +++ b/src/tools/yaml-to-json-converter/yaml-to-json.e2e.spec.ts @@ -0,0 +1,31 @@ +import { test, expect } from '@playwright/test'; + +test.describe('Tool - Yaml to json', () => { + test.beforeEach(async ({ page }) => { + await page.goto('/yaml-to-json-converter'); + }); + + test('Has correct title', async ({ page }) => { + await expect(page).toHaveTitle('YAML to JSON converter - IT Tools'); + }); + + test('Yaml is parsed and output clean json', async ({ page }) => { + await page.getByTestId('input').fill('foo: bar\nlist:\n - item\n - key: value'); + + const generatedJson = await page.getByTestId('area-content').innerText(); + + expect(generatedJson.trim()).toEqual( + ` +{ + "foo": "bar", + "list": [ + "item", + { + "key": "value" + } + ] +} + `.trim(), + ); + }); +}); diff --git a/src/tools/yaml-to-json-converter/yaml-to-json.vue b/src/tools/yaml-to-json-converter/yaml-to-json.vue new file mode 100644 index 0000000..c066bdd --- /dev/null +++ b/src/tools/yaml-to-json-converter/yaml-to-json.vue @@ -0,0 +1,32 @@ +<template> + <format-transformer + input-label="Your YAML" + input-placeholder="Paste your yaml here..." + output-label="JSON from your YAML" + output-language="json" + :input-validation-rules="rules" + :transformer="transformer" + /> +</template> + +<script setup lang="ts"> +import type { UseValidationRule } from '@/composable/validation'; +import { isNotThrowing } from '@/utils/boolean'; +import { withDefaultOnError } from '@/utils/defaults'; +import { parse as parseYaml } from 'yaml'; + +const transformer = (value: string) => + withDefaultOnError(() => { + const obj = parseYaml(value); + return obj ? JSON.stringify(obj, null, 3) : ''; + }, ''); + +const rules: UseValidationRule<string>[] = [ + { + validator: (value: string) => isNotThrowing(() => parseYaml(value)), + message: 'Provided YAML is not valid.', + }, +]; +</script> + +<style lang="less" scoped></style> |