mirror of
https://github.com/tenrok/vue-json-viewer.git
synced 2026-06-11 18:02:29 +03:00
105 lines
2.3 KiB
Vue
105 lines
2.3 KiB
Vue
<template>
|
||
<div class="jv-node">
|
||
<span class="jv-toggle" :class="{open: !!toggle}" v-if="keyName && isObject" @click.stop="toggleNode"></span>
|
||
<span class="jv-key" v-if="keyName">
|
||
{{keyName}}:
|
||
</span>
|
||
<commponent v-model="toggle"
|
||
:is="`Json${valueType}`"
|
||
:json-value="value"
|
||
:key-name="keyName"
|
||
:sort="sort"></commponent>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import JIcon from './json-icon'
|
||
import JsonString from './types/json-string';
|
||
import JsonUndefined from './types/json-undefined';
|
||
import JsonNumber from './types/json-number';
|
||
import JsonBoolean from './types/json-boolean';
|
||
import JsonObject from './types/json-object';
|
||
import JsonArray from './types/json-array';
|
||
import JsonFunction from './types/json-function';
|
||
|
||
export default {
|
||
name: 'JsonBox',
|
||
props: {
|
||
value: [Object, Array, String, Number, Boolean, Function],
|
||
keyName: String,
|
||
sort: Boolean
|
||
},
|
||
data() {
|
||
return {
|
||
toggle: true
|
||
};
|
||
},
|
||
methods: {
|
||
toggleNode() {
|
||
this.toggle = !this.toggle;
|
||
}
|
||
},
|
||
computed: {
|
||
valueType() {
|
||
if (this.value === null || this.value === undefined) {
|
||
return 'Undefined';
|
||
} else if (Array.isArray(this.value)) {
|
||
return 'Array';
|
||
} else if (typeof this.value === 'object') {
|
||
return 'Object';
|
||
} else if (typeof this.value === 'number') {
|
||
return 'Number';
|
||
} else if (typeof this.value === 'string') {
|
||
return 'String';
|
||
} else if (typeof this.value === 'boolean') {
|
||
return 'Boolean';
|
||
} else if (typeof this.value === 'function') {
|
||
return 'Function';
|
||
}
|
||
},
|
||
isObject() {
|
||
return this.valueType == 'Array' || this.valueType == 'Object'; // eslint-disable-line
|
||
}
|
||
},
|
||
components: {
|
||
JsonString,
|
||
JsonNumber,
|
||
JsonBoolean,
|
||
JsonObject,
|
||
JsonArray,
|
||
JsonFunction,
|
||
JsonUndefined,
|
||
JIcon
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.jv-node {
|
||
font-size: 14px;
|
||
position: relative;
|
||
color: #525252;
|
||
font-family: Consolas,Menlo,Courier,monospace;
|
||
white-space: nowrap;
|
||
|
||
&:after {
|
||
content: ','
|
||
}
|
||
&:last-of-type {
|
||
&:after {
|
||
content: ''
|
||
}
|
||
}
|
||
/*.j-icon {
|
||
position: absolute;
|
||
left: -12px;
|
||
top: 3px;
|
||
color: #80848f;
|
||
cursor: pointer;
|
||
}*/
|
||
& .jv-node {
|
||
margin-left: 25px;
|
||
}
|
||
}
|
||
</style>
|