mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
62 lines
1.4 KiB
Vue
62 lines
1.4 KiB
Vue
![]() |
<script setup lang="ts">
|
||
|
import linter from 'jsonlint-mod';
|
||
|
|
||
|
const jsonContent = ref(
|
||
|
`{
|
||
|
a: True;
|
||
|
b=5
|
||
|
}`,
|
||
|
);
|
||
|
|
||
|
const conversionResult = computed(() => {
|
||
|
try {
|
||
|
linter.parse(jsonContent.value);
|
||
|
return JSON.stringify(JSON.parse(jsonContent.value), null, 2);
|
||
|
}
|
||
|
catch (e: any) {
|
||
|
return e.toString().split('\n').map((err: string) => ({ line: -1, message: err, helpLink: '' }));
|
||
|
}
|
||
|
});
|
||
|
|
||
|
const errors = computed(() => conversionResult.value);
|
||
|
|
||
|
const MONACO_EDITOR_OPTIONS = {
|
||
|
automaticLayout: true,
|
||
|
formatOnType: true,
|
||
|
formatOnPaste: true,
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<c-label label="Paste your JSON file content:">
|
||
|
<div relative w-full>
|
||
|
<c-monaco-editor
|
||
|
v-model:value="jsonContent"
|
||
|
theme="vs-dark"
|
||
|
language="yaml"
|
||
|
height="250px"
|
||
|
:options="MONACO_EDITOR_OPTIONS"
|
||
|
/>
|
||
|
</div>
|
||
|
</c-label>
|
||
|
|
||
|
<div v-if="errors.length > 0">
|
||
|
<n-alert title="The following errors occured" type="error" mt-5>
|
||
|
<ul>
|
||
|
<li v-for="(message, index) of errors" :key="index">
|
||
|
{{ message.message }} (<n-a v-if="message.helpLink" target="_blank" rel="noreferer noopener">
|
||
|
See JSON help
|
||
|
</n-a>)
|
||
|
</li>
|
||
|
</ul>
|
||
|
</n-alert>
|
||
|
</div>
|
||
|
<div v-else>
|
||
|
<n-alert type="success" mt-5>
|
||
|
Validation successful!
|
||
|
</n-alert>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|