Giter Site home page Giter Site logo

Comments (5)

MLNW avatar MLNW commented on July 22, 2024 3

Since I got here via my favorite search engine I'll leave a hint how to accomplish this:

Create an extension like so:

{
  "name": "Link",
  "uri": "http://schema/bpmn/link",
  "prefix": "link",
  "xml": {
    "tagAlias": "lowerCase"
  },
  "types": [
    {
      "name": "Internal",
      "superClass": ["Element"],
      "properties": [
        {
          "name": "href",
          "isAttr": true,
          "type": "String"
        }
      ]
    }
  ],
  "emumerations": [],
  "associations": []
}

Add xmlns:link="http://schema/bpmn/link" to the <bpmn2:definitions> tag in a diagram you want to add links to. Then add your links to an element, e.g.:

    ...
    <bpmn2:subProcess id="PMPR" name="PMPR">
      <bpmn2:extensionElements>
        <link:internal href="/processes/spr?subprocess=PMPR" />
      </bpmn2:extensionElements>
    ...

Now you can check if an element contains a link extension and react on that, e.g., on root.set:

// Check if the element references a link that should be opened instead
const extensionElements = event.element?.businessObject?.extensionElements?.values;
if (extensionElements) {
  const links = extensionElements.filter(
    (element: { $type: string }) => element.$type === 'link:internal'
  );
  if (links.length === 1) {
    navigationInProgress = true;
    goto(links[0].href, { state: { ...history.state } });
  }
}

from bpmn-js.

andyboeh avatar andyboeh commented on July 22, 2024

I would really appreciate that feature. My use-case is as follows:

We use DokuWiki as a communication platform and quality management system. There is a DokuWiki-PlugIn that embeds bpmn-js into DokuWiki. It would be very nice to be able to link process steps to Wiki pages.

I'm thinking of working around this by using, e.g., an overlay to link to the desired page. Any other ideas?

from bpmn-js.

nikku avatar nikku commented on July 22, 2024

This sounds like a great scope for a side project.

We don't plan to add such functionality to the bpmn-js CORE though.

from bpmn-js.

nikku avatar nikku commented on July 22, 2024

@MLNW Awesome contribution.

As this is requested once in a while would you like to contribute an example how to add it (and use it)? Basically your post in a README.md under the name let's say external-links.

We'd otherwise look into picking it up, one day.

from bpmn-js.

MLNW avatar MLNW commented on July 22, 2024

@nikku At this moment I sadly do not have the capacity to do so. If someone else wants to use my comment as the basis for an example, go ahead 🚀

from bpmn-js.

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.