Node Swapping in an Organizational Chart

Node Swapping in an Organizational Chart

Node Swapping in an Organizational Chart: Implementing Node Swapping with Drag and Drop in an Organizational Chart

Implementing Node Swapping with Drag and Drop in an Organizational Chart

Organizational charts (org charts) are an essential tool for visualizing hierarchical structures. One common requirement when managing org charts is the ability to swap nodes while maintaining structural integrity. In this article, we will walk through how to implement node swapping in an org chart using JavaScript and the OrgChart JS library.

Understanding the Requirements

Swapping nodes in an org chart involves moving one node to the position of another while ensuring that the hierarchical relationships remain intact. Specifically, we need to handle the following scenarios:

  1. Swapping nodes at the same level – Nodes exchange positions without affecting their parent-child relationships.

  2. Swapping parent-child nodes – The parent becomes the child and vice versa.

  3. Swapping nodes at different levels – A more complex case where structural adjustments are necessary.

Code example

Setting Up the Org Chart

We will initialize our org chart using the OrgChart JS library and enable drag-and-drop functionality.

let chart = new OrgChart(document.getElementById("tree"), {
    mode: 'dark',
    enableDragDrop: true,
    mouseScrool: OrgChart.none,
    nodeBinding: {
        field_0: "id",
        field_1: "pid",
    },
    orderBy: 'order'
});

Loading Sample Data

Finally, we initialize the org chart with sample data to visualize the swapping functionality.

chart.load([
    { id: 1,  order: 1 },
    { id: 2, pid: 1, order: 2 },
    { id: 3, pid: 1, order: 3 },
    { id: 4, pid: 2, order: 4 },
    { id: 5, pid: 2, order: 5 },
    { id: 6, pid: 3, order: 6 },
    { id: 7, pid: 3, order: 7 }
]);

Handling the Drag-and-Drop Event

To implement node swapping, we listen to the onDrop event, retrieve the drag-and-drop node data, and handle different scenarios appropriately.

Swapping Nodes at the Same Level

If the dragged node and the target node are at the same level, we swap their order values and update the chart:

if (dragNode.level == dropNode.level){
    let temp = dropData.order;
    dropData.order = dragData.order;
    dragData.order = temp;

    temp = dropData.pid;
    dropData.pid = dragData.pid;
    dragData.pid = temp;
    chart.update(dropData).update(dragData).draw();
}

Swapping Parent-Child Nodes

If a node is being swapped with its parent, we must update all child nodes accordingly:

else if (dragData.pid == dropData.id || dragData.id == dropData.pid){
    for(let i = 0; i < chart.config.nodes.length; i++ ){
        let data = chart.config.nodes[i];
        if (data.pid == args.dropId){
            data.pid =  args.dragId;
        }
        else if (data.pid == args.dragId){
            data.pid =  args.dropId;
        }
    }

    if (dragData.pid == dropData.id){            
        let temp = dragData.pid;
        dragData.pid = dropData.pid;
        dropData.pid = dragData.id;
    }
    else if (dragData.id == dropData.pid){
        let temp = dropData.pid;
        dropData.pid = dragData.pid;
        dragData.pid = dropData.id;
    }

    let temp = dropData.order;            
    dropData.order = dragData.order;
    dragData.order = temp;

    chart.update(dropData).update(dragData).draw();
}

Swapping Nodes at Different Levels

When swapping nodes that belong to different hierarchical levels, we must adjust their pid values and reorder them:

else {
    for(let i = 0; i < chart.config.nodes.length; i++ ){
        let data = chart.config.nodes[i];
        if (dragNode.level > dropNode.level && data.pid == args.dropId){
            data.pid =  args.dragId;
        }
        else if (dragNode.level < dropNode.level && data.pid == args.dragId){
            data.pid =  args.dropId;
        }
        chart.update(data);
    }

    temp = dragData.pid;
    dragData.pid = dropData.pid;
    dropData.pid = temp;

    temp = dropData.order;            
    dropData.order = dragData.order;
    dragData.order = temp;

    chart.update(dropData).update(dragData).draw();
}

Swapping nodes in an org chart requires careful handling of parent-child relationships and order values. By leveraging the onDrop event and modifying the pid and order attributes accordingly, we can implement a flexible swapping mechanism that ensures the chart remains structured and functional.

Swap nodes

This implementation allows for seamless reorganization of an org chart, making it a valuable feature for applications that require dynamic hierarchical adjustments.

Еasily Create a Template in an OrgChart

Vladimir Putin Family Tree

Add Field Data in Expand button with OrgChart JS

Bill Gates Family Tree

Create a Tooltip for a ForeignObject Element Hover in OrgChart JS

Custom Aligning Nodes in a JavaScript Organizational Chart

Center and Zoom on Search Click in OrgChart JS

Create Multiline Group Titles in OrgChart JS

Adding Arrows in OrgChart JS Links

Show a Custom Edit Form for a node in OrgChart JS

Jeff Bezos Family Tree

How to Add Material Icons in OrgChart JS

Leonardo DiCaprio Family Tree

Visualizing Dual Reporting Structures with OrgChart JS

Exporting OrgChart JS to A4 PDF: A Step-by-Step Guide

Genghis Khan Family Tree: The Lineage of the Great Khan

OrgChart JS now support Export to Visio

New Export Option: childLevels in OrgChart JS

Elon Musk Family Tree

AI for OrgChart JS: Revolutionizing Organization Charts

Family Tree JS 2 (Preview)

d3 org chart

Our Family Tree App is Now on Android!

Why BALKAN OrgChart JS is the Best Organizational Chart Library

How to Create a JavaScript Flow Chart

How to Add an Organizational Chart to a Mobile Application

How to Create a JavaScript Organizational Chart

OrgChart JS Now Supports PDF Export Per Team

Introducing Family Tree App

Donald Trump Family Tree

Discover Your Roots: Build Your Family Tree with BALKAN App

JavaScript Organization Chart

Instantly create interactive, intuitive flowcharts in seconds

JavaScript Hierarchy Chart

Mermaid js alternative

Create Flowcharts in Seconds with Flow Chart JS: Your New Favorite JavaScript Library

Customizing Filter UI - Code of The Week

Zoom Slider - Code of The Week

Bookmarks - Code of The Week

Customizing Search Results - Code of The Week

Introducing Undo Redo - Code Of The Week

Price adjustment announcement

The price will increase for new customers

Buttons for adding family members to a family tree - Code of The Week

Levels - Code of The Week

Change node color from a button in the Edit Form - Code of The Week

Filter and Highlight Nodes - Code of The Week

Up Expanding - Code Of The Week

Programmatically move the chart - Code of The Week

Siblings in Family Tree JS - Code of The Week

Purple template - Code of The Week

Assistant With Children - Code of The Week

Conditional Layout - Code of The Week

Conditional Color - Code of the Week

Sriniz Family Tree Template - Code of The Week

Color Picker - Code of The Week

Add company logo as watermark in exported PDF documents - Code of The Week

Mind map - Code of The Week

Create relationship with circle menu - Code of The Week

Animated Photos - Code of the Week

Grouped Dotted Lines - Code Of The Week

Dotted Lines - Code Of The Week

Department Dynamic Title - Code Of The Week

Add expand button for partners - Code of the Week

Change the sub levels with Drag and Drop - Code of The Week

Custom Edit From using Popover - Code of the Week

Sub levels tag option - Code of the Week

Highlights search results directly on Org Chart nodes - Code of the Week

Code of the Week/Relationship maps and Business process diagrams

Search using field name abbreviations - Code of the Week

Dynamic Template - Code of the Week

Read and Write local CSV file using File API and Org Chart JS - Code of The Week

Organizational Chart Path Highlighting and Selection

Modern Template - Org Chart JS

Performance - Org Chart JS

Single parent is supported in Family Tree JS

How To Develop a Flowchart Maker with Org Chart JS

How to upload a photo to Family Tree JS in .NET core

How to change the color of selected node - Family Tree JS

Family Tree with live tiles

Error

BALKAN Blog

The Latest BALKAN App News and Releases. Latest information on Org Chart JS and Family Tree JS.