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
Configure your AppCues App ID:
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)
this.get('appcues').anonymous()
this.get('appcues').page()
Appcues.track(eventName, eventProperties)
this.get('appcues').track(eventName, eventProperties)
this.get('appcues').show(contentId)
this.get('appcues').clearShow()
this.get('appcues').denug()
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 versionember 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.