@aries-framework/action-menu
TypeScript icon, indicating that this package has built-in type declarations

0.4.2 • Public • Published


Hyperledger Aries logo

Aries Framework JavaScript Action Menu Module

License typescript @aries-framework/action-menu version


Action Menu module for Aries Framework JavaScript. Implements Aries RFC 0509.

Installation

Make sure you have set up the correct version of Aries Framework JavaScript according to the AFJ repository. To find out which version of AFJ you need to have installed you can run the following command. This will list the required peer dependency for @aries-framework/core.

npm info "@aries-framework/action-menu" peerDependencies

Then add the action-menu module to your project.

yarn add @aries-framework/action-menu

Quick start

In order for this module to work, we have to inject it into the agent to access agent functionality. See the example for more information.

Example of usage

import { ActionMenuModule } from '@aries-framework/action-menu'

const agent = new Agent({
  config: {
    /* config */
  },
  dependencies: agentDependencies,
  modules: {
    actionMenu: new ActionMenuModule(),
    /* other custom modules */
  },
})

await agent.initialize()

// To request root menu to a given connection (menu will be received
// asynchronously in a ActionMenuStateChangedEvent)
await agent.modules.actionMenu.requestMenu({ connectionId })

// To select an option from the action menu
await agent.modules.actionMenu.performAction({
  connectionId,
  performedAction: { name: 'option-1' },
})

Readme

Keywords

none

Package Sidebar

Install

npm i @aries-framework/action-menu

Weekly Downloads

0

Version

0.4.2

License

Apache-2.0

Unpacked Size

119 kB

Total Files

96

Last publish

Collaborators

  • openwalletfoundation
  • hyperledger-ghci
  • timoglastra
  • hyperledger-lf