it-tools/src/tools/json-viewer/json-viewer.vue

73 lines
1.8 KiB
Vue
Raw Normal View History

2022-05-09 17:41:42 +02:00
<template>
<n-form-item
label="Your raw json"
:feedback="rawJsonValidation.message"
:validation-status="rawJsonValidation.status"
>
<n-input
ref="inputElement"
v-model:value="rawJson"
placeholder="Paste your raw json here..."
type="textarea"
rows="20"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
/>
</n-form-item>
<n-form-item label="Prettify version of your json">
<n-card class="result-card" :style="`min-height: ${inputElementHeight ?? 400}px`">
2022-05-09 17:41:42 +02:00
<n-config-provider :hljs="hljs">
<n-code :code="cleanJson" language="json" :trim="false" />
2022-05-09 17:41:42 +02:00
</n-config-provider>
<n-button v-if="cleanJson" class="copy-button" secondary @click="copy">Copy</n-button>
</n-card>
</n-form-item>
2022-05-09 17:41:42 +02:00
</template>
<script setup lang="ts">
import { useCopy } from '@/composable/copy';
import { useValidation } from '@/composable/validation';
import { useElementSize } from '@vueuse/core';
2022-05-09 17:41:42 +02:00
import hljs from 'highlight.js/lib/core';
import json from 'highlight.js/lib/languages/json';
import { computed, ref } from 'vue';
2022-05-09 17:41:42 +02:00
hljs.registerLanguage('json', json);
const inputElement = ref<HTMLElement>();
const { height: inputElementHeight } = useElementSize(inputElement);
2022-05-09 17:41:42 +02:00
const rawJson = ref('{"hello": "world"}');
2022-05-09 17:41:42 +02:00
const cleanJson = computed(() => {
try {
return JSON.stringify(JSON.parse(rawJson.value), null, 3);
} catch (_) {
return '';
}
});
const { copy } = useCopy({ source: cleanJson });
2022-05-09 17:41:42 +02:00
const rawJsonValidation = useValidation({
source: rawJson,
rules: [
{
validator: (v) => v === '' || JSON.parse(v),
message: 'Invalid json',
2022-05-09 17:41:42 +02:00
},
],
});
</script>
<style lang="less" scoped>
.result-card {
position: relative;
.copy-button {
position: absolute;
top: 10px;
right: 10px;
}
2022-05-09 17:41:42 +02:00
}
</style>