Socket
Socket
Sign inDemoInstall

@ale-rainbow/rainbow-notification

Package Overview
Dependencies
1
Maintainers
10
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ale-rainbow/rainbow-notification

Alcatel-Lucent Enterprise Rainbow Notification


Version published
Maintainers
10
Weekly downloads
4
decreased by-69.23%

Weekly downloads

Readme

Source

RAINBOW NOTIFICATION

Shared notification component for Rainbow's Web and Electron clients

Content of this module

This component provide a vanilla JS implementation and an associated css file. It is intended to be used by both the Web client and the Electron container.

Two classes in this module the RainbowNotification class and the RainbowNotificationAction class.

These two class are essentially "model" class which stored the notification data. But the RainbowNotification class also provided rendering ang event binding methods.

###RainbowNotification : the main class which describes the notification###

public id: string; // The notif identifier
public type: string; // The notif type 'info' or 'call'

// Originator info
public origin: string; // The notification originator (most often a contact name)

// Content stuff
public message: string; // The notification message
public avatarURL: string; // The avatarURL of the oginator
public infoTitle: string; // Additional information title
public infoMessage: string; // Additional information message
public callSubject: string; // Another additional message (used for call subject)

// AutoClose stuff
public delay: number; // The automatic close delay in ms (default : 15000ms);
public delayTimeout; // Private data to store the delay timeout object
public autoCloseAction; // The handler funct called when notif automatically close

// Action buttons
public actions: RainbowNotificationAction[]; // Array of actions

// Rendering and event binding methods
public getHTMLContent(): string; // Return the html code of the notification
public attachActionHandlers(attach: boolean = true): void // Bind/Unbind event to actions

###RainbowNotificationAction : describe a notification action###

// Action button description
public label: string; // The action button label
public color: string; // The button color ("grren", "red" or null)
public icon: string; // The icon identifier

// Multiple choice stuff
public choice: any[]; // List of choices 
public choiceTitleLabel: string; // Title label choice action (optional)
public choiceCloseLabel: string; // Label for close choice action
public choiceHandler: any; // handler function for choice

How to build and deploy from sources

Change version number in package
npm login mcordebard the pwd
npm run build
npm publish --access public

Keywords

FAQs

Last updated on 25 Apr 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc