2.7.0 • Published 6 years ago

environment-notifier v2.7.0

Weekly downloads
83
License
MIT
Repository
github
Last release
6 years ago

Environment Notifier

Build status npm version

Display on-screen notifications alerting users when viewing matching web application environments.

Environment ribbon on top An example with the ribbon fixed at the top

Environment ribbon at bottom An example with the ribbon fixed at the bottom

Installation

npm install environment-notifier

Or, load this script manually: https://unpkg.com/environment-notifier@latest/lib/environment-notifier.min.js -- This targets the latest version, which may include breaking changes for major version updates. A specific version can be targeted to avoid potential breaking changes. See https://unpkg.com for more information.

Quickstart

new EnvironmentNotifier().start();

Usage

  • Run new EnvironmentNotifier().start();, optionally specifying the scope in the parameter (defaults to document.body).

Configuration options can be specified in the EnvironmentNotifier constructor. Example:

new EnvironmentNotifier({
  environmentDefaults: {
    ribbonLocation: 'top'
  }
}).start();

Configuration options

OptionDescriptionDefault Value
defaultDomScopeThe default DOM scope to use.document.body
environmentDefaultsThe defaults to apply when specific settings are not provided.See below
environmentsThe configured environments.Local, QA, UAT environments

environmentDefaults

OptionDescriptionDefault Value
colorEnvironment color. (Accepted value types: #ccc, rgb(), rgba())'rgba(255, 0, 0, .75)'
detectionThe environment detection function (returns true for match).() => false
modalMessageHtmlThe HTML message to display on the modal.'✨ You are viewing the <strong>{{ environment.name }}</strong> environment. ✨'
showModalEveryViewShow modal for every page view.false
showModalFirstViewShow modal for first page view.false
ribbonLocationThe location of the on-screen ribbon. (Accepted values: top, bottom)'bottom'
ribbonPositionThe CSS position of the ribbon.'fixed'
ribbonTargetThe DOM element to inject the ribbon into.document.body
showRibbonWhether the on-screen ribbon should be shown or not.true
customClassCustom class to be added to the body of the ribbon and modal.null

Methods

addEnvironment(environment)

Add a new environment. environment should be { name: String, detection: Function, ... }.

getCurrentEnvironment()

Get the current environment object.

removeEnvironment(environmentName)

Remove an environment where name matches provided environmentName.

start(domScope = this.configuration.defaultDomScope)

Start environment notifier working with domScope.

Events

environmentNotifier.modalDismissed

Raised when the modal has been dismissed by the user.

Development

  • npm install
  • npm start to run demo.
  • npm run build or npm run watch
  • npm test or npm run test:watch to run tests.
  • npm run lint to run linter.
  • npm run validate to run linter than tests.

License

MIT

2.7.0

6 years ago

2.6.0

6 years ago

2.5.0

6 years ago

2.4.0

6 years ago

2.3.0

6 years ago

2.2.0

7 years ago

2.1.0

7 years ago

2.0.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

1.0.0-alpha.0

7 years ago