mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-03 21:09:12 -04:00
29 lines
911 B
Vue
29 lines
911 B
Vue
![]() |
<script setup lang="ts">
|
||
|
import { stringify as stringifyToml } from 'iarna-toml-esm';
|
||
|
import { parse as parseYaml } from 'yaml';
|
||
|
import { withDefaultOnError } from '../../utils/defaults';
|
||
|
import type { UseValidationRule } from '@/composable/validation';
|
||
|
|
||
|
const convertYamlToToml = (value: string) => [stringifyToml(parseYaml(value))].flat().join('\n').trim();
|
||
|
|
||
|
const transformer = (value: string) => value.trim() === '' ? '' : withDefaultOnError(() => convertYamlToToml(value), '');
|
||
|
|
||
|
const rules: UseValidationRule<string>[] = [
|
||
|
{
|
||
|
validator: (v: string) => v === '' || parseYaml(v),
|
||
|
message: 'Provided JSON is not valid.',
|
||
|
},
|
||
|
];
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<format-transformer
|
||
|
input-label="Your YAML"
|
||
|
input-placeholder="Paste your YAML here..."
|
||
|
output-label="TOML from your YAML"
|
||
|
output-language="toml"
|
||
|
:input-validation-rules="rules"
|
||
|
:transformer="transformer"
|
||
|
/>
|
||
|
</template>
|