A lineage chart is a graphical representation of a node's ancestors, showing the relationships among nodes. It is often used in analytics to show the relations and to trace their ancestry. Lineage charts can be in the form of a hierarchy data, showing the relationships between parents and children, or they can be more complex and show the relationships between more distant nodes.
Head over to Flow Lineage Storybook for a demo.
or
Clone and install the Flow Lineage demo (Vue 3).
Flow Lineage is been built on Flow, an open source design framework. To run lineage, please make sure that you have Flow core as part of your project.
While installation if you run into any issues, head over to our known issues + solutions document to see if a solution already exists.
Note: If you already have Flow packages installed, please update to the latest versions
Note: If you do not have an existing front-end project, you can quickly create one from a flow starter kit.
npm i --save @nonfx/flow-lineage
Note: after installation, re-start your application.
Paste the below snippet in your project and add your application startup/runtime code to it.
import "@nonfx/flow-core";
import "@nonfx/flow-lineage";
Example
VueJS: In the following example, I imported @nonfx/flow-core
and then imported the rest of the flow packages including @nonfx/flow-lineage
and after that startup code was added for VueJs createApp(App).use(router).mount(“#app”);
.
import "@nonfx/flow-core";
import { register } from "@nonfx/flow-icons";
register(["system"]);
import "@nonfx/flow-lineage";
createApp(App).use(router).mount("#app"); //runtime
Note: after adding, re-start your application.
For Vue 3:
Copy paste below import types in your main.ts
file.
import "@nonfx/flow-lineage/dist/types/vue3";
For Vue 2
Copy paste below import types in your main.ts
file.
import "@nonfx/flow-lineage/dist/types/vue2";
For React
React: Include react type in tsconfig.json
file like below.
"include": ["src", "./node_modules/@nonfx/flow-lineage/dist/types/react.ts"]
We have created a sample lineage component along with it's schema to get you going, simply copy paste the below language code block in your FE project.
<template>
<f-lineage
direction="horizontal"
:padding="28"
:gap="100"
:node-size.prop="{ width: 240, height: 53 }"
:children-node-size.prop="{ width: 240, height: 32 }"
:max-childrens="8"
:links.prop="links"
:nodes.prop="nodes"
:node-template.prop="nodeTemplate"
:children-node-template.prop="childNodeTemplate"
></f-lineage>
</template>
<script lang="ts">
import { defineComponent } from "vue";
import { html } from "lit";
export default defineComponent({
name: "FlowLineage",
data() {
return {
nodes: {
rdj: {
fData: {
fullName: "Robert Downey Jr.",
description: "Movies"
}
},
judge: {
fData: {
fullName: "The Judge",
description: "Hank Palmer"
}
},
ironman: {
fData: {
fullName: "Iron Man",
description: "Tony stark"
},
fChildren: {
irchild1: {
fData: {
icon: "i-hashtag",
title: "Iron man 1"
}
},
irchild2: {
fData: {
icon: "i-paragraph",
title: "Iron man 2"
}
}
},
fHideChildren: false
}
},
links: [
{
from: "rdj",
to: "judge"
},
{
from: "rdj",
to: "ironman"
}
],
nodeTemplate: function (node: LineageNodeElement) {
return html`
<f-div
width="100%"
state="secondary"
height="100%"
padding="small"
align="top-left"
variant="curved"
gap="small"
>
<f-pictogram variant="circle" source="${node.fData.fullName}"></f-pictogram>
<f-div direction="column">
<f-text size="small" ellipsis>${node.fData.fullName}</f-text>
<f-text size="x-small" ellipsis>${node.fData.description}</f-text>
</f-div>
${node.childrenToggle}
</f-div>
`;
},
childNodeTemplate: function (node: LineageNodeElement) {
return html`
<f-div
state="secondary"
width="100%"
height="100%"
padding="none medium"
align="middle-left"
gap="small"
border="small solid default bottom"
>
<f-icon source="${node.fData.icon}" size="small"></f-icon>
<f-text size="small" ellipsis>${node.fData.title}</f-text>
</f-div>
`;
}
};
}
});
</script>
Once it's running, you will see a lineage component like the image below.
Head over to Flow Lineage Storybook for all properties and playground.
Flow nodes are represented through templates, this allow you to easily change, or write and use your own node template.
Head over to Flow Lineage templates to view whats available.