ActionServiceProvider

Component that allows to receive contributions from other plugins for the console.action/provider extension type.

Example
   const context: ActionContext = { 'a-context-id': { dataFromDynamicPlugin } };

   ...

   <ActionServiceProvider context={context}>
       {({ actions, options, loaded }) =>
         loaded && (
           <ActionMenu actions={actions} options={options} variant={ActionMenuVariant.DROPDOWN} />
         )
       }
   </ActionServiceProvider>
Parameter Name Description

context

Object with contextId and optional plugin data