Skip to content

kachbit/Menubar-UI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ds_menubar

A dynamic menu bar that is based on a JSON object. This is useful for creating a menubar quickly and easily without spending hours coding HTML and css, but only spending a few minutes writing your JSON. demo

setup

  • In your HTML, include the JS and CSS files:
  <link rel="stylesheet" href="../build/menu.css">
  <script src="../build/menu.js"></script>
  • Create your JSON object for the menubar using this syntax:
var json = {
  "name of first dropdown": {
    "content": "dropdown_1 {% raw %}{%optionalFunctionNameHere%}{% endraw %}", // custom function name goes in:{% raw %} {%%} {% endraw %}
    subMenu:false
  },
  "name of second dropdown": {
    "content": "dropdown_2",
    submenu:false
  }
}
  • Create the menu by calling the function:
// new Menu(jsonObject, container); <-- return value is the HTML element
var menu = new Menu(tree, document.body);
  • Create a JS file containing all menu click functions:
function optionalFunctionNameHere() {
  console.log('first dropdown was clicked')
}
function dropdown_2() {
  console.log('second dropdown was clicked')
}
  • Include this JS file inside your HTML head tag:
<script src="./funcs.js"></script>
  • Put it all together:
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="../build/menu.css">
  <script src="../build/menu.js"></script>
  <!-- remember to include js file containing menu functions  -->
  <script src="./funcs.js"></script>
</head>

<body>
  <script>
    var json = {
      "name of first dropdown": {
        "content": "dropdown_1 {% raw %}{%optionalFunctionNameHere%}{% endraw %}", // custom function name goes in: {% raw %}{%%}{% endraw %}
        subMenu:false
      },
      "name of second dropdown": {
        "content": "dropdown_2",
        submenu:false
      }
    }
    var menu = new Menu(json, document.body);
  </script>
</body>
</html>

output

output

YAML support coming soon:

file:
  content: File
  subMenu:
    new_:
      content: New
      subMenu:
        project:
          content: Project
          subMenu: false
        file:
          content: File
          subMenu: false
    open:
      content: Open
      subMenu:
        project:
          content: Project
          subMenu: false
        folder:
          content: Folder
          subMenu: false
        file:
          content: File
          subMenu: false

Edit:
  content: Edit
  subMenu:
    undo:
      content: Undo
      subMenu: false
    redo:
      content: Redo
      subMenu: false
    cut:
      content: "Cut {%cutThis%}"
      subMenu: false
    copy:
      content: Copy
      subMenu: false
    paste:
      content: Paste
      subMenu: false
    selectAll:
      content: Select All
      subMenu: false

todo

  • make menu functions support content with spaces and special characters
  • minify /build/menu.js
  • custumizable css
  • yaml support using https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.min.js, jsyaml.load(yaml) converts yaml to json
  • make subMenu key optional

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published