Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

piral-menu

Package Overview
Dependencies
Maintainers
1
Versions
931
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

piral-menu

Extensions for the integration of menu items in Piral.


Version published
Weekly downloads
1.1K
decreased by-61.61%
Maintainers
1
Weekly downloads
 
Created
Source

Piral Logo

Piral Menu · GitHub License npm version tested with jest Gitter Chat

This is an extension library that only has a peer dependency to piral-core. What piral-menu brings to the table is a set of API extensions that can be used with piral or piral-core to bring a simplified menu integration from your pilets to your Piral instance.

Documentation

The following functions are brought to the Pilet API.

(tbd)

Setup and Bootstrapping

The provided library only brings API extensions for pilets to a Piral instance.

For the setup of the library itself you'll need to import createMenuApi from the piral-menu package.

import { createMenuApi } from 'piral-menu';

The integration looks like:

const instance = createInstance({
  // important part
  extendApi: [createMenuApi()],
  // ...
});

Via the options the defaultSettings and the global / initially available menu items can be defined.

For example:

const instance = createInstance({
  // important part
  extendApi: [createMenuApi({
    defaultSettings: {
      type: 'admin',
    },
    items: [
      {
        component: HomeMenuItem,
      },
    ],
  })],
  // ...
});

License

Piral is released using the MIT license. For more information see the license file.

Keywords

FAQs

Package last updated on 17 Nov 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc