2021-04-16 11:34:06 +03:00
|
|
|
<template>
|
|
|
|
<FormGroup class="_formItem">
|
|
|
|
<template #label><slot></slot></template>
|
|
|
|
<div class="drooglns _formItem" :class="{ tall }">
|
|
|
|
<div class="input _formPanel">
|
|
|
|
<textarea class="_monospace"
|
|
|
|
v-model="v"
|
|
|
|
readonly
|
|
|
|
:spellcheck="false"
|
|
|
|
></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<template #caption><slot name="desc"></slot></template>
|
|
|
|
</FormGroup>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent, ref, toRefs, watch } from 'vue';
|
|
|
|
import * as JSON5 from 'json5';
|
|
|
|
import './form.scss';
|
|
|
|
import FormGroup from './group.vue';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormGroup,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
tall: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
pre: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
manualSave: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
},
|
|
|
|
setup(props, context) {
|
|
|
|
const { value } = toRefs(props);
|
|
|
|
const v = ref('');
|
|
|
|
|
|
|
|
watch(() => value, newValue => {
|
|
|
|
v.value = JSON5.stringify(newValue.value, null, '\t');
|
|
|
|
}, {
|
|
|
|
immediate: true
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
v,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.drooglns {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .input {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> textarea {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
min-height: 130px;
|
|
|
|
margin: 0;
|
2021-04-22 16:29:33 +03:00
|
|
|
padding: 16px var(--formContentHMargin);
|
2021-04-16 11:34:06 +03:00
|
|
|
box-sizing: border-box;
|
|
|
|
font: inherit;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1em;
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
outline: none;
|
|
|
|
box-shadow: none;
|
|
|
|
color: var(--fg);
|
|
|
|
tab-size: 2;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.tall {
|
|
|
|
> .input {
|
|
|
|
> textarea {
|
|
|
|
min-height: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|