@yworks/react-yfiles-supply-chain
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

yFiles React Supply Chain Component

Welcome playground

Traditionally associated with manufacturing processes, supply chain management is equally important for the provision of any good or service, whether physical, face-to-face, or purely digital. Managing a supply chain requires visualizing and analyzing all of the components, resources and process in a network. Comprehensively diagramming a supply network enables teams to identify inefficiencies and optimize the overall supply chain.

Our powerful and versatile React component based on the yFiles library, allows you to seamlessly incorporate dynamic and interactive supply chain diagrams into your applications. This enhances the user experience and facilitates an intuitive exploration of complex manufacturing processes.

Getting Started

  1. Installation: Install the component via npm by running the following command in your project directory:

    npm install @yworks/react-yfiles-supply-chain

    The supply chain module has certain peer dependencies that must be installed within your project. Since it is a React module, react and react-dom dependencies are needed.

    Additionally, the component relies on the yFiles library which is not available on the public npm registry. Instructions on how to work with the yFiles npm module in our Developer's Guide.

    Ensure that the dependencies in the package.json file resemble the following:

    {
      ...
      "dependencies": {
        "@yworks/react-yfiles-supply-chain": "^1.0.0",
        "react": "^18.2.0",
        "react-dom": "^18.2.0",
        "yfiles": "<yFiles package path>/lib/yfiles-26.0.0.tgz",
        ...
      }
    }
  2. License: Before using the component, a valid yFiles for HTML version is required. You can evaluate yFiles for 60 days free of charge on my.yworks.com. Be sure to invoke the registerLicense function to furnish the license file before utilizing the supply chain component.

  3. Usage: Utilize the component in your application. Make sure to import the CSS stylesheet 'index.css' as the component requires it for correct functionality.

    import {
      registerLicense,
      SupplyChain,
      SupplyChainData,
      UserSupplyChainItem,
      UserSupplyChainConnection
    } from '@yworks/react-yfiles-supply-chain'
    import '@yworks/react-yfiles-supply-chain/dist/index.css' 
    import yFilesLicense from './license.json'
    
    function App() {
      registerLicense(yFilesLicense)
       
      const data = {
        items: [
          { name: 'Copper-Ore', id: 1, parentId: 3 },
          { name: 'Copper-Plate', id: 2, parentId: 4 },
          { name: 'Resource', id: 3 },
          { name: 'Material', id: 4 }
        ],
        connections: [{ sourceId: 1, targetId: 2 }]
      } satisfies SupplyChainData<UserSupplyChainItem, UserSupplyChainConnection>
      
      return  <SupplyChain data={data}></SupplyChain>
    }
    
    export default App

    Note: By default, the SupplyChain component adjusts its size to match the size of its parent element. Therefore, it is necessary to set the dimensions of the containing element or apply styling directly to the SupplyChain component. This can be achieved by defining a CSS class or applying inline styles.

Documentation

Find the full documentation, API and many code examples in our documentation.

Live Playground

Live Playground

Try the yFiles React Supply Chain component directly in your browser with our playground

Features

The supply chain component provides versatile features that can be adjusted to specific use cases or used with the provided default features.

Custom node visualization

Custom node visualization

The renderItem and renderGroup property allow providing custom React components for the node visualization. Try the API in the playground.

Custom connection visualization

Custom connection visualization

With the connectionStyleProvider, the connection visualization may be adjusted to the use-case. Additionally, the connectionLabelProvider may be used to display related information directly on the connection. Try the API in the playground.

Grouping and folding

Grouping and folding

The component automatically creates nested nodes if the item contains a parentId property. The nested nodes can be collapsed/expanded interactively. Try the API in the playground.

Heat mapping

Heat mapping

The heatMapping function allows to provide a "heat" value for items and connections that visualizes an additional information layer in the component.

Graph search

Graph search

The versatile graph search helps to find items in larger supply chains. Try it in the playground.

Custom tooltips

Custom Tooltips

The renderTooltip property can be used to provide use-case specific React components as tooltips. Try the API in the playground.

Graph overview

Graph overview

The graph overview provides a quick and easy way to navigate larger graph structures. Try it in the playground.

Context menu

Context menu

The context menu can be populated with custom components and actions. Try it in the playground.

Learn More

Explore the possibilities of visualizing supply chains and other diagrams with yFiles - the powerful and versatile diagramming SDK. For further information about yFiles for HTML and our company, please visit yWorks.com.

For support or feedback, please reach out to our support team or open an issue on GitHub. Happy diagramming!

Package Sidebar

Install

npm i @yworks/react-yfiles-supply-chain

Weekly Downloads

6

Version

1.0.1

License

SEE LICENSE IN ./LICENSE

Unpacked Size

153 kB

Total Files

10

Last publish

Collaborators

  • yguy
  • mfrikoe
  • artem.vasilcenko.yworks
  • ysebp