@ecl/twig-component-mega-menu

4.1.2 • Public • Published

ECL Menu

npm package: @ecl/twig-component-mega-menu

npm install --save @ecl/twig-component-mega-menu

Parameters

  • "id" (string) (default: random): Unique id
  • "toggle": (associative array) (default: {}): Toggle (hambrger) link, using ECL Link structure
  • "title" (string) (default: ''): Used as the inner container aria-label value
  • "close": (associative array) (default: {}): Object, using ECL Button structure
  • "back_label" (string): (default: ''): Back button label
  • "icon_path" (string) (default: ''): Path to the icon sprite
  • "see_all_label" (string) (default: ''): Label to be used for the "view all" link
  • "items": (array) (default: []): The menu items - format: [ { "label": (string) (default: '') "path": (string) (default: '') "is_current": (boolean) (optional) "external": (boolean) (optional) "trigger_aria_label" (string) "link_aria_label" (string) "container": (string) Empty container to be filled in with content "featured" (oject) (optional) { "title": (string) "content": (string) "items": (associative array) } "children": (associative array) (optional): [ { "label": (string) (default: '') "path": (string) (default: '') "is_current": (boolean) (optional) "external": (boolean) } ] } ],
  • "extra_classes" (optional) (string) (default: '') Extra classes (space separated) for the nav element
  • "extra_attributes" (optional) (array) (default: []) Extra attributes for the nav element
    • "name" (string) Attribute name, eg. 'data-test'
    • "value" (optional) (string) Attribute value, eg: 'data-test-1'

Example:

{% include '@ecl/mega-menu/mega-menu.html.twig' with {
  title: 'Menu',
  toggle: {
    link: {
      label: 'Menu',
      path: exampleLink,
    },
    icon:
      {
        path: '/icons.svg',
        name: 'hamburger',
        size: 'm',
      },
    }, 
  },
  close: { 
    label: 'Close', 
    icon: { 
      path: '/icons.svg', 
      name: 'close', 
      size: 'm', 
    }, 
  }, 
  back_label: 'Back',
  icon_path: '/icons.svg',
  items: [
    {
      label: "Menu item",
      path: "example",
      is_current: false,
      children: [
        {
          label: "Item 1.1",
          path: "/example"
        },
        ...
      ],
    },
    ...
  ],
  extra_classes: "ecl-menu-extra-class,
  extra_attributes: [
    {
      name:"data-ecl-mega-menu",
    },
    ...
    ]
} %}

Package Sidebar

Install

npm i @ecl/twig-component-mega-menu

Version

4.1.2

License

EUPL-1.2

Unpacked Size

558 kB

Total Files

8

Last publish

Collaborators

  • papegaill
  • yhuard
  • kalin.chernev
  • weslito
  • emeryro
  • planctus