由于公司業(yè)務(wù)需求,需要開發(fā)一個(gè)展示組織架構(gòu)的樹組件(公司的項(xiàng)目是基于Vue)。在GitHub上找了半天,這類組件不多,也沒有符合業(yè)務(wù)需求的組件,所以決定自己造輪子!
分析
那么,問題來了。遞歸組件怎么寫?
遞歸組件
Vue官方文檔是這樣說的:
組件在它的模板內(nèi)可以遞歸地調(diào)用自己。不過,只有當(dāng)它有 name 選項(xiàng)時(shí)才可以這么做
接下來,我們來寫一個(gè)樹節(jié)點(diǎn)遞歸組件:
<template> <div class="org-tree-node"> <div class="org-tree-node-label">{{data.label}}</div> <div class="org-tree-node-children" v-if="data.children"> <org-tree-node v-for="node in data.children" :data="node" :key="data.id"></org-tree-node> </div> </div> </template> <script> export default { name: 'OrgTreeNode', props: { data: Object } } </script> <style> /* ... */ </style>
然后渲染這個(gè)這個(gè)組件,效果如下
至此,一個(gè)簡單的組織架構(gòu)樹組件就完成了。
然而,事情還遠(yuǎn)遠(yuǎn)沒有結(jié)束。。
需求說:節(jié)點(diǎn)的label要支持定制,樹要支持水平展示!
因此,我們對遞歸組件作如下修改:
<template> <div class="org-tree-node"> <div class="org-tree-node-label"> <slot>{{data.label}}</slot> </div> <div class="org-tree-node-children" v-if="data.children"> <org-tree-node v-for="node in data.children" :data="node" :key="data.id"></org-tree-node> </div> </div> </template> <script> export default { name: 'OrgTreeNode', props: { data: Object } } </script> <style> /* ... */ </style>
我們使用slot插槽來支持label可定制,但是問題又來了:我們發(fā)現(xiàn)只有第一層級的節(jié)點(diǎn)label能定制,嵌套的子節(jié)點(diǎn)不能有效的傳遞slot插槽。上網(wǎng)查了半天,仍然沒有結(jié)果,于是再看官方文檔。發(fā)現(xiàn)有個(gè)函數(shù)式組件。由于之前使用過 element-ui 的 tree 組件,受到啟發(fā),就想到了可以像 element-ui 的 tree 組件一樣傳一個(gè) renderContent 函數(shù),由調(diào)用者自己渲染節(jié)點(diǎn)label,這樣就達(dá)到了節(jié)點(diǎn)定制的目的!
函數(shù)式組件
接下來,我們將樹節(jié)點(diǎn)模板組件改造成函數(shù)式組件。編寫node.js:
首先我們實(shí)現(xiàn)一個(gè)render函數(shù)
export const render = (h, context) => { const {props} = context return renderNode(h, props.data, context) }
實(shí)現(xiàn)renderNode函數(shù)
export const renderNode = (h, data, context) => { const {props} = context const childNodes = [] childNodes.push(renderLabel(h, data, context)) if (props.data.children && props.data.children.length) { childNodes.push(renderChildren(h, props.data.children, context)) } return h('div', { domProps: { className: 'org-tree-node' } }, childNodes) }
實(shí)現(xiàn)renderLabel函數(shù)。節(jié)點(diǎn)label定制關(guān)鍵在這里:
export const renderLabel = (h, data, context) => { const {props} = context const renderContent = props.renderContent const childNodes = [] // 節(jié)點(diǎn)label定制,由調(diào)用者傳入的renderContent實(shí)現(xiàn) if (typeof renderContent === 'function') { let vnode = renderContent(h, props.data) vnode && childNodes.push(vnode) } else { childNodes.push(props.data.label) } return h('div', { domProps: { className: 'org-tree-node-label' } }, childNodes) }
實(shí)現(xiàn)renderChildren函數(shù)。這里遞歸調(diào)用renderNode,實(shí)現(xiàn)了遞歸組件
export const renderChildren = (h, list, context) => { if (Array.isArray(list) && list.length) { const children = list.map(item => { return renderNode(h, item, context) }) return h('div', { domProps: { className: 'org-tree-node-children' } }, children) } return '' }
至此我們的render函數(shù)完成了,接下來使用render函數(shù)定義函數(shù)式組件。在tree組件里面聲明:
<template> <!-- ... --> </template> <script> import render from './node.js' export default { name: 'OrgTree', components: { OrgTreeNode: { render, // 定義函數(shù)式組件 functional: true } } } </script>
至此我們的函數(shù)式組件改造完成了,至于水平顯示用樣式控制就可以了。
CSS樣式
樣式使用less預(yù)編譯。節(jié)點(diǎn)之間的線條采用了 :before 、 :after 偽元素的 border 繪制
功能擴(kuò)展
最終效果:
default
horizontal
問題總結(jié)
可以定義一個(gè)樹的store,存儲每個(gè)節(jié)點(diǎn)狀態(tài),這樣就可以在內(nèi)部維護(hù)樹節(jié)點(diǎn)的展開可收起狀態(tài)
總結(jié)
以上所述是小編給大家介紹的基于Vue制作組織架構(gòu)樹組件的全部內(nèi)容,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com