5.1.1 • Published 5 months ago

@ovh-ux/ng-ovh-actions-menu v5.1.1

Weekly downloads
12
License
BSD-3-Clause
Repository
github
Last release
5 months ago

ng-ovh-actions-menu

An actions menu gives the opportunity to group a set of actions available for a specific context under a single menu.

npm version Downloads Dependencies Dev Dependencies

Install

$ yarn add @ovh-ux/ng-ovh-actions-menu

Usage

import angular from 'angular';
import ngOvhActionsMenu from '@ovh-ux/ng-ovh-actions-menu';

angular.module('myApp', [ngOvhActionsMenu]);

TODO

  • customizing page width ;
  • customizing open animation ;
  • actions with confirmation.

Documentation

actionsMenu - directive

This is the main directive of the module. It's creating a popover with desired actions inside.

Arguments

ParamTypeDetails
ng-ovh-actions-menu-optionsObject[]A list of actions options that will be displayed into actionsMenu. See ActionsMenu factory and ActionsMenuItem factory for available options.
ng-ovh-actions-menu-popover-settingsObjectA list of options of the popover. For now only : class, placement, trigger and isOpen options are supported. Feel free to add others!!! See ui.bootstrap.popover for more informations.

Example

The following example will open an actions popover with 2 actions inside it:

In your controller:

import angular from 'angular';

angular.module('myApp').controller(
  'MyCtrl',
  /* @ngInject */ ($scope) => {
    $scope.popoverSettings = {
      'popover-class': 'my-custom-class',
      'popover-placement': 'bottom-right',
    };

    $scope.actionsOptions = [
      {
        title: 'My Beautiful title',
        icon: 'filled-check',
        href: 'http://www.google.be',
      },
      {
        title: 'My Other title',
        icon: 'filled-error',
        state: 'my-manager.state1',
      },
    ];
  },
);

And in your html view:

<actions-menu
    data-ng-ovh-actions-menu-options="actionsOptions"
    data-ng-ovh-actions-menu-popover-settings="popoverSettings">
    <span class="my-font my-font-actions" aria-hidden="true"></span>
    Button actions
</actions-menu>

actionsMenuItem - directive

This directive represent an item into an actions menu.

This directive is included by its parent directive: actionsMenu, and should not be called offside of the module scope.

Arguments

ParamTypeDetails
ng-ovh-actions-menu-itemActionMenuItemAn instance of ActionMenuItem.
ng-ovh-actions-menu-item-on-clickFunctionA callback function called when the action menu item has been clicked.

ActionsMenu - object

Factory that describe an actions menu.

A new instance of ActionsMenu is created and used by the actionsMenu directive.

Dependencies

  • ActionsMenuItem

Arguments

ParamTypeDetails
optionsObjectOptions for creating a new ActionsMenu instance.
options.actionsMenuItemsArrayThe options of the items that will be added to the ActionsMenu instance.

Methods

addActionItem

Add an actions menu item into actions list.

Parameters
ParamTypeDetails
actionMenuItemOptionsObjectThe options for creating a new action menu item. See ActionsMenuItem factory for available options.
Returns
TypeDescription
ActionsMenuItemThe added actions menu item.

Example

import angular from 'angular';

angular.module('myApp').controller(
  'MyCtrl',
  /* @ngInject */ (ActionsMenu) => {
    const actionMenu = new ActionsMenu({
      actionsMenuItems: [
        {
          title: 'My Beautiful title',
          icon: 'filled-check',
          href: 'http://www.google.be',
        },
      ],
    });
  },
);

ActionsMenuItem - object

Factory that describe an item into an actions menu.

Arguments

ParamTypeDetails
optionsObjectOptions for creating a new ActionsMenuItem instance.
options.externalStringIs the link is an external link. In other words, will we be redirected offside of the manager ?
options.hrefStringThe href to be redirected if item is clicked. Has no effect if state option is defined or subItems option is defined.
options.iconStringThe icon class of the actions menu item icon.
options.stateStringThe state to be redirected when item is clicked. Has no effect if href option is defined or subItems option is defined.
options.stateParamsObjectThe params to pass to the state.
options.subActionsArraySub actions options to be added to the actions menu item. The options are the same of a first level item options. The actionsMenu directive only manage two levels of actions (only level one items with potentially sub actions).
options.targetStringThe target of the href anchor tag. This will be the target html attribute.
options.titleStringThe title of the actions menu item.

Methods

getFullSref

Get the full sref string that will be applied to item that have state defined.

Returns
TypeDescription
StringThe string representation of a state. For example: my.manager.state({param1:1, param2:2}).
addSubAction

Add a sub action item to current actions menu item instance.

Parameters
ParamTypeDetails
subActionOptionsObjectOptions for creating an actions menu sub item. See constructor options for more details.
Returns
TypeDescription
ActionsMenuItemThe new instance of actions menu item created.
hasSubActions

Check if the instance of actions menu item has sub actions defined.

Returns
TypeDescription
Booleantrue if item has subItems, false otherwise.

Example

import angular from 'angular';

angular.module('myApp').controller(
  'MyCtrl',
  /* @ngInject */ (ActionsMenuItem) => {
    const actionMenuItem = new ActionsMenuItem({
      title: 'My Beautiful title',
      icon: 'filled-check',
      href: 'http://www.google.be',
    });
  },
);

actionsMenuProvider - provider

actionsMenuProvider allows developer to configure the path of the translation file.

Methods

setTranslationPath

Allows you to change the default location of the translation file of the module.

Parameters
ParamTypeDetails
pathStringThe new path of the translation file.
Returns
TypeDescription
StringThe new configured translation path.

Example

import angular from 'angular';

angular.module('myApp').config((actionsMenuProvider) => {
  // set a new path for translations of the module
  actionsMenuProvider.setTranslationPath('/the/new/translation/path');
});

actionsMenu - service

This service enable you to load translation file.

Methods

Load the translation file from the configured path.

Returns
TypeDescription
PromiseWhen the translation file is loaded.

Test

$ yarn test

Related

Contributing

Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.

License

BSD-3-Clause © OVH SAS

5.1.1

5 months ago

5.1.0

6 months ago

5.0.17

8 months ago

5.0.16

1 year ago

5.0.15

1 year ago

5.0.14

2 years ago

5.0.13

2 years ago

5.0.12

2 years ago

5.0.11

2 years ago

5.0.10

3 years ago

5.0.9

3 years ago

5.0.8

3 years ago

5.0.7

4 years ago

5.0.6

4 years ago

5.0.5

4 years ago

5.0.4

4 years ago

5.0.3

5 years ago

5.0.2

5 years ago

5.0.1

5 years ago

5.0.0

5 years ago

5.0.0-alpha.0

5 years ago