This repository has been archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
App.js
232 lines (203 loc) · 5.29 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/**
* Requires React Navigation v4 (https://reactnavigation.org/docs/4.x/getting-started):
* `npm install react-navigation`
* `npm install react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view`
* `npm install react-navigation-stack @react-native-community/masked-view react-native-safe-area-context`
* `cd ios; pod install; cd ..`
*/
import 'react-native-gesture-handler';
import {createAppContainer} from 'react-navigation';
import {createStackNavigator} from 'react-navigation-stack';
import React from 'react';
import {Text, View, Button, ActivityIndicator, FlatList} from 'react-native';
// Include this line below to access the New Relic Function
import {
nrInit,
nrLog,
nrError,
nrWarning,
nrCritical,
nrInteraction,
nrAddUserId,
nrRecordMetric,
} from './NewRelicRN.js';
class ErrorBoundary extends React.Component {
constructor(props) {
super(props);
this.state = {
error: null,
errorInfo: null,
};
}
componentDidCatch(error, errorInfo) {
// Catch errors in any child components and re-renders with an error message
this.setState({
error: error,
errorInfo: errorInfo,
});
// New Relic can be added to the ErrorBoundary
nrLog(error);
}
render() {
if (this.state.error) {
// Fallback UI if an error occurs
return (
<div>
<h2>{'Oh-no! Something went wrong'}</h2>
<p className="red">
{this.state.error && this.state.error.toString()}
</p>
<div>{'Component Stack Error Details: '}</div>
<p className="red">{this.state.errorInfo.componentStack}</p>
</div>
);
}
// component normally just renders children
return this.props.children;
}
}
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
// New Relic can add an interaction line to see what screens are dislayed
nrInteraction('Welcome');
// Create Custom event tables in New Relic Insights
var sampledata = {
cityName: 'Philadelphia',
zipCode: 19134,
username: 'bob',
alive: true,
};
nrRecordMetric('mycustom', sampledata);
const {navigate} = this.props.navigation;
return (
<Button
title="Go to Good HTTP/s Call Interaction"
onPress={() => navigate('Gdata', {name: 'Jane'})}
/>
);
}
}
class DataScreen extends React.Component {
static navigationOptions = {
title: 'Results',
};
constructor(props) {
super(props);
this.state = {isLoading: true};
}
componentDidMount() {
return fetch('https://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson);
this.setState(
{
isLoading: false,
dataSource: responseJson.movies,
},
function () {},
);
})
.catch((error) => {
// logging function can be added here as well
console.error(error);
nrError(error);
});
}
render() {
// New Relic can add the user to collect what sessions are related to the user
nrAddUserId('bob');
// New Relic can add an interaction line to see what screens are dislayed
nrInteraction('Results');
if (this.state.isLoading) {
return (
<View style={{flex: 1, padding: 20}}>
<ActivityIndicator />
</View>
);
}
const {navigate} = this.props.navigation;
return (
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}>
<Text>Data Screen</Text>
<Button onPress={() => navigate('Bdata')} title="Bad HTTP error" />
<Button onPress={() => navigate('Home')} title="HOME" />
<Button onPress={() => console.log(this.state)} title="Error" />
<FlatList
data={this.state.dataSource}
renderItem={({item}) => (
<Text>
{item.title}, {item.releaseYear}
</Text>
)}
keyExtractor={({id}, index) => id}
/>
</View>
);
}
}
class BadDataScreen extends React.Component {
static navigationOptions = {
title: 'Dataset',
};
constructor(props) {
super(props);
this.state = {isLoading: true};
}
componentDidMount() {
return fetch('https://facebook.github.io/react-native/moviessssssssss.json')
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson);
this.setState(
{
isLoading: false,
dataSource: responseJson.movies,
},
function () {},
);
})
.catch((error) => {
console.error(error);
// logging function can be added here as well
nrCritical(error);
});
}
render() {
nrInteraction('Dataset');
if (this.state.isLoading) {
return (
<View style={{flex: 1, padding: 20}}>
<ActivityIndicator />
</View>
);
}
const {navigate} = this.props.navigation;
return (
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}>
<Text>Data Screen</Text>
<Button onPress={() => navigate('Bdata')} title="Bad HTTP error" />
<FlatList
data={this.state.dataSource}
renderItem={({item}) => (
<Text>
{item.title}, {item.releaseYear}
</Text>
)}
keyExtractor={({id}, index) => id}
/>
</View>
);
}
}
const MainNavigator = createStackNavigator({
Home: {screen: HomeScreen},
Gdata: {screen: DataScreen},
Bdata: {screen: BadDataScreen},
});
const App = createAppContainer(MainNavigator);
nrInit('Home');
export default App;