Elementベースのコンポーネントを改造したツリーセレクタ(ツリードロップフレーム)


前書き:プロジェクトをするにはツリー型のセレクタが必要です。プロジェクト用もelement-uiのフレームワークです。しかし、自分の持っているセレクタのセットはツリー型のオプションがなく、他のフレームのセットを導入したくないので、自分でel-selectとel-treeを使って一つを改造しました。とても使いやすいと思います。
element-uiのel-selectコンポーネントのオプションはリスト形式だけです。

 変換後のツリー:

この樹形セレクタコンポーネントは、elment-uiフレームのel-selectとel-treeコンポーネントに基づいて改造されたもので、元のel-selectコンポーネントのオプションリストが樹形ではない問題を解決し、前の2つのコンポーネントの属性と方法をセットして一つのコンポーネントにパッケージ化し、導入すれば使用できる。ツリーのリスト、デフォルトの展開、デフォルトの選択、空の選択などの機能を実現し、ほとんどのセレクタの使用ニーズを満たすことができます。
主要コード
el-selectとel-treeコンポーネントを組み合わせる:

<template>
 <el-select :value="valueTitle" :clearable="clearable" @clear="clearHandle">
  <el-option :value="valueTitle" :label="valueTitle">
   <el-tree id="tree-option"
    ref="selectTree"
    :accordion="accordion"
    :data="options"
    :props="props"
    :node-key="props.value"  
    :default-expanded-keys="defaultExpandedKey"
    @node-click="handleNodeClick">
   </el-tree>
  </el-option>
 </el-select>
</template>
パッケージコンポーネント:

<script>
export default {
 name: "el-tree-select",
 props:{
  /*     */
  props:{
   type: Object,
   default:()=>{
    return {
     value:'id',       // ID   
     label: 'title',     //     
     children: 'children'  //      
    }
   }
  },
  /*       (         ) */
  options:{
   type: Array,    
   default: ()=>{ return [] }
  },
  /*     */
  value:{
   type: Number,
   default: ()=>{ return null }
  },
  /*       */
  clearable:{
   type:Boolean,
   default:()=>{ return true }
  },
  /*      */
  accordion:{
   type:Boolean,
   default:()=>{ return false }
  },
 },
 data() {
  return {
   valueId:this.value,  //    
   valueTitle:'',
   defaultExpandedKey:[]  
  }
 },
 mounted(){
  this.initHandle()
 },
 methods: {
  //     
  initHandle(){
   if(this.valueId){
    this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[this.props.label]   //      
    this.$refs.selectTree.setCurrentKey(this.valueId)    //       
    this.defaultExpandedKey = [this.valueId]   //       
   } 
   this.$nextTick(()=>{
    let scrollWrap = document.querySelectorAll('.el-scrollbar .el-select-dropdown__wrap')[0]
    let scrollBar = document.querySelectorAll('.el-scrollbar .el-scrollbar__bar')
    scrollWrap.style.cssText = 'margin: 0px; max-height: none; overflow: hidden;'
    scrollBar.forEach(ele => ele.style.width = 0)
   })
 
  },
  //     
  handleNodeClick(node){
   this.valueTitle = node[this.props.label]
   this.valueId = node[this.props.value]
   this.$emit('getValue',this.valueId)
   this.defaultExpandedKey = []
  },
  //     
  clearHandle(){
   this.valueTitle = ''
   this.valueId = null
   this.defaultExpandedKey = []
   this.clearSelected()
   this.$emit('getValue',null)
  },
  /*        */
  clearSelected(){
   let allNode = document.querySelectorAll('#tree-option .el-tree-node')
   allNode.forEach((element)=>element.classList.remove('is-current'))
  }
 },
 watch: {
  value(){
   this.valueId = this.value
   this.initHandle()
  }
 },
};
</script>
cssスタイル:

<style scoped>
 .el-scrollbar .el-scrollbar__view .el-select-dropdown__item{
  height: auto;
  max-height: 274px;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
 }
 .el-select-dropdown__item.selected{
  font-weight: normal;
 }
 ul li >>>.el-tree .el-tree-node__content{
  height:auto;
  padding: 0 20px;
 }
 .el-tree-node__label{
  font-weight: normal;
 }
 .el-tree >>>.is-current .el-tree-node__label{
  color: #409EFF;
  font-weight: 700;
 }
 .el-tree >>>.is-current .el-tree-node__children .el-tree-node__label{
  color:#606266;
  font-weight: normal;
 }
</style>
デモを見る
注意:このツリー型の選択は、ツリー型のオブジェクト配列でなければなりません。たとえば、値はフラットデータであり、ツリー型のデータに変換する必要があります。jsは無限階層ツリー構造を実現する(革新アルゴリズム)を参照することができます
ここでは、Elementのコンポーネントを改造したツリー型セレクタ(樹形ドロップフレーム)に関する記事を紹介します。Elementツリーの選択内容については、以前の記事を検索したり、以下の関連記事を見たりしてください。これからもよろしくお願いします。