溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue3遞歸組件封裝的全過程是怎樣的

發(fā)布時(shí)間:2021-09-26 13:41:19 來源:億速云 閱讀:167 作者:柒染 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)vue3遞歸組件封裝的全過程是怎樣的,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

前言

今天在寫項(xiàng)目時(shí),遇到一個(gè)自定義右鍵菜單的需求。在菜單中還有子菜單,所以這個(gè)時(shí)候就要用到遞歸組件了。所以寫下這篇文章來記錄一下自己編寫遞歸組件的過程。

1、遞歸組件

?? 遞歸組件,顧名思義就是在組件本身內(nèi)部調(diào)用自身。所以我們先構(gòu)建一個(gè)組件,并在自身內(nèi)部調(diào)用自身。常見的遞歸組件就是我們項(xiàng)目中經(jīng)常會(huì)用到的樹組件了。下面就是我自己實(shí)現(xiàn)的一個(gè)能夠滿足項(xiàng)目需求的遞歸組件的源碼。

<template>
   <ul class="list-container">
       <li v-for="(item,index) in listData" 
            :key="index" class="list-item" 
            @click.prevent.stop="handleClick($event,item)"
            @mouseover="childrenMenuIndex=index"
            >
           <span class="list-item_span">
               {{item.text}}
           </span>
           <CaretRightOutlined v-if="item.children"  />
           <!-- 判斷是否需要調(diào)用自身 -->
           <div v-if="item.children&&childrenMenuIndex===index"
            class="context-menu context-menu_children"
           >
            <!-- 在組件自身內(nèi)部調(diào)用自身 -->
            <list-comp :list-data='item.children' @hideContextMenu='hideContextMenuEvent' />
           </div>
       </li>
   </ul>
</template>
<script>
import { defineComponent, ref } from "vue";
import {CaretRightOutlined} from '@ant-design/icons-vue';
export default defineComponent({
    name:'list-comp',
    props:{
        listData:{
            type:Array,
            default:()=>[]
        }
    },
    components:{
        CaretRightOutlined
    },
    emits:[
        "hideContextMenu"
    ],
    setup(props,{emit}){
    	//點(diǎn)擊事件
        const handleClick=(event,{text,callBack})=>{
            emit('hideContextMenu');
            //callBack是你自己傳進(jìn)來的回調(diào)函數(shù),如果傳入了,則調(diào)用自定義回調(diào)函數(shù)
            if(callBack){
                callBack();
                return;
            }
        }
        const hideContextMenuEvent=()=>{
            emit('hideContextMenu');    
        }
        //用于標(biāo)識(shí)當(dāng)前選中的菜單項(xiàng)
        const childrenMenuIndex=ref(-1);
        const eventNames=['click','contextmenu'];
        onMounted(()=>{ 
            eventNames.forEach(eventName=>window.addEventListener(eventName,hideContextMenuEvent))
        })
        onBeforeUnmount(()=>{
            eventNames.forEach(eventName=>window.removeEventListener(eventName,hideContextMenuEvent))
        })
        return {
            handleClick,
            childrenMenuIndex,
            hideContextMenuEvent
        }
    }
})
</script>

注意事項(xiàng)

  • 在遞歸組件本身內(nèi)部,調(diào)用自身時(shí),需要將在遞歸組件上接收自己通過emit發(fā)出的自定義事件,接收后,在組件內(nèi)部再次通過emit觸發(fā)自定義事件。

  • 通過監(jiān)聽click事件,可以通過emit觸發(fā)自定義事件,在組件外部監(jiān)聽;也可以直接在通過 props傳遞數(shù)據(jù)到組件內(nèi)部時(shí),就自己先構(gòu)建好回調(diào),這樣就可以不用通過emit觸發(fā)自定義事件了。

  • 在點(diǎn)擊遞歸組件中的菜單項(xiàng)時(shí),需要讓遞歸組件銷毀。所有我們需要在 遞歸組件內(nèi)通過事件冒泡 監(jiān)聽click,contextmenu等事件來讓組件銷毀,然后通過emit觸發(fā)自定義事件,讓外界接收,從而達(dá)到銷毀組件的目的。

  • 在遞歸組件內(nèi)部調(diào)用click事件時(shí),需要阻止事件冒泡以及默認(rèn)事件??梢栽赾lick事件后面添加click.prevent.stop來阻止事件冒泡和默認(rèn)事件。

2、右鍵菜單組件

??我項(xiàng)目中使用的是組件的形式來實(shí)現(xiàn)右鍵菜單菜單的。當(dāng)然也可以通過插件的形式來實(shí)現(xiàn)。我這里的右鍵菜單本質(zhì)上就是對(duì)遞歸組件 的二次封裝,其實(shí)不用二次封裝也可以,可以直接使用遞歸組件作為右鍵菜單。

<template>
    <teleport to='body' >
        <div class="content-menu_container" :>
            <list-comp 
                :list-data='menuData'
                @hideContextMenu='windowClickHandler'
             />
        </div>
    </teleport>
</template>
<script>
import { defineComponent } from "vue";
import ListComp from "./list-comp.vue"
export default defineComponent({
    name:"contextMenu",
    components:{
        ListComp
    },
    props:{
        styleObj:{
            type:Object,
            default:()=>{}
        },
        menuData:{
            type:Array,
            default:()=>[]
        }
    },
    emits:['closeContextMenu'],
    setup(props,{emit}){
        const windowClickHandler=()=>{
            emit('closeContextMenu')
        };
        return {
            windowClickHandler,
        }
    }
})
</script>

注意事項(xiàng)

在項(xiàng)目中調(diào)用右鍵菜單時(shí),需要先禁用掉window自身的右鍵菜單事件。然后實(shí)現(xiàn)自己的自定義菜單事件。實(shí)現(xiàn)代碼如下所示。

const showContextMenu=(event)=>{
    //禁用默認(rèn)事件和阻止冒泡
    event.stopPropagation();
    event.preventDefault();
    state.showContextMenu=true;
    state.styleObj={
      left:event.clientX+ "px",
      top:event.clientY+'px'
    }
  }
  //監(jiān)聽window自身的右鍵菜單事件
  onMounted(()=>{
    window.addEventListener('contextmenu',showContextMenu)
  })
  onBeforeUnmount(()=>{
    window.removeEventListener('contextmenu',showContextMenu)
  })

關(guān)于vue3遞歸組件封裝的全過程是怎樣的就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI