Skip to content

A compont to configure and enable Intercom in your react application

License

Notifications You must be signed in to change notification settings

jlejoux/react-intercom

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-intercom

A compont to configure and enable Intercom in your react application

Installation

npm i react-intercom --save

Usage

Inside of your application where you would be running Intercom, insert Intercom:

export class App extends React.Component {

  render () {
    const user = {
      user_id: user.id,
      email: user.email,
      name: user.name
    };

    return (
      <div className="app">
        <Intercom appID="az33rewf" { ...user } />
      </div>
    );
  }
}

This loads the javascript required to boot Intercom, and will update the settings when the props change. For example, when the active user changes in the application, new props should be passed to reflect that, and Intercom will be registering the new user. react-intercom also exports the singleton window.Intercom if you'd rather interact with a module than window. For example, where you'd like to log an event in your application:

import { IntercomAPI } from 'react-intercom';
IntercomAPI('trackEvent', 'invited-friend');

This is, of course, equivalent to just calling window.Intercom('trackEvent', 'invited-friend'); or even Intercom('trackEvent', 'invited-friend');.

About

A compont to configure and enable Intercom in your react application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%