mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-08 15:15:02 -04:00
27 lines
831 B
Vue
27 lines
831 B
Vue
<script setup lang="ts">
|
|
import { stringify } from 'yaml';
|
|
import JSON5 from 'json5';
|
|
import type { UseValidationRule } from '@/composable/validation';
|
|
import { isNotThrowing } from '@/utils/boolean';
|
|
import { withDefaultOnError } from '@/utils/defaults';
|
|
|
|
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>
|
|
|
|
<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>
|