Skip to content
This repository was archived by the owner on Dec 11, 2019. It is now read-only.

Add track function and update page function. #10

Merged
merged 10 commits into from
Sep 19, 2016
117 changes: 117 additions & 0 deletions DOCS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
Create personalized user onboarding flows without changing any code
that will improve your product's adoption and retention rates.
[Visit Website](http://appcues.com)

Our Appcues integration code is [open-source on
GitHub](https://github.com/appcues/analytics.js-integration-appcues)
if you want to check it out.

## Getting Started

To install Appcues via Segment, add your Appcues ID and API key
(found on your [Appcues account page](https://my.appcues.com/account))
to your Segment integrations dashboard.


## JS and Server-side Integrations

Appcues provides two Segment integrations.

The first, our JavaScript integration with Segment's `analytics.js`,
is the traditional way to use Appcues as part of the Segment platform.
Calls to `analytics.identify` are used to indicate user properties,
and `analytics.page` or `analytics.track` will send events to the
Appcues API.

Separately, Appcues offers a server-side integration with Segment,
which is useful if you'd like to send user profile or event data to
Appcues from another Segment partner service. (Note that this is
different from [Segment Sources](https://segment.com/sources), which
allows you to bring multiple sources of Segment data together in your
own data warehouse.)

The server-side integration may be used simultaneously with the JS
integration. In many cases, this is preferable to routing all data
through the JS integration.

The user profile and event data received through Appcues'
server-side Segment integration can be used to segment
and target Appcues flows, just like data received from the JS
integration.

For example, using the server-side integration, customer profile and
event data could be directed from a CRM tool into the Appcues platform.
This data could then be used for content targeting and user
segmentation in the Appcues content editor, alongside data from
our `analytics.js` integration.


## JavaScript API

### Identify

When you `identify` on `analytics.js`, we call `Appcues.identify`. This
is the preferred method of using and targeting on user properties.

To get the most out of Appcues, you’ll want to send as much user data
as possible in the identify call. Properties are used to target experiences
to specific users and personalize content. Most Appcues customers send
properties that fall into a few groups:

* Properties to target based on broad classifications such as `role`
or `userType`
* Properties to personalize Appcues content such as `name`, `firstName`
or `company`
* Properties to target based on user lifecycle such as `createdAt` (date)
or usage metrics such as `numTasksComplete`

### Track

Calls to `analytics.track` invoke `Appcues.track` as well. This will
send event data to the Appcues platform, where it can be used for future
content triggering.

### Page

Appcues will check to see if a user qualifies for an experience every time
the page changes. When you first call `page` using `analytics.js`,
`Appcues.start` checks if there are any current flows for the user and
loads them if necessary.


## Appcues Features

### Whitelisted Domains

By default, Appcues will target based on the path of the URL. So if we
created an Appcues experience and targeted it to `/integrations`,
it would appear wherever the embed script is installed with that URL path,
like appcues.com/integrations and my.appcues.com/integrations. If your
analytics.js script is installed on multiple domains (e.g. your marketing
site and your web app), you’ll want to use Appcues whitelisted domains when
targeting your experience.

### Sending Appcues events to other Segment partner services

Want to read Appcues events in your 3rd party analytics or marketing
automation tool? Appcues supports sending events to other tools on the
Segment platform. These events will be sent as track calls to the other
integrations you’ve turned on. A partial list of Appcues content
lifecycle events that can be tracked:

* `flow_shown`
* `flow_skipped`
* `flow_finished`
* `flow_form_submission`
* `form_field_submission`
* `step_activated`
* `hotspots_shown`
* `hotspots_skipped`
* `hotspots_completed`
* `hotspot_activated`
* `coachmarks_shown`
* `coachmarks_completed`

To enable this feature, go to the Integrations Settings in Appcues and
click “Activate” under the Segment integration.

20 changes: 17 additions & 3 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,14 @@ Appcues.prototype.load = function(callback) {
/**
* Page.
*
* http://appcues.com/docs#start
* http://appcues.com/docs#page
*
* @api public
* @param {Page} page
*/

Appcues.prototype.page = function() {
window.Appcues.start();
Appcues.prototype.page = function(page) {
window.Appcues.page(page.name(), page.properties());
};

/**
Expand All @@ -77,6 +78,19 @@ Appcues.prototype.identify = function(identify) {
window.Appcues.identify(identify.userId(), identify.traits());
};

/**
* Track.
*
* http://appcues.com/docs#track
*
* @api public
* @param {Track} track
*/

Appcues.prototype.track = function(track) {
window.Appcues.track(track.event(), track.properties());
};

/**
* Expose plugin.
*/
Expand Down
24 changes: 19 additions & 5 deletions test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,27 @@ describe('Appcues', function() {

describe('#page', function() {
beforeEach(function() {
analytics.stub(window.Appcues, 'start');
analytics.stub(window.Appcues, 'page');
});

it('should proxy to Appcues.start()', function() {
analytics.didNotCall(window.Appcues.start);
analytics.page('Pricing');
analytics.called(window.Appcues.start);
it('should call Appcues.page', function() {
analytics.page('some page', { someAttr: true });
analytics.called(window.Appcues.page, 'some page');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should verify someAttr: true is sent as well.

// No way to assert an argument "match", and analytics.page includes
// other properties automatically, so manually checking the second
// arg to Appcues.page includes the `someAttr` value.
analytics.assert(window.Appcues.page.args[0][1].someAttr === true);
});
});

describe('#track', function() {
beforeEach(function() {
analytics.stub(window.Appcues, 'track');
});

it('should send name and attributes', function() {
analytics.track('some event', { someAttr: true });
analytics.called(window.Appcues.track, 'some event', { someAttr: true });
});
});

Expand Down