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>
 |