@thingspro-web/navbar-ui

2.6.1 • Public • Published

sanji-navbar-ui

Notifications

The notification feature allows the system to show some inportant information to users.

How to add / remove a notification to navbar

1. Create a notification with a following format

const notification = {
  // Currently, we only support 'info' tag.
  category: 'info',
  item: {
    // The name MUST be a key for i18n json.
    name: 'NOTIFICATIONS_CHANGE_PASSWORD',
    // The url should be a name of angularJS ui-router.
    url: 'accounts/'
  }
};

2. Use redux to update notification statement

// Notice!!: You should inject $ngRedux and navbarAction before you copy the code below.
$ngRedux.dispatch(this.navbarAction.updateNotifications(nitification));

3. Use redux to remove a specific notification

// Notice!!: You should inject $ngRedux and navbarAction before you copy the code below.
$ngRedux.dispatch(this.navbarAction.removeMotifications(nitification));

4. Show notification icon

// Notice!!: You should inject $ngRedux and navbarAction before you copy the code below.
$ngRedux.dispatch(this.navbarAction.updateNavbarStatus({ config: { isShowNotification: true } }));

Readme

Keywords

none

Package Sidebar

Install

npm i @thingspro-web/navbar-ui

Weekly Downloads

1

Version

2.6.1

License

none

Unpacked Size

27.7 kB

Total Files

41

Last publish

Collaborators

  • kmsheng
  • lukeshih