feat(new-tool): json to toml

This commit is contained in:
Corentin Thomasset 2023-06-23 21:40:30 +02:00 committed by Corentin THOMASSET
parent 746e5bdccc
commit ea50a3fc65
5 changed files with 83 additions and 0 deletions

View file

@ -0,0 +1,28 @@
<script setup lang="ts">
import { stringify as stringifyToml } from 'iarna-toml-esm';
import JSON5 from 'json5';
import { withDefaultOnError } from '../../utils/defaults';
import type { UseValidationRule } from '@/composable/validation';
const convertJsonToToml = (value: string) => [stringifyToml(JSON5.parse(value))].flat().join('\n').trim();
const transformer = (value: string) => value.trim() === '' ? '' : withDefaultOnError(() => convertJsonToToml(value), '');
const rules: UseValidationRule<string>[] = [
{
validator: (v: string) => v === '' || JSON5.parse(v),
message: 'Provided JSON is not valid.',
},
];
</script>
<template>
<format-transformer
input-label="Your JSON"
input-placeholder="Paste your JSON here..."
output-label="TOML from your JSON"
output-language="toml"
:input-validation-rules="rules"
:transformer="transformer"
/>
</template>