forked from ponomarevv/react-native-appmetrica
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
84 lines (74 loc) · 2.23 KB
/
index.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
// @flow
import { NativeModules } from 'react-native';
const { AppMetrica } = NativeModules;
type ActivationConfig = {
apiKey: string,
sessionTimeout?: number,
firstActivationAsUpdate?: boolean,
};
type UserProfileAttributes = {
name?: ?string,
gender?: 'female' | 'male' | string | void,
age?: ?number,
birthDate?: Date | [number] | [number, number] | [number, number, number] | void,
notificationsEnabled?: boolean,
[string]: string | number | boolean,
};
export default {
/**
* Starts the statistics collection process.
* @param {string} apiKey
*/
activateWithApiKey(apiKey: string) {
AppMetrica.activateWithApiKey(apiKey);
},
/**
* Starts the statistics collection process using config.
* @param {object} params
*/
activateWithConfig(params: ActivationConfig) {
AppMetrica.activateWithConfig(params);
},
/**
* Sends a custom event message and additional parameters (optional).
* @param {string} message
* @param {object} [params=null]
*/
reportEvent(message: string, params: ?Object = null) {
AppMetrica.reportEvent(message, params);
},
/**
* Sends error with reason.
* @param {string} error
* @param {object} reason
*/
reportError(error: string, reason: Object) {
AppMetrica.reportError(error, reason);
},
/**
* Sets the ID of the user profile.
* @param {string} userProfileId
*/
setUserProfileID(userProfileId: string) {
AppMetrica.setUserProfileID(userProfileId);
},
/**
* Sets attributes of the user profile.
* @param {object} attributes
*/
reportUserProfile(attributes: UserProfileAttributes) {
const readyAttributes = {};
Object.keys(attributes).forEach(key => {
if (
key === 'birthDate' &&
typeof attributes.birthDate === 'object' &&
typeof attributes.birthDate.getTime === 'function'
) {
readyAttributes.birthDate = attributes.birthDate.getTime();
} else {
readyAttributes[key] = attributes[key];
}
});
AppMetrica.reportUserProfile(readyAttributes);
},
};