1. 程式人生 > >通過資料自動生成流程圖(前端)

通過資料自動生成流程圖(前端)

最近有一個需求是根據資料自動在前端頁面畫出一個流程導向圖,簡單說就是把資料以A節點指向B節點,B節點指向C節點這種形式給你,然後讓頁面自己在一定區域內渲染出一個流程圖.當然節點上可能還有其他資訊,這個暫時不考慮,就是這樣一個需求,最後是藉助一個工具完成的.先說一下處理過程:

可以說這個問題一開始我走了彎路,想的不是那麼清楚,一開始想的是自己畫.低端的就是用html+css各種佈局,畫出方塊和線條,至於箭頭什麼的再想辦法.後來一想這樣太低端了,應該專業一點,就打算用canvas或者svg.因為之前用過echarts前端的圖示庫,知道它底層有個依賴庫zrender就是專門弄canvas的,所以好一陣看,感覺還靠譜,能畫出來.

通過資料自動生成流程圖(前端方向) - 專業成就夢想

這樣雖然能畫出來,不過接下來我們就要考慮更多的問題,首先什麼時候折行,然後遇到分支的種種情況怎麼處理.最後我查資料竟然開始涉及一些圖論的東西了,深刻感覺到東西好像變複雜了,我的目的不是研究理論,而是為了一個實現.

這時候轉變一下思路,有沒有什麼工具能專門做這樣的工作,類似於jQuery大家都用它操作DOM,RequireJS都用它來實現模組化載入.那應該也有類似的東西,集成了數學上的圖論,自動佈局等.這就不得不說Github火的一塌糊塗是有原因的,我搜了很多中文網站以及百度都沒什麼結果(不知道是不是關鍵字有問題),總之沒搜到能用的東西.但是在Github上找到了一個開源專案:dagre-d3.

看名字就能猜到它是基於D3庫的,D3是一個專門用於前端圖形繪製的庫,dagre-d3就是實現自動佈局並且繪製流程圖的這麼一個東西.

Dagre is a JavaScript library that makes it easy to lay out directed graphs on the client-side. The dagre-d3 library acts a front-end to dagre, providing actual rendering using D3.

上一個簡單的Demo:

// Create a new directed graph
var g = new
dagreD3.Digraph(); // Add nodes to the graph. The first argument is the node id. The second is // metadata about the node. In this case we're going to add labels to each of // our nodes. g.addNode("kspacey", { label: "Kevin Spacey" }); g.addNode("swilliams", { label: "Saul Williams" }); g.addNode("bpitt", { label: "Brad Pitt" }); g.addNode("hford", { label: "Harrison Ford" }); g.addNode("lwilson", { label: "Luke Wilson" }); g.addNode("kbacon", { label: "Kevin Bacon" }); // Add edges to the graph. The first argument is the edge id. Here we use null // to indicate that an arbitrary edge id can be assigned automatically. The // second argument is the source of the edge. The third argument is the target // of the edge. The last argument is the edge metadata. g.addEdge(null, "kspacey", "swilliams", { label: "K-PAX" }); g.addEdge(null, "swilliams", "kbacon", { label: "These Vagabond Shoes" }); g.addEdge(null, "bpitt", "kbacon", { label: "Sleepers" }); g.addEdge(null, "hford", "lwilson", { label: "Anchorman 2" }); g.addEdge(null, "lwilson", "kbacon", { label: "Telling Lies in America" });

它渲染出來是這樣的:

通過資料自動生成流程圖(前端方向) - 專業成就夢想

這樣我們只要把資料處理成對應格式,就可以輕鬆的自動繪製會流程圖.比較給力的是它對資料的支援良好,有多個格式可以選擇,而且雖然介面不多,但是對於節點以及線條的操作都有,可以很輕鬆的改變節點以及線條的樣式,這個大家可以看官方的demo.

另外如果要附加互動事件,可以通過jquery實現,也很容易,我使用bootstrap的tooltip很輕鬆的就加上去了.感覺還是個很給力的庫,而且國內這方面資料感覺不多,分享給大家.

原文地址: