1.1.1 • Published 2 years ago

istar-autolayout v1.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

iStar-autolayout

npm version

🌟 An auto layout algorithm method for iStar models.

Dependencies

  • lodash: ^4.17.0
  • d3-force: ^1.1.0

Install

via npm

$ npm -i istar-autolayout

via Git

$ git clone https://github.com/FrozenYogurtPuff/iStar-autolayout.git

Usage

Getting Started

JavaScript

  1. Include the script via <script src="dist/main.js"></script>
  2. istarLayout(jsonData, options) is exposed as a global function which can be easily used
const options = null;
const generator = istarLayout(jsonData, options)();
let result = generator.next();
while (!result.done) {
  const { currentEpoch, nodes, links } = result.value;
  result = generator.next();
}

Please refer to examples/javascript for more.

TypeScript

  1. Include the script via import { istarLayout } from 'istar-autolayout'
  2. Use istarLayout with typed and re-bundle all the files on demand.

Please refer to examples/typescript for more.

Function Declaration

declare export function istarLayout(
  data: DataFormat,
  options: Options,
): ResultSingle | ResultArray | (() => ResultGenerator)

Options Definition

// All fields are optional, default to the first option
interface LayoutOptions {
  mode?: 'generator' | 'array' | 'first' | 'last';
  tickPerEpoch?: number;
  assureEpoch?: number;
  stopWhenStable?: boolean;
  width?: number;
  height?: number;
}

interface ConvertOptions {
  mode?: 'piStar' | 'd3';
  nodeName?: { [name: string]: string };
  nodeSize?: { [name: string]: [number, number] };
  linkName?: { [name: string]: string };
  width?: number;
  height?: number;
}

interface ForceOptions {
  forceValue?: number;
  width?: number;
  height?: number;
  // radius?: number;
}

export interface Options {
  layout?: LayoutOptions;
  convert?: ConvertOptions;
  force?: ForceOptions;
}

const defaultOptions: Options = {
  layout: {
    mode: 'generator',
    tickPerEpoch: 50,
    assureEpoch: 20,
    stopWhenStable: true,
    width: 1920,
    height: 1080
  },
  convert: {
    mode: 'piStar',
    nodeName: {...},
    nodeSize: {...},
    linkName: {...}
  },
  force: {
    forceValue: 50,
    width: 1920,
    height: 1080
  }
}

License

ISC License

1.1.1

2 years ago

1.1.0

2 years ago

1.0.1

3 years ago

1.0.0

3 years ago