基于VUE的JSON树组件

基于VUE的JSON树组件

效果图

在这里插入图片描述
颜色可自行修改

组件代码

注释掉的是对齐线以及是否可以展开,根据自己的需求微调下就行

<template>
  <div class="bgView">
    <div :class="['json-view', length ? 'closeable' : '']" :style="'font-size:' + fontSize+'px'">
      <!-- <span @click="toggleClose" :class="['angle', innerclosed ? 'closed' : '']" v-if="length"></span> -->
      <div class="content-wrap">
        <p class="first-line">
          <span v-if="jsonKey" class="json-key">"{{jsonKey}}": </span>
          <span v-if="length">
            {{prefix}}
            {{innerclosed ? ('...' + subfix) : ''}}
            <span class="json-note">
              {{innerclosed ? (' // count: ' + length) : ''}}
            </span>
          </span>
          <span v-if="!length">{{isArray ? '[]' : '{}'}}</span>
        </p>
        <div v-if="!innerclosed && length" class="json-body">
          <template v-for="(item, index) in items">
            <json-view :closed="closed" v-if="item.isJSON" :key="index" :json="item.value" :jsonKey="item.key" :isLast="index === items.length - 1"></json-view>
            <p class="json-item" v-else :key="index">
              <span class="json-key">
                {{(isArray ? '' : '"' + item.key + '"')}}
              </span>
              :
              <span class="json-value">
                {{item.value + (index ===
            items.length - 1 ? '' : ',')}}
              </span>

            </p>
          </template>
          <!-- <span v-show="!innerclosed" class="body-line"></span> -->
        </div>
        <p v-if="!innerclosed && length" class="last-line">
          <span>{{subfix}}</span>
        </p>
      </div>
    </div>
  </div>
</template>

<script>
  export default {
    name: 'jsonView',
    props: {
      json: [Object, Array],
      jsonKey: {
        type: String,
        default: ''
      },
      closed: {
        type: Boolean,
        default: false
      },
      isLast: {
        type: Boolean,
        default: true
      },
      fontSize: {
        type: Number,
        default: 14
      }
    },
    created() {
      this.innerclosed = this.closed
      this.$watch('closed', () => {
        this.innerclosed = this.closed
      })
    },
    data() {
      return {
        innerclosed: true
      }
    },
    methods: {
      isObjectOrArray(source) {
        const type = Object.prototype.toString.call(source)
        const res = type === '[object Array]' || type === '[object Object]'
        return res
      },
      toggleClose() {
        if (this.innerclosed) {
          this.innerclosed = false
        } else {
          this.innerclosed = true
        }
      }
    },
    computed: {
      isArray() {
        return Object.prototype.toString.call(this.json) === '[object Array]'
      },
      length() {
        return this.isArray ? this.json.length : Object.keys(this.json).length
      },
      subfix() {
        return (this.isArray ? ']' : '}') + (this.isLast ? '' : ',')
      },
      prefix() {
        return this.isArray ? '[' : '{'
      },
      items() {
        if (this.isArray) {
          return this.json.map(item => {
            const isJSON = this.isObjectOrArray(item)
            return {
              value: isJSON ? item : JSON.stringify(item),
              isJSON,
              key: ''
            }
          })
        }
        const json = this.json
        return Object.keys(json).map(key => {
          const item = json[key]
          const isJSON = this.isObjectOrArray(item)
          return {
            value: isJSON ? item : JSON.stringify(item),
            isJSON,
            key
          }
        })
      }
    }
  }
</script>

<style lang="scss">
  .bgView {
    // background-color: #fafafa;
  }

  .json-view {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    padding-left: 20px;
    box-sizing: border-box;

    .json-note {
      color: #909399;
    }

    .json-key {
      color: rgb(147, 98, 15);
    }

    .json-value {
      color: rgb(24, 186, 24);
    }

    .json-item {
      margin: 0;
      padding-left: 20px;

    }

    .first-line {
      padding: 0;
      margin: 0;
    }

    .json-body {
      position: relative;
      padding: 0;
      margin: 0;

      .body-line {
        position: absolute;
        height: 100%;
        width: 0;
        border-left: dashed 1px #bbb;
        top: 0;
        left: 2px;
      }
    }

    .last-line {
      padding: 0;
      margin: 0;
    }

    .angle {
      position: absolute;
      display: block;
      cursor: pointer;
      float: left;
      width: 20px;
      text-align: center;
      left: 0;

      &::after {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        vertical-align: middle;
        border-top: solid 4px #333;
        border-left: solid 6px transparent;
        border-right: solid 6px transparent;
      }

      &.closed::after {
        border-left: solid 4px #333;
        border-top: solid 6px transparent;
        border-bottom: solid 6px transparent;
      }
    }
  }
</style>

使用组件

<vs-json :json="scope.row.value"></vs-json>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

巧克力味。

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值