mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
37 lines
827 B
JavaScript
37 lines
827 B
JavaScript
'use strict';
|
|
|
|
import { altThirdParty } from '../alt';
|
|
import EventActions from '../actions/event_actions';
|
|
|
|
import { getSubdomain } from '../utils/general_utils';
|
|
|
|
|
|
class IntercomHandler {
|
|
constructor() {
|
|
this.bindActions(EventActions);
|
|
this.loaded = false;
|
|
}
|
|
|
|
onProfileDidLoad(profile) {
|
|
if (this.loaded) {
|
|
return;
|
|
}
|
|
|
|
/* eslint-disable */
|
|
Intercom('boot', {
|
|
/* eslint-enable */
|
|
app_id: 'oboxh5w1',
|
|
email: profile.email,
|
|
subdomain: getSubdomain(),
|
|
widget: {
|
|
activator: '#IntercomDefaultWidget'
|
|
}
|
|
});
|
|
console.log('Intercom loaded');
|
|
this.loaded = true;
|
|
}
|
|
|
|
}
|
|
|
|
export default altThirdParty.createStore(IntercomHandler, 'IntercomHandler');
|