0.6.3 • Published 4 years ago

skilltree.js v0.6.3

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

skilltree.js

npm downloads Dependency Status

Demo

feature

  • icon image node & if icon empty use default
  • click event open window
  • workshop json load data
  • workshop have different url
  • hover event show title

npm.io

run demo

npm install
npm start

customized css

  • you can add some css to make your own style.

standard data structure

  • parentIds
    • if it is a root node, should don't have parentIds property.
    • parentIds is a array.
  • title will show in the tooltip.

javascript example

const skilltree = require("skilltree.js");
const faker = require("faker");
const html = require("nanohtml");

const dag_data = [
  {
    id: "0",
    title: "Solidity",
    url: "https://play.ethereum.org/play-workshop/"
  },
  {
    id: "1",
    parentIds: ["0"],
    title: "Variables",
    url: "https://play.ethereum.org/play-workshop/"
  },
  {
    id: "2",
    parentIds: ["0"],
    title: "Events",
    url: "https://play.ethereum.org/play-workshop/"
  },
  {
    id: "3",
    parentIds: ["2"],
    title: "Mappings",
    url: "https://play.ethereum.org/play-workshop/"
  },
  {
    id: "4",
    parentIds: ["2"],
    title: "Types",
    url: "https://play.ethereum.org/play-workshop/"
  },
  {
    id: "5",
    parentIds: ["2"],
    title: "Modifiers",
    url: "https://play.ethereum.org/play-workshop/",
    icon: faker.image.imageUrl(32, 32)
  },
  {
    id: "6",
    parentIds: ["9"],
    title: "Imports",
    url: "https://play.ethereum.org/play-workshop/",
    icon: faker.image.imageUrl(32, 32)
  },
  {
    id: "7",
    parentIds: ["3"],
    title: "Source File",
    url: "https://play.ethereum.org/play-workshop/"
  },
  {
    id: "8",
    parentIds: ["3"],
    title: "Remix",
    url: "https://play.ethereum.org/play-workshop/"
  },
  {
    id: "9",
    parentIds: ["8"],
    title: "Deploying",
    url: "https://play.ethereum.org/play-workshop/"
    // icon: faker.image.imageUrl(32, 32),
  },
  {
    id: "10",
    parentIds: ["9"],
    title: "Networks",
    url: "https://play.ethereum.org/play-workshop/"
  }
];

const element = html`
  <div class="app">
    ${skilltree(dag_data)}
  </div>
`;

// const element = html`
//   <div class="app">
//     ${skilltree(dag_data, '4')}
//   </div>
// `

document.body.appendChild(element);

License

MIT © alincode

0.6.3

4 years ago

0.6.2

4 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.1

5 years ago