jsPlumbHandle.js 21.8 KB
Newer Older
L
ligang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
17 18 19
import 'jquery-ui/ui/widgets/draggable'
import 'jquery-ui/ui/widgets/droppable'
import 'jquery-ui/ui/widgets/resizable'
L
ligang 已提交
20 21 22 23 24 25 26
import _ from 'lodash'
import i18n from '@/module/i18n'
import { jsPlumb } from 'jsplumb'
import DragZoom from './dragZoom'
import store from '@/conf/home/store'
import router from '@/conf/home/router'
import { uuid, findComponentDownward } from '@/module/util/'
27

L
ligang 已提交
28 29 30 31 32
import {
  tasksAll,
  rtTasksTpl,
  setSvgColor,
  saveTargetarr,
S
satcblue 已提交
33 34
  rtTargetarrArr,
  computeScale
35
} from './util'
S
satcblue 已提交
36
import multiDrag from './multiDrag'
L
ligang 已提交
37

38
const JSP = function () {
L
ligang 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  this.dag = {}
  this.selectedElement = {}

  this.config = {
    // Whether to drag
    isDrag: true,
    // Whether to allow connection
    isAttachment: false,
    // Whether to drag a new node
    isNewNodes: true,
    // Whether to support double-click node events
    isDblclick: true,
    // Whether to support right-click menu events
    isContextmenu: true,
    // Whether to allow click events
    isClick: false
  }
}
/**
 * dag init
 */
Z
zhukai 已提交
60
JSP.prototype.init = function ({ dag, instance, options }) {
L
ligang 已提交
61 62 63 64
  // Get the dag component instance
  this.dag = dag
  // Get jsplumb instance
  this.JspInstance = instance
Z
zhukai 已提交
65 66
  // Get JSP options
  this.options = options || {}
L
ligang 已提交
67 68 69
  // Register jsplumb connection type and configuration
  this.JspInstance.registerConnectionType('basic', {
    anchor: 'Continuous',
B
break60 已提交
70
    connector: 'Bezier' // Line type
L
ligang 已提交
71 72 73 74 75 76
  })

  // Initial configuration
  this.setConfig({
    isDrag: !store.state.dag.isDetails,
    isAttachment: false,
77
    isNewNodes: !store.state.dag.isDetails, // Permissions.getAuth() === false ? false : !store.state.dag.isDetails,
L
ligang 已提交
78 79 80 81 82 83 84
    isDblclick: true,
    isContextmenu: true,
    isClick: false
  })

  // Monitor line click
  this.JspInstance.bind('click', e => {
85
    // Untie event
L
ligang 已提交
86 87
    if (this.config.isClick) {
      this.connectClick(e)
88
    } else {
89
      findComponentDownward(this.dag.$root, 'dag-chart')._createLineLabel({ id: e._jsPlumb.overlays.label.canvas.id, sourceId: e.sourceId, targetId: e.targetId })
L
ligang 已提交
90 91 92 93 94 95 96
    }
  })

  // Drag and drop
  if (this.config.isNewNodes) {
    DragZoom.init()
  }
S
satcblue 已提交
97 98 99

  // support multi drag
  multiDrag()
L
ligang 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112
}

/**
 * set config attribute
 */
JSP.prototype.setConfig = function (o) {
  this.config = Object.assign(this.config, {}, o)
}

/**
 * Node binding event
 */
JSP.prototype.tasksEvent = function (selfId) {
113
  const tasks = $(`#${selfId}`)
L
ligang 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
  // Bind right event
  tasks.on('contextmenu', e => {
    this.tasksContextmenu(e)
    return false
  })

  // Binding double click event
  tasks.find('.icos').bind('dblclick', e => {
    this.tasksDblclick(e)
  })

  // Binding click event
  tasks.on('click', e => {
    this.tasksClick(e)
  })
}

/**
 * Dag node drag and drop processing
 */
JSP.prototype.draggable = function () {
  if (this.config.isNewNodes) {
    let selfId
137
    const self = this
L
ligang 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
    $('.toolbar-btn .roundedRect').draggable({
      scope: 'plant',
      helper: 'clone',
      containment: $('.dag-model'),
      stop: function (e, ui) {
      },
      drag: function () {
        $('body').find('.tooltip.fade.top.in').remove()
      }
    })

    $('#canvas').droppable({
      scope: 'plant',
      drop: function (ev, ui) {
        let id = 'tasks-' + Math.ceil(Math.random() * 100000) // eslint-disable-line
S
satcblue 已提交
153 154 155 156 157 158 159

        let scale = computeScale($(this))
        scale = scale || 1

        // Get mouse coordinates and after scale coordinate
        const left = parseInt(ui.offset.left - $(this).offset().left) / scale
        const top = parseInt(ui.offset.top - $(this).offset().top) / scale
L
ligang 已提交
160 161 162 163 164 165 166 167 168 169 170
        // Generate template node
        $('#canvas').append(rtTasksTpl({
          id: id,
          name: id,
          x: left,
          y: top,
          isAttachment: self.config.isAttachment,
          taskType: findComponentDownward(self.dag.$root, 'dag-chart').dagBarId
        }))

        // Get the generated node
171
        const thisDom = jsPlumb.getSelector('.statemachine-demo .w')
L
ligang 已提交
172 173 174 175 176 177

        // Generating a connection node
        self.JspInstance.batch(() => {
          self.initNode(thisDom[thisDom.length - 1])
        })
        selfId = id
Z
zhukai 已提交
178 179 180 181 182 183 184 185 186 187

        self.tasksEvent(selfId)

        // Dom structure is not generated without pop-up form form
        if ($(`#${selfId}`).html()) {
          // dag event
          findComponentDownward(self.dag.$root, 'dag-chart')._createNodes({
            id: selfId
          })
        }
L
ligang 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201
      }
    })
  }
}

/**
 * Echo json processing and old data structure processing
 */
JSP.prototype.jsonHandle = function ({ largeJson, locations }) {
  _.map(largeJson, v => {
    // Generate template
    $('#canvas').append(rtTasksTpl({
      id: v.id,
      name: v.name,
202 203 204
      x: locations[v.id].x,
      y: locations[v.id].y,
      targetarr: locations[v.id].targetarr,
L
ligang 已提交
205
      isAttachment: this.config.isAttachment,
G
gongzijian 已提交
206
      taskType: v.type,
207
      runFlag: v.runFlag,
208
      nodenumber: locations[v.id].nodenumber,
209 210
      successNode: v.conditionResult === undefined ? '' : v.conditionResult.successNode[0],
      failedNode: v.conditionResult === undefined ? '' : v.conditionResult.failedNode[0]
L
ligang 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
    }))

    // contextmenu event
    $(`#${v.id}`).on('contextmenu', e => {
      this.tasksContextmenu(e)
      return false
    })

    // dblclick event
    $(`#${v.id}`).find('.icos').bind('dblclick', e => {
      this.tasksDblclick(e)
    })

    // click event
    $(`#${v.id}`).bind('click', e => {
      this.tasksClick(e)
    })
  })
}

/**
 * Initialize a single node
 */
JSP.prototype.initNode = function (el) {
  // Whether to drag
  if (this.config.isDrag) {
    this.JspInstance.draggable(el, {
      containment: 'dag-container'
    })
  }

  // Node attribute configuration
  this.JspInstance.makeSource(el, {
    filter: '.ep',
    anchor: 'Continuous',
    connectorStyle: {
B
break60 已提交
247
      stroke: '#2d8cf0',
L
ligang 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
      strokeWidth: 2,
      outlineStroke: 'transparent',
      outlineWidth: 4
    },
    // This place is leaking
    // connectionType: "basic",
    extract: {
      action: 'the-action'
    },
    maxConnections: -1
  })

  // Node connection property configuration
  this.JspInstance.makeTarget(el, {
    dropOptions: { hoverClass: 'dragHover' },
    anchor: 'Continuous',
    allowLoopback: false // Forbid yourself to connect yourself
  })
  this.JspInstance.fire('jsPlumbDemoNodeAdded', el)
}

/**
 * Node right click menu
 */
JSP.prototype.tasksContextmenu = function (event) {
  if (this.config.isContextmenu) {
274
    const routerName = router.history.current.name
L
ligang 已提交
275
    // state
276
    const isOne = routerName === 'projects-definition-details' && this.dag.releaseState !== 'NOT_RELEASE'
L
ligang 已提交
277
    // hide
278
    const isTwo = store.state.dag.isDetails
L
ligang 已提交
279

280
    const html = [
281 282 283 284
      `<a href="javascript:" id="startRunning" class="${isOne ? '' : 'disbled'}"><em class="el-icon-video-play"></em><span>${i18n.$t('Start')}</span></a>`,
      `<a href="javascript:" id="editNodes" class="${isTwo ? 'disbled' : ''}"><em class="el-icon-edit-outline"></em><span>${i18n.$t('Edit')}</span></a>`,
      `<a href="javascript:" id="copyNodes" class="${isTwo ? 'disbled' : ''}"><em class="el-icon-copy-document"></em><span>${i18n.$t('Copy')}</span></a>`,
      `<a href="javascript:" id="removeNodes" class="${isTwo ? 'disbled' : ''}"><em class="el-icon-delete"></em><span>${i18n.$t('Delete')}</span></a>`
L
ligang 已提交
285 286
    ]

287
    const operationHtml = () => {
L
ligang 已提交
288 289 290
      return html.splice(',')
    }

291 292 293 294 295 296
    const e = event
    const $id = e.currentTarget.id
    const $contextmenu = $('#contextmenu')
    const $name = $(`#${$id}`).find('.name-p').text()
    const $left = e.pageX + document.body.scrollLeft - 5
    const $top = e.pageY + document.body.scrollTop - 5
L
ligang 已提交
297 298 299 300 301 302 303 304 305 306 307
    $contextmenu.css({
      left: $left,
      top: $top,
      visibility: 'visible'
    })
    // Action bar
    $contextmenu.html('').append(operationHtml)

    if (isOne) {
      // start run
      $('#startRunning').on('click', () => {
308 309
        const name = store.state.dag.name
        const id = router.history.current.params.id
L
ligang 已提交
310
        store.dispatch('dag/getStartCheck', { processDefinitionId: id }).then(res => {
311
          this.dag.startRunning({ id: id, name: name }, $name, 'contextmenu')
L
ligang 已提交
312 313 314
        })
      })
    }
315
    if (!isTwo) {
L
ligang 已提交
316
      // edit node
317
      $('#editNodes').click(ev => {
L
ligang 已提交
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
        findComponentDownward(this.dag.$root, 'dag-chart')._createNodes({
          id: $id,
          type: $(`#${$id}`).attr('data-tasks-type')
        })
      })
      // delete node
      $('#removeNodes').click(ev => {
        this.removeNodes($id)
      })

      // copy node
      $('#copyNodes').click(res => {
        this.copyNodes($id)
      })
    }
  }
}

/**
 * Node double click event
 */
JSP.prototype.tasksDblclick = function (e) {
  // Untie event
  if (this.config.isDblclick) {
342
    const id = $(e.currentTarget.offsetParent).attr('id')
L
ligang 已提交
343 344 345 346 347 348 349 350 351 352 353 354
    findComponentDownward(this.dag.$root, 'dag-chart')._createNodes({
      id: id,
      type: $(`#${id}`).attr('data-tasks-type')
    })
  }
}

/**
 * Node click event
 */
JSP.prototype.tasksClick = function (e) {
  let $id
355 356
  const self = this
  const $body = $('body')
L
ligang 已提交
357
  if (this.config.isClick) {
358
    const $connect = this.selectedElement.connect
L
ligang 已提交
359 360 361
    $('.w').removeClass('jtk-tasks-active')
    $(e.currentTarget).addClass('jtk-tasks-active')
    if ($connect) {
B
break60 已提交
362
      setSvgColor($connect, '#2d8cf0')
L
ligang 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
      this.selectedElement.connect = null
    }
    this.selectedElement.id = $(e.currentTarget).attr('id')

    // Unbind copy and paste events
    $body.unbind('copy').unbind('paste')
    // Copy binding id
    $id = self.selectedElement.id

    $body.bind({
      copy: function () {
        $id = self.selectedElement.id
      },
      paste: function () {
        $id && self.copyNodes($id)
      }
    })
  }
}

/**
 * Remove binding events
 * paste
 */
JSP.prototype.removePaste = function () {
388
  const $body = $('body')
L
ligang 已提交
389 390 391 392 393 394 395 396 397 398 399 400 401 402
  // Unbind copy and paste events
  $body.unbind('copy').unbind('paste')
  // Remove selected node parameters
  this.selectedElement.id = null
  // Remove node selection effect
  $('.w').removeClass('jtk-tasks-active')
}

/**
 * Line click event
 */
JSP.prototype.connectClick = function (e) {
  // Set svg color
  setSvgColor(e, '#0097e0')
403
  const $id = this.selectedElement.id
L
ligang 已提交
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
  if ($id) {
    $(`#${$id}`).removeClass('jtk-tasks-active')
    this.selectedElement.id = null
  }
  this.selectedElement.connect = e
}

/**
 * toolbarEvent
 * @param {Pointer}
 */
JSP.prototype.handleEventPointer = function (is) {
  this.setConfig({
    isClick: is,
    isAttachment: false
  })
}

/**
 * toolbarEvent
 * @param {Line}
 */
JSP.prototype.handleEventLine = function (is) {
427
  const wDom = $('.w')
L
ligang 已提交
428 429 430 431 432 433 434 435 436 437 438
  this.setConfig({
    isAttachment: is
  })
  is ? wDom.addClass('jtk-ep') : wDom.removeClass('jtk-ep')
}

/**
 * toolbarEvent
 * @param {Remove}
 */
JSP.prototype.handleEventRemove = function () {
439 440
  const $id = this.selectedElement.id || null
  const $connect = this.selectedElement.connect || null
L
ligang 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
  if ($id) {
    this.removeNodes(this.selectedElement.id)
  } else {
    this.removeConnect($connect)
  }

  // Monitor whether to edit DAG
  store.commit('dag/setIsEditDag', true)
}

/**
 * Delete node
 */
JSP.prototype.removeNodes = function ($id) {
  // Delete node processing(data-targetarr)
  _.map(tasksAll(), v => {
457
    const targetarr = v.targetarr.split(',')
L
ligang 已提交
458
    if (targetarr.length) {
459
      const newArr = _.filter(targetarr, v1 => v1 !== $id)
L
ligang 已提交
460 461 462 463 464
      $(`#${v.id}`).attr('data-targetarr', newArr.toString())
    }
  })
  // delete node
  this.JspInstance.remove($id)
465 466 467

  // delete dom
  $(`#${$id}`).remove()
Z
zhukai 已提交
468 469

  // callback onRemoveNodes event
470
  this.options && this.options.onRemoveNodes && this.options.onRemoveNodes($id)
471
  const connects = []
472 473 474 475 476 477 478 479 480
  _.map(this.JspInstance.getConnections(), v => {
    connects.push({
      endPointSourceId: v.sourceId,
      endPointTargetId: v.targetId,
      label: v._jsPlumb.overlays.label.canvas.innerText
    })
  })
  // Storage line dependence
  store.commit('dag/setConnects', connects)
L
ligang 已提交
481 482 483 484 485 486 487 488 489 490
}

/**
 * Delete connection
 */
JSP.prototype.removeConnect = function ($connect) {
  if (!$connect) {
    return
  }
  // Remove connections and remove node and node dependencies
491 492
  const targetId = $connect.targetId
  const sourceId = $connect.sourceId
L
ligang 已提交
493 494 495 496 497
  let targetarr = rtTargetarrArr(targetId)
  if (targetarr.length) {
    targetarr = _.filter(targetarr, v => v !== sourceId)
    $(`#${targetId}`).attr('data-targetarr', targetarr.toString())
  }
498 499
  if ($(`#${sourceId}`).attr('data-tasks-type') === 'CONDITIONS') {
    $(`#${sourceId}`).attr('data-nodenumber', Number($(`#${sourceId}`).attr('data-nodenumber')) - 1)
500
  }
L
ligang 已提交
501 502 503 504 505 506 507 508 509 510
  this.JspInstance.deleteConnection($connect)

  this.selectedElement = {}
}

/**
 * Copy node
 */
JSP.prototype.copyNodes = function ($id) {
  let newNodeInfo = _.cloneDeep(_.find(store.state.dag.tasks, v => v.id === $id))
511
  const newNodePors = store.state.dag.locations[$id]
L
ligang 已提交
512 513 514 515 516
  // Unstored nodes do not allow replication
  if (!newNodePors) {
    return
  }
  // Generate random id
517 518 519
  const newUuId = `${uuid() + uuid()}`
  const id = newNodeInfo.id.length > 8 ? newNodeInfo.id.substr(0, 7) : newNodeInfo.id
  const name = newNodeInfo.name.length > 8 ? newNodeInfo.name.substr(0, 7) : newNodeInfo.name
L
ligang 已提交
520 521

  // new id
522
  const newId = `${id || ''}-${newUuId}`
L
ligang 已提交
523
  // new name
524
  const newName = `${name || ''}-${newUuId}`
L
ligang 已提交
525
  // coordinate x
526
  const newX = newNodePors.x + 100
L
ligang 已提交
527
  // coordinate y
528
  const newY = newNodePors.y + 40
L
ligang 已提交
529 530 531 532 533 534 535 536 537 538 539 540

  // Generate template node
  $('#canvas').append(rtTasksTpl({
    id: newId,
    name: newName,
    x: newX,
    y: newY,
    isAttachment: this.config.isAttachment,
    taskType: newNodeInfo.type
  }))

  // Get the generated node
541
  const thisDom = jsPlumb.getSelector('.statemachine-demo .w')
L
ligang 已提交
542 543 544 545 546 547 548 549 550 551

  // Copy node information
  newNodeInfo = Object.assign(newNodeInfo, {
    id: newId,
    name: newName
  })

  // Add new node
  store.commit('dag/addTasks', newNodeInfo)
  // Add node location information
552
  store.commit('dag/addLocations', {
L
ligang 已提交
553 554 555
    [newId]: {
      name: newName,
      targetarr: '',
556
      nodenumber: 0,
L
ligang 已提交
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
      x: newX,
      y: newY
    }
  })

  // Generating a connection node
  this.JspInstance.batch(() => {
    this.initNode(thisDom[thisDom.length - 1])
    // Add events to nodes
    this.tasksEvent(newId)
  })
}
/**
 * toolbarEvent
 * @param {Screen}
 */
JSP.prototype.handleEventScreen = function ({ item, is }) {
  let screenOpen = true
  if (is) {
576
    item.icon = 'el-icon-minus'
L
ligang 已提交
577 578
    screenOpen = true
  } else {
579
    item.icon = 'el-icon-full-screen'
L
ligang 已提交
580 581
    screenOpen = false
  }
582
  const $mainLayoutModel = $('.main-layout-model')
L
ligang 已提交
583 584 585 586 587 588 589 590 591 592 593 594 595 596
  if (screenOpen) {
    $mainLayoutModel.addClass('dag-screen')
  } else {
    $mainLayoutModel.removeClass('dag-screen')
  }
}
/**
 * save task
 * @param tasks
 * @param locations
 * @param connects
 */
JSP.prototype.saveStore = function () {
  return new Promise((resolve, reject) => {
597 598 599
    const connects = []
    const locations = {}
    const tasks = []
L
ligang 已提交
600

601
    const is = (id) => {
L
ligang 已提交
602 603 604 605 606 607
      return !!_.filter(tasksAll(), v => v.id === id).length
    }

    // task
    _.map(_.cloneDeep(store.state.dag.tasks), v => {
      if (is(v.id)) {
608 609 610 611
        const preTasks = []
        const id = $(`#${v.id}`)
        const tar = id.attr('data-targetarr')
        const idDep = tar ? id.attr('data-targetarr').split(',') : []
L
ligang 已提交
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
        if (idDep.length) {
          _.map(idDep, v1 => {
            preTasks.push($(`#${v1}`).find('.name-p').text())
          })
        }

        let tasksParam = _.assign(v, {
          preTasks: preTasks
        })

        // Sub-workflow has no retries and interval
        if (v.type === 'SUB_PROCESS') {
          tasksParam = _.omit(tasksParam, ['maxRetryTimes', 'retryInterval'])
        }

        tasks.push(tasksParam)
      }
    })
630
    console.log(store.state.dag.connects.length, this.JspInstance.getConnections().length)
631
    if (store.state.dag.connects.length === this.JspInstance.getConnections().length) {
632 633 634 635 636 637
      _.map(store.state.dag.connects, u => {
        connects.push({
          endPointSourceId: u.endPointSourceId,
          endPointTargetId: u.endPointTargetId,
          label: u.label
        })
L
ligang 已提交
638
      })
639
    } else if (store.state.dag.connects.length > 0 && store.state.dag.connects.length < this.JspInstance.getConnections().length) {
640 641 642 643 644 645 646 647 648
      _.map(this.JspInstance.getConnections(), v => {
        connects.push({
          endPointSourceId: v.sourceId,
          endPointTargetId: v.targetId,
          label: v._jsPlumb.overlays.label.canvas.innerText
        })
      })
      _.map(store.state.dag.connects, u => {
        _.map(connects, v => {
649
          if (u.label && u.endPointSourceId === v.endPointSourceId && u.endPointTargetId === v.endPointTargetId) {
650 651 652 653
            v.label = u.label
          }
        })
      })
654
    } else if (store.state.dag.connects.length === 0) {
655 656 657 658 659 660 661
      _.map(this.JspInstance.getConnections(), v => {
        connects.push({
          endPointSourceId: v.sourceId,
          endPointTargetId: v.targetId,
          label: v._jsPlumb.overlays.label.canvas.innerText
        })
      })
662 663 664 665 666 667 668 669
    } else if (store.state.dag.connects.length > this.JspInstance.getConnections().length) {
      _.map(this.JspInstance.getConnections(), v => {
        connects.push({
          endPointSourceId: v.sourceId,
          endPointTargetId: v.targetId,
          label: v._jsPlumb.overlays.label.canvas.innerText
        })
      })
670
    }
671

L
ligang 已提交
672 673 674 675
    _.map(tasksAll(), v => {
      locations[v.id] = {
        name: v.name,
        targetarr: v.targetarr,
676
        nodenumber: v.nodenumber,
L
ligang 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
        x: v.x,
        y: v.y
      }
    })

    // Storage node
    store.commit('dag/setTasks', tasks)
    // Store coordinate information
    store.commit('dag/setLocations', locations)
    // Storage line dependence
    store.commit('dag/setConnects', connects)

    resolve({
      connects: connects,
      tasks: tasks,
      locations: locations
    })
  })
}
/**
 * Event processing
 */
699

L
ligang 已提交
700 701
JSP.prototype.handleEvent = function () {
  this.JspInstance.bind('beforeDrop', function (info) {
702 703
    const sourceId = info.sourceId// 出
    const targetId = info.targetId// 入
L
ligang 已提交
704 705 706 707 708
    /**
     * Recursive search for nodes
     */
    let recursiveVal
    const recursiveTargetarr = (arr, targetId) => {
709
      for (const i in arr) {
L
ligang 已提交
710 711 712
        if (arr[i] === targetId) {
          recursiveVal = targetId
        } else {
713
          recursiveTargetarr(rtTargetarrArr(arr[i]), targetId)
L
ligang 已提交
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728
        }
      }
      return recursiveVal
    }

    // Connection to connected nodes is not allowed
    if (_.findIndex(rtTargetarrArr(targetId), v => v === sourceId) !== -1) {
      return false
    }

    // Recursive form to find if the target Targetarr has a sourceId
    if (recursiveTargetarr(rtTargetarrArr(sourceId), targetId)) {
      return false
    }

729
    if ($(`#${sourceId}`).attr('data-tasks-type') === 'CONDITIONS' && $(`#${sourceId}`).attr('data-nodenumber') === 2) {
730 731
      return false
    } else {
732
      $(`#${sourceId}`).attr('data-nodenumber', Number($(`#${sourceId}`).attr('data-nodenumber')) + 1)
733
    }
734

L
ligang 已提交
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
    // Storage node dependency information
    saveTargetarr(sourceId, targetId)

    // Monitor whether to edit DAG
    store.commit('dag/setIsEditDag', true)

    return true
  })
}
/**
 * Backfill data processing
 */
JSP.prototype.jspBackfill = function ({ connects, locations, largeJson }) {
  // Backfill nodes
  this.jsonHandle({
    largeJson: largeJson,
    locations: locations
  })

754
  const wNodes = jsPlumb.getSelector('.statemachine-demo .w')
L
ligang 已提交
755 756 757 758 759 760 761 762 763

  // Backfill line
  this.JspInstance.batch(() => {
    for (let i = 0; i < wNodes.length; i++) {
      this.initNode(wNodes[i])
    }
    _.map(connects, v => {
      let sourceId = v.endPointSourceId.split('-')
      let targetId = v.endPointTargetId.split('-')
764
      const labels = v.label
L
ligang 已提交
765 766 767 768 769 770 771
      if (sourceId.length === 4 && targetId.length === 4) {
        sourceId = `${sourceId[0]}-${sourceId[1]}-${sourceId[2]}`
        targetId = `${targetId[0]}-${targetId[1]}-${targetId[2]}`
      } else {
        sourceId = v.endPointSourceId
        targetId = v.endPointTargetId
      }
772 773

      if ($(`#${sourceId}`).attr('data-tasks-type') === 'CONDITIONS' && $(`#${sourceId}`).attr('data-successnode') === $(`#${targetId}`).find('.name-p').text()) {
774 775 776 777
        this.JspInstance.connect({
          source: sourceId,
          target: targetId,
          type: 'basic',
B
break60 已提交
778
          paintStyle: { strokeWidth: 2, stroke: '#4caf50' },
779 780
          HoverPaintStyle: { stroke: '#ccc', strokeWidth: 3 },
          overlays: [['Label', { label: labels }]]
781
        })
782
      } else if ($(`#${sourceId}`).attr('data-tasks-type') === 'CONDITIONS' && $(`#${sourceId}`).attr('data-failednode') === $(`#${targetId}`).find('.name-p').text()) {
783 784 785 786
        this.JspInstance.connect({
          source: sourceId,
          target: targetId,
          type: 'basic',
787
          paintStyle: { strokeWidth: 2, stroke: '#252d39' },
788 789
          HoverPaintStyle: { stroke: '#ccc', strokeWidth: 3 },
          overlays: [['Label', { label: labels }]]
790 791 792 793 794 795
        })
      } else {
        this.JspInstance.connect({
          source: sourceId,
          target: targetId,
          type: 'basic',
B
break60 已提交
796
          paintStyle: { strokeWidth: 2, stroke: '#2d8cf0' },
797 798
          HoverPaintStyle: { stroke: '#ccc', strokeWidth: 3 },
          overlays: [['Label', { label: labels }]]
799 800
        })
      }
L
ligang 已提交
801 802 803 804 805 806 807 808 809 810 811 812 813
    })
  })

  jsPlumb.fire('jsPlumbDemoLoaded', this.JspInstance)

  // Connection monitoring
  this.handleEvent()

  // Drag and drop new nodes
  this.draggable()
}

export default new JSP()