mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
28 lines
849 B
Vue
28 lines
849 B
Vue
![]() |
<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>
|