feat(new-tool): toml to yaml

This commit is contained in:
Corentin Thomasset 2023-06-23 21:39:37 +02:00 committed by Corentin THOMASSET
parent c7d4f112c0
commit 746e5bdccc
4 changed files with 77 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<script setup lang="ts">
import { parse as parseToml } from 'iarna-toml-esm';
import { stringify as stringifyToYaml } from 'yaml';
import { withDefaultOnError } from '../../utils/defaults';
import { isValidToml } from '../toml-to-json/toml.services';
import type { UseValidationRule } from '@/composable/validation';
const transformer = (value: string) => value.trim() === '' ? '' : withDefaultOnError(() => stringifyToYaml(parseToml(value)), '');
const rules: UseValidationRule<string>[] = [
{
validator: isValidToml,
message: 'Provided TOML is not valid.',
},
];
</script>
<template>
<format-transformer
input-label="Your TOML"
input-placeholder="Paste your TOML here..."
output-label="YAML from your TOML"
output-language="yaml"
:input-validation-rules="rules"
:transformer="transformer"
/>
</template>