在vue中使用jointjs

溫茶兒發表於2018-03-22

在vue中引入joint.js的問題,之前在網上搜了很多,都沒有給出一個確切的答案,搗鼓了兩天終於弄明白了,做個記錄。
首先,我參考了一篇來自stackoverflow的文章點我點我
看完這篇文章,大家應該至少大致怎麼做了,下面我們來具體看一下:

  • 首先在vue專案中執行npm install jointjs --save
  • 然後在入口檔案,我的是main.js,也有可能是app.js中加入下面兩行,把joint.js和jquery作為全域性變數

    window.$ = require('jquery');
    window.joint = require('jointjs');

這裡需要注意的是,joint.js依賴backbone、jquery和lodash,在通過script方式引入時,需要一一引入這些檔案,但通過vue的npm時不需要,npm引入的joint.js已經預設封裝好了這些。
通過這樣引入還不夠,可能會遇到圖可以正常載入,但無法拖拽的問題,遇到這些問題一般是joint.js和自己vue專案中的環境衝突了,導致無法讀取或者讀取錯誤。

我原來的專案中安裝了element、iview、axios、vuex、jquery,再安裝joint.js後,jointjs無法正常載入,後來重新建了一個專案,只安裝了element、axios、vuex,為避免jquery和joint.js中的jquery衝突,後來沒有裝jquery。

這樣就行了麼?就可以執行上文連結中的例子了麼?像這樣:

<template>
    <div>
        <h1>Home</h1>
        <div id="myholder"></div>
    </div>
</template>

<script>
    export default {
        created() {
            let graph = new joint.dia.Graph;

            let paper = new joint.dia.Paper({
                el: $('#myholder'),
                width: 600,
                height: 200,
                model: graph,
                gridSize: 1
            });

            let rect = new joint.shapes.basic.Rect({
                position: { x: 100, y: 30 },
                size: { width: 100, height: 30 },
                attrs: { rect: { fill: 'blue' }, text: { text: 'my box', fill: 'white' } }
            });

            let rect2 = rect.clone();
            rect2.translate(300);

            let link = new joint.dia.Link({
                source: { id: rect.id },
                target: { id: rect2.id }
            });

            graph.addCells([rect, rect2, link]);
        }
    }
</script>

NoNoNo,注意到這裡是把渲染放在了created的生命週期裡,根據vue的生命週期,是無法找到joint的掛載div的el: $('#myholder'),也就是說,執行會報錯,我的解決方法是把div放了一個click,把joint的內容從created中拿出,放在methods中,需要點選一下才可顯示哦,還不太完美,以待改進(~ ̄▽ ̄)~
也就是說,程式碼會變成這樣:

<template>
    <div>
        <div id="myholder" @click="click_joint"></div>
    </div>
</template>

<script>
    export default {
      methods:{
          click_joint() {
            let graph = new joint.dia.Graph;

            let paper = new joint.dia.Paper({
                el: $('#myholder'),
                width: 600,
                height: 200,
                model: graph,
                gridSize: 1
            });

            let rect = new joint.shapes.basic.Rect({
                position: { x: 100, y: 30 },
                size: { width: 100, height: 30 },
                attrs: { rect: { fill: 'blue' }, text: { text: 'my box', fill: 'white' } }
            });

            let rect2 = rect.clone();
            rect2.translate(300);

            let link = new joint.dia.Link({
                source: { id: rect.id },
                target: { id: rect2.id }
            });

            graph.addCells([rect, rect2, link]);
        }
      }
    }
</script>

點明一下,通過npm引入只要install jointjs就可以,不需要install lodash、backbone、jquery,也不需要在頁面中匯入joint.css檔案。筆者之前通過script方式引入joint.js,試了很多次,都沒有成功,一直讀取joint.js檔案出錯,如果其他小夥伴嘗試成功,歡迎交流分享。

相關文章