Skip to content

bogdan-sava/happi-graph

 
 

Repository files navigation

happi-graph component

Happi Graph Component using Polymer 3.0.

Demo

<button id="zoom-in">+</button>
<button id="zoom-out">-</button>
<button id="center-graph">center-graph</button>
<button id="remove-data">remove-data</button>
<button id="add-data">add-data</button>

<happi-graph id="happi-graph"></happi-graph>
let propertiesMap = {
  SimpleSquare: 'simple-square'
};

let iconsMap = {
  'simple-square': `<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H20V20H0V0Z" fill="white"/></svg>`,
};

let happiGraphInstance = document.querySelector('#happi-graph');

let graphData = {
  graphDirection: 'VERTICAL',
  selectedNodeId: 0,
  nodes: [
    { id: 0, properties: {} },
    { id: 1, properties: {} },
    { id: 2, properties: {} },
    { id: 3, properties: {} },
    { id: 4, properties: {} },
  ],
  links: [
    { from: 0, to: 1, connectionFrom: false, connectionTo: true },
    { from: 0, to: 2, connectionFrom: false, connectionTo: true },
    { from: 0, to: 3, connectionFrom: false, connectionTo: true },
    { from: 3, to: 4, connectionFrom: false, connectionTo: true }
  ]
};

happiGraphInstance.iconsMap = iconsMap;
happiGraphInstance.propertiesMap = propertiesMap;
happiGraphInstance.graphData = { ...graphData };

zoomIn.addEventListener('click', () => {
  happiGraphInstance.customZoomIn();
});

zoomOut.addEventListener('click', () => {
  happiGraphInstance.customZoomOut();
});

centerGraph.addEventListener('click', () => {
  happiGraphInstance.centerGraph();
});

document.querySelector('#remove-data').addEventListener('click', () => {
  happiGraphInstance.removeData();
});

document.querySelector('#add-data').addEventListener('click', () => {
  happiGraphInstance.graphData = { ...graphData };
});

Example

3 nodes graph example

License

Apache-2.0 License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 93.5%
  • HTML 6.5%