Giter VIP home page Giter VIP logo

Comments (7)

jerosoler avatar jerosoler commented on June 1, 2024

View to restric connections:

from drawflow.

parthsavaliya1 avatar parthsavaliya1 commented on June 1, 2024

@jerosoler I want to restrict when already one connection from node A to node B and when user try to connect node A to node C at that time node should not be connected. and when user try to add node D after node A then connection should be auto connect like node A to node D and node D to node B .

from drawflow.

jerosoler avatar jerosoler commented on June 1, 2024

With the previous example you can detect when a connection is created and delete it.

In that case you can use the function to delete or create the connections you want.

Use the functions: removeSingleConnection and addConnection

from drawflow.

parthsavaliya1 avatar parthsavaliya1 commented on June 1, 2024

@jerosoler using this solution i can able to do this. but when i start connection from last node(the node is not connected to other node) then this solution is not working:

editor.on('connectionStart', (e) => {
connectionStartObj =editor.getNodeFromId(e?.output_id);
console.log('connn',connectionStartObj)
})

    editor.on('connectionCreated', (info) => {
        console.log('datata',connectionStartObj)
        console.log('info',info)
        
        if(connectionStartObj?.outputs?.output_1?.connections?.length > 0) {
            const nodeInfo = editor.getNodeFromId(info.input_id);
      const connections = nodeInfo.inputs[info.input_class].connections;
      console.log(connections,nodeInfo)

      if (connections.length > 1) {
        const lastConnectionIndex = connections.length - 1;
        const lastConnection = connections[lastConnectionIndex];
        editor.removeSingleConnection(lastConnection.node, info.input_id, lastConnection.input, info.input_class);
        connectionStartObj = null;
      }
        }
    })

from drawflow.

jerosoler avatar jerosoler commented on June 1, 2024

In the same way.

With getNodeFromId the node can know what connections it has to other nodes.

You can get the information of the two nodes.

Here you have to use your logic. It could also detect loops...

from drawflow.

parthsavaliya1 avatar parthsavaliya1 commented on June 1, 2024

Is there any way to detect node where we try to connect.

Ex: Like i have 3 node. Node A , Node B , Node C and i want to try node C to node B then how can i get node B . using connectionStart event i can detect Node C but if i want to get Node B id then??????...

from drawflow.

jerosoler avatar jerosoler commented on June 1, 2024

connectionCreated return { output_id, input_id, output_class, input_class }

from drawflow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.