<template>
  <div class="hsInputBox" :id='elId'>
     <div class="inputCurr">
          <el-radio-group v-model="value_inner">
            <el-radio v-for="(item,index) in sourceData" :key="index" :label='item.value'>
              {{item.label}}
            </el-radio>
          </el-radio-group>
     </div>
    <jsoneditor v-model='jsoneditorVisible'
                :elInfo='elInfo'
                :layout='layout'
                :jsoneditorCloseAfter='jsoneditorCloseAfter'
                :jsoneditorOpenAfter='jsoneditorOpenAfter'
                 >
    </jsoneditor>
  </div>
</template>
<script>
import ucComponent from '../ucClass/uc_component'
import jsoneditor from '../common/jsoneditor'
export default {
  mixins: [ucComponent],
  components: {
    jsoneditor
  },
  name: 'hs-radio',
  props: {
    allSourceData: {
      type: Object,
      default() {
        return {}
      }
    },
    elInfo: {
      type: Object,
      default() {
        return {}
      }
    },
    value: '',
    layout: {},
    jsoneditorCloseAfter: {
      type: Function
    },
    jsoneditorOpenAfter: {
      type: Function
    }
  },
  watch: {
    allSourceData: {
      handler: function(newVal, oldVal) {
        const { config } = newVal
        this.initConfig(config)
      },
      deep: true
    },
    value(val) {
      this.value_inner = val
    },
    value_inner(val) {
      this.$emit('input', val)
    }
  },
  data() {
    return {
      elId: '',
      value_inner: '',
      jsoneditorVisible: false,
      sourceData: [],
      configData: {
      }
    }
  },
  mounted() {
    this.$nextTick(() => {
      const { config, sourceData } = this.allSourceData
      this.sourceData = sourceData
      this.initConfig(config)
    })
  },
  methods: {
    initConfig(config = {}) {
      this.configData = Object.assign(this.configData, config)
    }
  }
}
</script>
<style scoped>
.hsInputBox{
  padding: 1px;
  width:100%;
  height:100%;
  display: flex;
}

.inputCurr{
  display: flex;
  justify-content: center;
  align-items: center;
}
</style>