0.0.3 • Published 5 years ago

ember-cli-appcues v0.0.3

Weekly downloads
295
License
MIT
Repository
github
Last release
5 years ago

ember-cli-appcues

Easily add Appcues to your Ember app.

Installation

Please install this addon into your Ember.js project using ember-cli:

ember install ember-cli-appcues

Configuration

Add your Appcues App ID into your config/environment.js file:

ENV['ember-cli-appcues'] = {
  accountId: '[YOUR_ACCOUNT_ID]',
  lazyLoad: true
};
  • lazyLoad: wait for the first call to Appcues to load its library.

This addon will automatically call Appcues.page() for each transitions as long as identify or anonymous was first called.

Appcues service

This service exposes some of the AppCues Javascript API.

  • Check if anonymous or identify was called.
  this.get('appcues').isSessionCreated()
  • Appcues.identify(userId, userProperties = {})
  this.get('appcues').identify(userId, userProperties)
  • Appcues.anonymous()
  this.get('appcues').anonymous()
  • Appcues.page()
  this.get('appcues').page()
  • Appcues.track(eventName, eventProperties)
  this.get('appcues').track(eventName, eventProperties)
  • Appcues.show(contentId)
  this.get('appcues').show(contentId)
  • Appcues.clearShow()
  this.get('appcues').clearShow()
  • Appcues.debug()
  this.get('appcues').debug()
  • Appcues.reset()
  this.get('appcues').reset()

Contributing

Installation

  • git clone <repository-url>
  • cd ember-cli-appcues
  • npm install

Linting

  • npm run lint:hbs
  • npm run lint:js
  • npm run lint:js -- --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • ember try:each – Runs the test suite against multiple Ember versions

Running the dummy application

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.