forked from segmentio/ajs-multiple-writekeys-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
70 lines (61 loc) · 1.96 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import Analytics from '@segment/analytics.js-core/lib/analytics'
import SegmentIntegration from '@segment/analytics.js-integration-segmentio'
import Segment from './Segment';
class App extends Component {
async componentDidMount() {
// https://app.segment.com/segment-libraries/sources/multa_yellow/overview
const analytics = await Segment('oOnSg3MIRzXGwR9eAQIbqq9gOQFii1cu')
analytics.track('Hello World')
// https://app.segment.com/segment-libraries/sources/multa_green/overview
var greenAnalytics = new Analytics()
greenAnalytics.use(SegmentIntegration)
greenAnalytics.initialize({
'Segment.io': {
apiKey: 'qvEH9ExOPEVETSa8uaGWgLIrxaMO6H3t',
retryQueue: false,
}
})
greenAnalytics.track('Hello Green')
// https://app.segment.com/segment-libraries/sources/multa_blue/overview
var blueAnalytics = new Analytics()
blueAnalytics.use(SegmentIntegration)
blueAnalytics.initialize({
'Segment.io': {
apiKey: '41MfkgYcD76pDMi1N2BqTBnSsgeLtKSO',
retryQueue: false,
}
})
blueAnalytics.track('Hello Blue')
// The default analytics.js instance, injected via a script tag on the window.
var redAnalytics = window.analytics
redAnalytics.track('Hello Red')
// Send page calls to all instances.
blueAnalytics.page()
greenAnalytics.page()
redAnalytics.page()
}
render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
}
export default App;