Giter VIP home page Giter VIP logo

Comments (9)

jerosoler avatar jerosoler commented on May 17, 2024 2

Hello @freesix

Thanks! ❤️

An input could be restricted with functions and events. Or you can modify the library.

For example:

editor.on("connectionCreated", function(info) {
  const nodeInfo = editor.getNodeFromId(info.input_id);
  if(nodeInfo.inputs[info.input_class].connections.length > 1) {
    const removeConnectionInfo = nodeInfo.inputs[info.input_class].connections[0];
    editor.removeSingleConnection(removeConnectionInfo.node, info.input_id, removeConnectionInfo.input, info.input_class);
  }
});

This example deletes the first connection and only keeps the last one.

from drawflow.

muratcim avatar muratcim commented on May 17, 2024 1

Thank you @jerosoler
it worked

Best Regards

from drawflow.

muratcim avatar muratcim commented on May 17, 2024

Thank you @jerosoler

How can we do the same for output. Output only to bind to an input

from drawflow.

jerosoler avatar jerosoler commented on May 17, 2024

Hello @muratcim

Following the example above.

For example:

editor.on("connectionCreated", function(info) {
  const nodeInfo = editor.getNodeFromId(info.output_id);
  if(nodeInfo.outputs[info.output_class].connections.length > 1) {
    const removeConnectionInfo = nodeInfo.outputs[info.output_class].connections[0];
    editor.removeSingleConnection(info.output_id, removeConnectionInfo.node, info.output_class, removeConnectionInfo.output);
  }
});

from drawflow.

dotrungit91 avatar dotrungit91 commented on May 17, 2024

@jerosoler
I'm so glad I found this tutorial.
But there is a problem as follows:
I want to catch delete event and call api( when use delete on keyboard and right click to connection)

this.editor.on('connectionRemoved', (info) => { // call delete api })

But according to the instructions above,
every times restrict the node, it will automatically call the api.

from drawflow.

jerosoler avatar jerosoler commented on May 17, 2024

It is only called if a connection is deleted.

from drawflow.

dotrungit91 avatar dotrungit91 commented on May 17, 2024

It is only called if a connection is deleted.

@jerosoler
yes sir, i just want to call the api when delete key is pressed or when right click. But when have more than one connection on input, it will automatically call the method removeSingleConnection.

from drawflow.

jerosoler avatar jerosoler commented on May 17, 2024

You can create something like this.

let deleteConnectionAuto = false;

editor.on("connectionCreated", function(info) {
  const nodeInfo = editor.getNodeFromId(info.output_id);
  if(nodeInfo.outputs[info.output_class].connections.length > 1) {
    const removeConnectionInfo = nodeInfo.outputs[info.output_class].connections[0];
    deleteConnectionAuto = true;
    editor.removeSingleConnection(info.output_id, removeConnectionInfo.node, info.output_class, removeConnectionInfo.output);
  }
});

this.editor.on('connectionRemoved', (info) => { 
    if(!deleteConnectionAuto) {
        // call delete api
    } else {
        deleteConnectionAuto = false;
    }
})

from drawflow.

dotrungit91 avatar dotrungit91 commented on May 17, 2024

@jerosoler i loving you !!!!

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.