npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ahmed757/ngx-treant-js

v1.0.7

Published

A simple Angular component used as a wrapper for TreantJS with additional functionality.

Downloads

76

Readme

Build Status Commitizen friendly semantic-release Renovate enabled

NgxTreantJS :deciduous_tree:

A simple Angular2+ component used as a wrapper for TreantJS library for visualization of tree (chart) diagrams, with additional functionality. :fire::fire::fire:

Demo :movie_camera:

:arrow_down: Installation

npm install @ahmed757/ngx-treant-js --save

:wrench: Configuration

Add required dependencies to angular.json as follows:

...

"styles": [
    "node_modules/treant-js/Treant.css",
    "node_modules/treant-js/vendor/perfect-scrollbar/perfect-scrollbar.css",
    "src/styles.css"
],
"scripts": [
    "node_modules/jquery/dist/jquery.min.js",
    "node_modules/popper.js/dist/umd/popper.js",
    "node_modules/treant-js/vendor/jquery.easing.js",
    "node_modules/treant-js/vendor/jquery.mousewheel.js",
    "node_modules/treant-js/vendor/perfect-scrollbar/perfect-scrollbar.js",
    "node_modules/treant-js/vendor/raphael.js",
    "node_modules/treant-js/Treant.js"
]
...

See full example here.

:pencil2: Key Goals

  • Easy to integrate and use in any Angular applications
  • Provide callback functions to react to user's actions, e.g. single-click, double-click, drag-drop, hover, etc
  • provide drag-drop feature for swapping (re-positioning) Tree nodes
  • Support adding & removing Tree nodes
  • Support editting Node's content, e.g. name, title, etc

Quick start :rocket:

employess-chart.component.html

<ngx-treant-chart
    [chartId]="employeesChartId"
    [chartClass]="employeesChartClass"
    [data]="employeesData">
</ngx-treant-chart>

employess-chart.component.ts

export class EmployeesChartComponent {
    employeesChartId = 'employessChart-commpany';
    employeesChartClass = 'employess-chart';

    employeesData = {
        chart: {
            container: "#employessChart-commpany",
            
            connectors: {
                type: 'step'
            },
            node: {
                HTMLclass: 'employessNode'
            }
        },
        nodeStructure: {
            text: {
                name: "Paul Young",
                title: "Chief executive officer",
                contact: "Cel: 01 213 123 134",
            },
            image: "assets/images/img1.jpg",
            children: [
                {
                    text:{
                        name: "John Doe",
                        title: "Chief Technology Officer",
                    },
                    stackChildren: true,
                    image: "assets/images/img2.jpg",
                    children: [ ... ]
                }
            ]
        }
    }
}

styles.css

...
.employess-chart {
  height: 600px;
  margin: 5px;
  width: 900px;
}

.Treant> p {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: bold;
  font-size: 12px;
}

.node-name {
  font-weight: bold;
}

.employessNode {
  padding: 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  border: 1px solid #000;
  width: 200px;
  font-family: Tahoma;
  font-size: 12px;
}
...

See full example here.

Note: :bulb: In a real world application, the data would most likely come from a server or remote place, which means that we would need to initialize NgxTreantChart only when data arrives. Therefore, *ngIf can be used as a workaround as follows:

<ngx-treant-chart
    ...

    *ngIf="isDataLoaded">
</ngx-treant-chart>

Bootstrap Popover Example

:page_facing_up: NgxTreantChart component API

| Attributes | Description | | --- | --- | | [chartId] | The chart uniqe ID (required) | | [chartClass] | The chart CSS class uniqe name (optional) | | [data] | The data used for visualization of chart diagrams (required) | | [popoverSettings] | The settings used for customizing a popover (optional - see example) | | [mouseleaveMilliseconds] | The mouseleaveMilliseconds delay used prior to a popover being hidden (optional) | | [isDraggable] | A boolean flag used to enable drag & drop support (optional) | | (clicked) | A callback function invoked when a TreeNode is clicked | | (hovered) | A callback function invoked when a TreeNode is mouse hovered | | (dragged) | A callback function invoked when a TreeNode is dragged | | (dropped) | A callback function invoked when a TreeNode is dropped | | (updated) | A callback function invoked when TreeNode's content is updated on dblclick event | | (loadedNodes) | A callback function invoked when TreeNodes are loaded | | (loadedTree) | A callback function invoked when the Tree is loaded | | (loadedTreant) | A callback function invoked when the Treant is loaded |

Notes: :bulb:

  1. The callback functions: clicked, hovered, and updated return a value of Object type, which consists of two properties:
  • Node: instance of TreeNode type for the node that was modified
  • $: jQuery instance, which can be used to perform any additional desired functionality that requires jQuery

Example :pushpin:

<ngx-treant-chart
    ...

    (clicked)="onClick($event)">
</ngx-treant-chart>
onClick(event: any): void {
/* 
event: {
  node: {
    X: 106
    Y: 259.5
    children: (3) [1, 4, 19]
    collapsable: undefined
    collapsed: undefined
    connStyle: {type: "step", style: {…}, 
    stackIndent: 15}
    drawLineThrough: undefined
    height: 30
    id: 0
    image: undefined,
    ...
  },

  $: ƒ (e,t)
}
*/
}
  1. The callback function dragged returns an object which contains an instance of TreeNode type as well as jQuery as follows:
{
    draggedNode: {
        X: 106
        Y: 259.5
        children: (3) [1, 4, 19]
        collapsable: undefined,
        ...
    },

    $: ƒ (e,t)
}
  1. The callback function dropped returns the following:
  • draggedNode: the dragged node of TreeNode type
  • droppedNode: the dropped node of TreeNode type
  • $: jQuery instance
  1. The callback function loadedNodes returns all Tree (chart) nodes.

  2. The callback function loadedTree returns an instance of Tree (chart) type. The instance provides useful properties and functions, such as nodeDB and positionTree(), which can be used to update tree (chart) nodes:

...

onLoadTree(tree: any): void {
    const nodes = tree.nodeDB;

    // do something with nodes

    tree.positionTree(); // apply changes
}
  1. The callback function loadedTreant returns an instance of Treant type. The instance consists of container_id and tree_id:
...

onLoadTreant(treant: any): void {
    console.log(treant);
    /* example
      {
        container_id: "employessChart-commpany",
        tree_id: 0
      }
    */

    treant.destroy(); // destroy tree
}

Reference :dart:

Author :books:

Ahmed Alatawi