1.3.2 • Published 2 months ago

ngx-tree-flow v1.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

ngx-tree-flow

  • This Angular component allows to create svg images of a schematic tree workflow. Each step is displayed as a node with a name and a state.
  • With node state is possible to automatically change colors of schema and return to the user visual information of current step processed or in error state.
  • Component allows to identify nodes by number or by single char name and display multiple nodes on the same level.
  • Oter customization are possible and described below

Installation

Install from npm:

npm i ngx-tree-flow --save .

import NgxTreeFlowModule in your app.module.ts:

import { NgxTreeFlowModule } from 'ngx-tree-flow';

@NgModule({
  declarations: [App],
  bootstrap: [App],
  imports: [NgxTreeFlowModule],
})
export class AppModule {}

Example

  • Generic example of some possible output results

  • running demo project some example with attribute description are avaialble like:

-basic example

-linear tree example

Usage

  • import:
import { TreeFlowNode, TreeFlowNodeState } from 'ngx-tree-flow';
  • TreeFlowNode: is the basic node object
  • TreeFlowNodeState: is used to change state of single node. When status change colors are applied to make state visible
  • SINGLE NODE CREATION
@Component({
 template: `
    <div style="height: 48vh; width: 48vw; background-color: rgb(172, 222, 255); max-width: 620px">
    <ngx-tree-flow [rotation]="0" [data]="singleData" [useLabels]="false"></ngx-tree-flow>
  </div>
  `,
})
export class AppComponent implements OnInit {
  protected singleData: TreeFlowNode[] = [];

  ngOnInit(): void {
    this.singleData.push({
      id: 1,
      label: 'Start',
      state: TreeFlowNodeState.default,
    });
  }
}

Labels are dispalyed only when displayed tree is linear (simple data array is used)

  • @Input('hideLinearModelLabel') use hideLinearModelLabel="true" to hide text label

  • @Input('useLabels') useLabels="true" display label inside node

  • @Input('nodeRadius') can be used to increase node radius dimension (default 14)

Rotation

  • @Input('rotation') rotation="90". Insert degree to rotate image. 90 flip horizontally. Any other degree can be used (75 in third image exampe). Rotation can be used to create some simple animation

Customize color states

States are defined as follow

export declare enum TreeFlowNodeState {
    default = 0,
    disabled = 1,
    enabled = 2,
    active = 3,
    completed = 4,
    error = 5
}
  • @Input('disableAutoLineColor') disableAutoLineColor="true". Can be used to force schema lines not to change color based on nex node state.

  • style colors:

    default colors are defined in variables that can be overriden in local component's style

  /*error*/
  --ngx-tree-flow-fill-color-node-error: grey !important;
  --ngx-tree-flow-stroke-color-node-error: red !important;
  --ngx-tree-flow-text-color-error: darkred !important;
  • Complete list of variables that can be customized:

   --ngx-tree-flow-background: #121212;
   // default => default style is equal to disabled
   --ngx-tree-flow-fill-color-node-default: var(--ngx-tree-flow-background);
   --ngx-tree-flow-stroke-color-node-default: #CBCBCB;
   --ngx-tree-flow-text-color-default: #CBCBCB;
   /*disabled*/
   --ngx-tree-flow-fill-color-node-disabled: var(--ngx-tree-flow-background);
   --ngx-tree-flow-stroke-color-node-disabled: #CBCBCB;
   --ngx-tree-flow-text-color-disabled: #CBCBCB;
   /*enabled*/
   --ngx-tree-flow-fill-color-node-enabled: var(--ngx-tree-flow-background);
   --ngx-tree-flow-stroke-color-node-enabled: white;
   --ngx-tree-flow-text-color-enabled: white;
   /*active*/
   --ngx-tree-flow-fill-color-node-active: white;
   --ngx-tree-flow-stroke-color-node-active: white;
   --ngx-tree-flow-text-color-active: var(--ngx-tree-flow-background);
   /*completed*/
   --ngx-tree-flow-fill-color-node-completed: #797979;
   --ngx-tree-flow-stroke-color-node-completed: #797979;
   --ngx-tree-flow-text-color-completed: var(--ngx-tree-flow-background);
   /*error*/
   --ngx-tree-flow-fill-color-node-error: #B22F00;
   --ngx-tree-flow-stroke-color-node-error: #D73B04;
   --ngx-tree-flow-text-color-error: white;
   /*others*/
   --ngx-tree-flow-text-font-size: 0.9rem;
   --ngx-tree-flow-line-color: darkgray;

Tree view. Multiple nodes at same level (data is array of arrays)

Change data type to and array of arrays. First array is the level and internal one defines nodes for each level

@Component({
  selector: 'app-root',
  //   templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss'],
  template: `
    <div style="height: 48vh; width: 48vw; background-color: rgb(172, 222, 255); max-width: 620px">
      <ngx-tree-flow [useStartingJoinNode]="false" [rotation]="0" [data]="data" [hideLinearModelLabel]="true" [nodeRadius]="16"></ngx-tree-flow>
    </div>
  `,
})
export class AppComponent implements OnInit {
  protected data: TreeFlowNode[][] = [];
  ngOnInit(): void {
    this.data.push([
      { id: 0, label: 'A1', state: TreeFlowNodeState.completed },
      { id: 0, label: 'A2', state: TreeFlowNodeState.completed },
    ]);

    this.data.push([
      { id: 1, label: 'B', state: TreeFlowNodeState.completed },
      { id: 2, label: 'C', state: TreeFlowNodeState.completed },
      { id: 3, label: 'D', state: TreeFlowNodeState.completed },
    ]);
    this.data.push([
      { id: 4, label: 'End', state: TreeFlowNodeState.completed },
      { id: 5, label: 'End', state: TreeFlowNodeState.active },
    ]);
  }
}
  • Hide start and ending joining nodes
  • @Input('useStartingJoinNode') and @Input('useEndingJoinNode')

Dimension and sizes svg elements

Default behavior is to not fit svg to parent container. This allows to use a scroll view in parent and scroll the tree if is bigger than parent

  • @Input('fitParent') set it to true to auto fit svg to parent container. Note that if svg is too big all nodes will be scaled and shrinked down.
  • @Input('scrollOnActive') : boolean = false When a scroll view is active is possible to enable an auto scroll function to active node. This wil autmoatically scroll when a node status get to active state in order to center the scroll view to that node
  • @Input('horizontalAlign') : 'start' | 'center' | 'end' = 'center' change this input to horizontal align component into parent
  • @Input('levelSpacing') distance between levels, can be used to increase vertical space and adjust aspect when also node radius is changed to make nodes bigger (Default dimension is 65)
  • @Input('nodeRadius') @Input('nodeStrokeWidth') Cusotmize node radius and border dimension (Default dimension are 14 and 2)

  • @Input('nodeJoinRadius') @Input('nodeJoinStrokeWidth') Node radius and border dimension for joining node between layers with multiple nodes (Default dimension are 8 and 2)

  • @Input('lineStrokeWidth') Line width connecting nodes (Default dimension is 2)

 <ngx-tree-flow
        [useStartingJoinNode]="false"
        [useEndingJoinNode]="false"
        [rotation]="0"
        [data]="data"
        [hideLinearModelLabel]="true"
        [nodeRadius]="16"
        [nodeStrokeWidth]="5"
        [nodeJoinRadius]="10"
        [nodeJoinStrokeWidth]="4"
        [lineStrokeWidth]="4"
        [levelSpacing]="110"
      ></ngx-tree-flow>

Height and width component

Component is based on SVG. It is using a viewbox that can be customized with @Input('viewboxWidth') (default 500) and @Input('viewboxHeight') (default adapted dynamically)

Increasing the size of viewbox, without change node radius will generate a diagram with smaller dimensions. On the other side decreasing viewobx will lead to bigger node dimensions but also to face disaplying error (node displayed outside the visible part of component)

  • Svg size is automatically adjusted to container size by deafult. That means we need to fix dimensions for parents or we can use 2 other input property

    @Input('maxWidth') and Input('minWidth')

If dimension are fixed in this way, svg is adapted to this dimension and will stay fixed also when window dimensions change- Like this tree dimension will stay uniform and are not based on parend dimension

<div style="display: flex; justify-content: space-evenly">
   <div style="height: 48vh; width: 33%; background-color: rgb(73, 73, 73)">
    <ngx-tree-flow
      maxWidth="300px"
      minWidth="300px"
      [data]="data"
      [levelSpacing]="80"
      [useEndingJoinNode]="false"
    ></ngx-tree-flow>
  </div>
  <div style="height: 48vh; width: 50%; background-color: rgb(60, 60, 120)">
    <ngx-tree-flow
      maxWidth="300px"
      minWidth="300px"
      [rotation]="0"
      [data]="linearData"
      [levelSpacing]="60"
      [useEndingJoinNode]="false"
    ></ngx-tree-flow>
  </div>
  <div style="height: 48vh; width: auto; background-color: rgb(73, 73, 73)">
    <ngx-tree-flow
      [rotation]="0"
      [data]="singleData"
      [levelSpacing]="60"
      [useEndingJoinNode]="false"
    ></ngx-tree-flow>
  </div>
</div>

Last one has not defined any dimension for the parent then with is stretched to fill parent (nodes are bigger). If screen size is reduced and parent width is smaller node can be displayed so smalller to be not visible

To prevent this auto adjust dimension all parent component should have same dimensions plus we can use the minWidth="300px" property to ensure all component in the same page will be displayed equally

1.3.2

2 months ago

1.3.1-4

4 months ago

1.3.1

4 months ago

1.3.1-2

5 months ago

1.2.0

7 months ago

1.0.2

7 months ago

1.1.0

7 months ago

1.3.0

6 months ago

1.1.1-beta.3

7 months ago

0.0.0

7 months ago

1.1.1-beta.1

7 months ago

1.3.1-1

5 months ago

1.1.1-beta.4

7 months ago

1.3.1-0

6 months ago

1.0.1

8 months ago

1.0.0

8 months ago

0.0.1-beta.1

8 months ago

0.0.1

8 months ago