@metamask-previews/analytics-controller 0.0.0-preview-8647bc1c → 0.0.0-preview-704ae19a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -4
- package/dist/AnalyticsController-method-action-types.cjs.map +1 -1
- package/dist/AnalyticsController-method-action-types.d.cts +62 -23
- package/dist/AnalyticsController-method-action-types.d.cts.map +1 -1
- package/dist/AnalyticsController-method-action-types.d.mts +62 -23
- package/dist/AnalyticsController-method-action-types.d.mts.map +1 -1
- package/dist/AnalyticsController-method-action-types.mjs.map +1 -1
- package/dist/AnalyticsController.cjs +125 -52
- package/dist/AnalyticsController.cjs.map +1 -1
- package/dist/AnalyticsController.d.cts +52 -24
- package/dist/AnalyticsController.d.cts.map +1 -1
- package/dist/AnalyticsController.d.mts +52 -24
- package/dist/AnalyticsController.d.mts.map +1 -1
- package/dist/AnalyticsController.mjs +126 -53
- package/dist/AnalyticsController.mjs.map +1 -1
- package/dist/AnalyticsPlatformAdapter.types.cjs.map +1 -1
- package/dist/AnalyticsPlatformAdapter.types.d.cts +69 -13
- package/dist/AnalyticsPlatformAdapter.types.d.cts.map +1 -1
- package/dist/AnalyticsPlatformAdapter.types.d.mts +69 -13
- package/dist/AnalyticsPlatformAdapter.types.d.mts.map +1 -1
- package/dist/AnalyticsPlatformAdapter.types.mjs.map +1 -1
- package/dist/AnalyticsPlatformAdapterSetupError.cjs +17 -0
- package/dist/AnalyticsPlatformAdapterSetupError.cjs.map +1 -0
- package/dist/AnalyticsPlatformAdapterSetupError.d.cts +8 -0
- package/dist/AnalyticsPlatformAdapterSetupError.d.cts.map +1 -0
- package/dist/AnalyticsPlatformAdapterSetupError.d.mts +8 -0
- package/dist/AnalyticsPlatformAdapterSetupError.d.mts.map +1 -0
- package/dist/AnalyticsPlatformAdapterSetupError.mjs +13 -0
- package/dist/AnalyticsPlatformAdapterSetupError.mjs.map +1 -0
- package/dist/analyticsStateComputer.cjs +46 -0
- package/dist/analyticsStateComputer.cjs.map +1 -0
- package/dist/analyticsStateComputer.d.cts +35 -0
- package/dist/analyticsStateComputer.d.cts.map +1 -0
- package/dist/analyticsStateComputer.d.mts +35 -0
- package/dist/analyticsStateComputer.d.mts.map +1 -0
- package/dist/analyticsStateComputer.mjs +42 -0
- package/dist/analyticsStateComputer.mjs.map +1 -0
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +3 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ exports.AnalyticsController = exports.getDefaultAnalyticsControllerState = expor
|
|
|
16
16
|
const base_controller_1 = require("@metamask/base-controller");
|
|
17
17
|
const uuid_1 = require("uuid");
|
|
18
18
|
const AnalyticsLogger_1 = require("./AnalyticsLogger.cjs");
|
|
19
|
+
const analyticsStateComputer_1 = require("./analyticsStateComputer.cjs");
|
|
19
20
|
// === GENERAL ===
|
|
20
21
|
/**
|
|
21
22
|
* The name of the {@link AnalyticsController}, used to namespace the
|
|
@@ -27,19 +28,19 @@ exports.controllerName = 'AnalyticsController';
|
|
|
27
28
|
* The metadata for each property in {@link AnalyticsControllerState}.
|
|
28
29
|
*/
|
|
29
30
|
const analyticsControllerMetadata = {
|
|
30
|
-
|
|
31
|
+
user_optedIn: {
|
|
31
32
|
includeInStateLogs: true,
|
|
32
33
|
persist: true,
|
|
33
34
|
includeInDebugSnapshot: true,
|
|
34
35
|
usedInUi: true,
|
|
35
36
|
},
|
|
36
|
-
|
|
37
|
+
user_socialOptedIn: {
|
|
37
38
|
includeInStateLogs: true,
|
|
38
39
|
persist: true,
|
|
39
40
|
includeInDebugSnapshot: true,
|
|
40
41
|
usedInUi: true,
|
|
41
42
|
},
|
|
42
|
-
|
|
43
|
+
user_analyticsId: {
|
|
43
44
|
includeInStateLogs: true,
|
|
44
45
|
persist: true,
|
|
45
46
|
includeInDebugSnapshot: true,
|
|
@@ -56,9 +57,9 @@ const analyticsControllerMetadata = {
|
|
|
56
57
|
*/
|
|
57
58
|
function getDefaultAnalyticsControllerState() {
|
|
58
59
|
return {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
user_optedIn: false,
|
|
61
|
+
user_socialOptedIn: false,
|
|
62
|
+
user_analyticsId: (0, uuid_1.v4)(),
|
|
62
63
|
};
|
|
63
64
|
}
|
|
64
65
|
exports.getDefaultAnalyticsControllerState = getDefaultAnalyticsControllerState;
|
|
@@ -66,11 +67,15 @@ exports.getDefaultAnalyticsControllerState = getDefaultAnalyticsControllerState;
|
|
|
66
67
|
const MESSENGER_EXPOSED_METHODS = [
|
|
67
68
|
'trackEvent',
|
|
68
69
|
'identify',
|
|
69
|
-
'
|
|
70
|
-
'enable',
|
|
71
|
-
'disable',
|
|
70
|
+
'trackView',
|
|
72
71
|
'optIn',
|
|
73
72
|
'optOut',
|
|
73
|
+
'socialOptIn',
|
|
74
|
+
'socialOptOut',
|
|
75
|
+
'getAnalyticsId',
|
|
76
|
+
'isEnabled',
|
|
77
|
+
'isOptedIn',
|
|
78
|
+
'isSocialOptedIn',
|
|
74
79
|
];
|
|
75
80
|
/**
|
|
76
81
|
* The AnalyticsController manages analytics tracking across platforms (Mobile/Extension).
|
|
@@ -87,111 +92,179 @@ class AnalyticsController extends base_controller_1.BaseController {
|
|
|
87
92
|
* Constructs an AnalyticsController instance.
|
|
88
93
|
*
|
|
89
94
|
* @param options - Controller options
|
|
90
|
-
* @param options.state - Initial controller state (defaults from getDefaultAnalyticsControllerState)
|
|
95
|
+
* @param options.state - Initial controller state (defaults from getDefaultAnalyticsControllerState).
|
|
96
|
+
* For migration from a previous system, pass the existing analytics ID via state.user_analyticsId.
|
|
91
97
|
* @param options.messenger - Messenger used to communicate with BaseController
|
|
92
98
|
* @param options.platformAdapter - Platform adapter implementation for tracking
|
|
93
99
|
*/
|
|
94
100
|
constructor({ state = {}, messenger, platformAdapter, }) {
|
|
101
|
+
const initialState = {
|
|
102
|
+
...getDefaultAnalyticsControllerState(),
|
|
103
|
+
...state,
|
|
104
|
+
};
|
|
95
105
|
super({
|
|
96
106
|
name: exports.controllerName,
|
|
97
107
|
metadata: analyticsControllerMetadata,
|
|
98
|
-
state:
|
|
99
|
-
...getDefaultAnalyticsControllerState(),
|
|
100
|
-
...state,
|
|
101
|
-
},
|
|
108
|
+
state: initialState,
|
|
102
109
|
messenger,
|
|
103
110
|
});
|
|
104
111
|
_AnalyticsController_platformAdapter.set(this, void 0);
|
|
105
112
|
__classPrivateFieldSet(this, _AnalyticsController_platformAdapter, platformAdapter, "f");
|
|
106
113
|
this.messenger.registerMethodActionHandlers(this, MESSENGER_EXPOSED_METHODS);
|
|
107
114
|
(0, AnalyticsLogger_1.projectLogger)('AnalyticsController initialized and ready', {
|
|
108
|
-
enabled: this.state
|
|
109
|
-
optedIn: this.state.
|
|
110
|
-
|
|
115
|
+
enabled: (0, analyticsStateComputer_1.computeEnabledState)(this.state),
|
|
116
|
+
optedIn: this.state.user_optedIn,
|
|
117
|
+
socialOptedIn: this.state.user_socialOptedIn,
|
|
118
|
+
analyticsId: this.state.user_analyticsId,
|
|
111
119
|
});
|
|
120
|
+
// Call onSetupCompleted lifecycle hook after initialization
|
|
121
|
+
// Only call if analyticsId is set and is a valid UUIDv4 (this is the definition of "completed" setup)
|
|
122
|
+
if (this.state.user_analyticsId &&
|
|
123
|
+
(0, uuid_1.validate)(this.state.user_analyticsId) &&
|
|
124
|
+
(0, uuid_1.version)(this.state.user_analyticsId) === 4) {
|
|
125
|
+
try {
|
|
126
|
+
__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").onSetupCompleted(this.state.user_analyticsId);
|
|
127
|
+
}
|
|
128
|
+
catch (error) {
|
|
129
|
+
// Log error but don't throw - adapter setup failure shouldn't break controller
|
|
130
|
+
(0, AnalyticsLogger_1.projectLogger)('Error calling platformAdapter.onSetupCompleted', error);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
else {
|
|
134
|
+
// analyticsId is undefined, null, empty string, or not a valid UUIDv4
|
|
135
|
+
throw new Error(`Invalid analyticsId: expected a valid UUIDv4, but got ${JSON.stringify(this.state.user_analyticsId)}`);
|
|
136
|
+
}
|
|
112
137
|
}
|
|
113
138
|
/**
|
|
114
139
|
* Track an analytics event.
|
|
115
140
|
*
|
|
116
141
|
* Events are only tracked if analytics is enabled.
|
|
117
142
|
*
|
|
118
|
-
* @param
|
|
119
|
-
* @param properties - Event properties
|
|
143
|
+
* @param event - Analytics event with properties and sensitive properties
|
|
120
144
|
*/
|
|
121
|
-
trackEvent(
|
|
145
|
+
trackEvent(event) {
|
|
122
146
|
// Don't track if analytics is disabled
|
|
123
|
-
if (!this.state
|
|
147
|
+
if (!(0, analyticsStateComputer_1.computeEnabledState)(this.state)) {
|
|
124
148
|
return;
|
|
125
149
|
}
|
|
126
|
-
//
|
|
127
|
-
|
|
150
|
+
// if event does not have properties, only send the non-anonymous empty event
|
|
151
|
+
// and return to prevent any additional processing
|
|
152
|
+
if (!event.hasProperties) {
|
|
153
|
+
__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").track(event.name, {
|
|
154
|
+
anonymous: false,
|
|
155
|
+
});
|
|
156
|
+
return;
|
|
157
|
+
}
|
|
158
|
+
// Log all non-anonymous properties, or an empty event if there's no non-anon props.
|
|
159
|
+
__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").track(event.name, {
|
|
160
|
+
anonymous: false,
|
|
161
|
+
...event.properties,
|
|
162
|
+
});
|
|
163
|
+
// Track all sensitive properties in an anonymous event
|
|
164
|
+
if (event.isAnonymous) {
|
|
165
|
+
__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").track(event.name, {
|
|
166
|
+
anonymous: true,
|
|
167
|
+
...event.properties,
|
|
168
|
+
...event.sensitiveProperties,
|
|
169
|
+
});
|
|
170
|
+
}
|
|
128
171
|
}
|
|
129
172
|
/**
|
|
130
173
|
* Identify a user for analytics.
|
|
131
174
|
*
|
|
132
|
-
* @param userId - The user identifier (e.g., metametrics ID)
|
|
133
175
|
* @param traits - User traits/properties
|
|
134
176
|
*/
|
|
135
|
-
identify(
|
|
136
|
-
if (!this.state
|
|
177
|
+
identify(traits) {
|
|
178
|
+
if (!(0, analyticsStateComputer_1.computeEnabledState)(this.state)) {
|
|
137
179
|
return;
|
|
138
180
|
}
|
|
139
|
-
//
|
|
140
|
-
this.update((state) => {
|
|
141
|
-
state.analyticsId = userId;
|
|
142
|
-
});
|
|
143
|
-
// Delegate to platform adapter if supported
|
|
181
|
+
// Delegate to platform adapter if supported, using the current analytics ID
|
|
144
182
|
if (__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").identify) {
|
|
145
|
-
__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").identify(
|
|
183
|
+
__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").identify(this.state.user_analyticsId, traits);
|
|
146
184
|
}
|
|
147
185
|
}
|
|
148
186
|
/**
|
|
149
187
|
* Track a page view.
|
|
150
188
|
*
|
|
151
|
-
* @param
|
|
152
|
-
* @param properties -
|
|
189
|
+
* @param name - The name of the UI item being viewed (pages for web, screen for mobile)
|
|
190
|
+
* @param properties - UI item properties
|
|
153
191
|
*/
|
|
154
|
-
|
|
155
|
-
if (!this.state
|
|
192
|
+
trackView(name, properties) {
|
|
193
|
+
if (!(0, analyticsStateComputer_1.computeEnabledState)(this.state)) {
|
|
156
194
|
return;
|
|
157
195
|
}
|
|
158
|
-
// Delegate to platform adapter
|
|
159
|
-
|
|
160
|
-
__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").trackPage(pageName, properties);
|
|
161
|
-
}
|
|
196
|
+
// Delegate to platform adapter
|
|
197
|
+
__classPrivateFieldGet(this, _AnalyticsController_platformAdapter, "f").view(name, properties);
|
|
162
198
|
}
|
|
163
199
|
/**
|
|
164
|
-
*
|
|
200
|
+
* Opt in to analytics.
|
|
201
|
+
* This updates the user's opt-in status.
|
|
165
202
|
*/
|
|
166
|
-
|
|
203
|
+
optIn() {
|
|
167
204
|
this.update((state) => {
|
|
168
|
-
state.
|
|
205
|
+
state.user_optedIn = true;
|
|
169
206
|
});
|
|
170
207
|
}
|
|
171
208
|
/**
|
|
172
|
-
*
|
|
209
|
+
* Opt out of analytics.
|
|
210
|
+
* This updates the user's opt-in status.
|
|
173
211
|
*/
|
|
174
|
-
|
|
212
|
+
optOut() {
|
|
175
213
|
this.update((state) => {
|
|
176
|
-
state.
|
|
214
|
+
state.user_optedIn = false;
|
|
177
215
|
});
|
|
178
216
|
}
|
|
179
217
|
/**
|
|
180
|
-
* Opt in to analytics.
|
|
218
|
+
* Opt in to analytics through social account.
|
|
219
|
+
* This updates the user's social opt-in status.
|
|
181
220
|
*/
|
|
182
|
-
|
|
221
|
+
socialOptIn() {
|
|
183
222
|
this.update((state) => {
|
|
184
|
-
state.
|
|
223
|
+
state.user_socialOptedIn = true;
|
|
185
224
|
});
|
|
186
225
|
}
|
|
187
226
|
/**
|
|
188
|
-
* Opt out of analytics.
|
|
227
|
+
* Opt out of analytics through social account.
|
|
228
|
+
* This updates the user's social opt-in status.
|
|
189
229
|
*/
|
|
190
|
-
|
|
230
|
+
socialOptOut() {
|
|
191
231
|
this.update((state) => {
|
|
192
|
-
state.
|
|
232
|
+
state.user_socialOptedIn = false;
|
|
193
233
|
});
|
|
194
234
|
}
|
|
235
|
+
/**
|
|
236
|
+
* Get the analytics ID from the controller state.
|
|
237
|
+
*
|
|
238
|
+
* @returns The current analytics ID.
|
|
239
|
+
*/
|
|
240
|
+
getAnalyticsId() {
|
|
241
|
+
return this.state.user_analyticsId;
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* Get the enabled status from the controller state.
|
|
245
|
+
* This is computed from user state via the state machine.
|
|
246
|
+
*
|
|
247
|
+
* @returns The current enabled status.
|
|
248
|
+
*/
|
|
249
|
+
isEnabled() {
|
|
250
|
+
return (0, analyticsStateComputer_1.computeEnabledState)(this.state);
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* Get the opted in status from the controller state.
|
|
254
|
+
*
|
|
255
|
+
* @returns The current opted in status.
|
|
256
|
+
*/
|
|
257
|
+
isOptedIn() {
|
|
258
|
+
return this.state.user_optedIn;
|
|
259
|
+
}
|
|
260
|
+
/**
|
|
261
|
+
* Get the social opted in status from the controller state.
|
|
262
|
+
*
|
|
263
|
+
* @returns The current social opted in status.
|
|
264
|
+
*/
|
|
265
|
+
isSocialOptedIn() {
|
|
266
|
+
return this.state.user_socialOptedIn;
|
|
267
|
+
}
|
|
195
268
|
}
|
|
196
269
|
exports.AnalyticsController = AnalyticsController;
|
|
197
270
|
_AnalyticsController_platformAdapter = new WeakMap();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AnalyticsController.cjs","sourceRoot":"","sources":["../src/AnalyticsController.ts"],"names":[],"mappings":"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","sourcesContent":["import type {\n ControllerGetStateAction,\n ControllerStateChangeEvent,\n StateMetadata,\n} from '@metamask/base-controller';\nimport { BaseController } from '@metamask/base-controller';\nimport type { Messenger } from '@metamask/messenger';\nimport { v4 as uuidv4 } from 'uuid';\n\nimport type { AnalyticsControllerMethodActions } from './AnalyticsController-method-action-types';\nimport { projectLogger } from './AnalyticsLogger';\nimport type {\n AnalyticsPlatformAdapter,\n AnalyticsEventProperties,\n} from './AnalyticsPlatformAdapter.types';\n\n// === GENERAL ===\n\n/**\n * The name of the {@link AnalyticsController}, used to namespace the\n * controller's actions and events and to namespace the controller's state data\n * when composed with other controllers.\n */\nexport const controllerName = 'AnalyticsController';\n\n// === STATE ===\n\n/**\n * Describes the shape of the state object for {@link AnalyticsController}.\n */\nexport type AnalyticsControllerState = {\n /**\n * Whether analytics tracking is enabled\n */\n enabled: boolean;\n\n /**\n * Whether the user has opted in to analytics\n */\n optedIn: boolean;\n\n /**\n * User's UUIDv4 analytics identifier\n */\n analyticsId: string;\n};\n\n/**\n * The metadata for each property in {@link AnalyticsControllerState}.\n */\nconst analyticsControllerMetadata = {\n enabled: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: true,\n },\n optedIn: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: true,\n },\n analyticsId: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: false,\n },\n} satisfies StateMetadata<AnalyticsControllerState>;\n\n/**\n * Constructs the default {@link AnalyticsController} state. This allows\n * consumers to provide a partial state object when initializing the controller\n * and also helps in constructing complete state objects for this controller in\n * tests.\n *\n * @returns The default {@link AnalyticsController} state.\n */\nexport function getDefaultAnalyticsControllerState(): AnalyticsControllerState {\n return {\n enabled: true,\n optedIn: false,\n analyticsId: uuidv4(),\n };\n}\n\n// === MESSENGER ===\n\nconst MESSENGER_EXPOSED_METHODS = [\n 'trackEvent',\n 'identify',\n 'trackPage',\n 'enable',\n 'disable',\n 'optIn',\n 'optOut',\n] as const;\n\n/**\n * Returns the state of the {@link AnalyticsController}.\n */\nexport type AnalyticsControllerGetStateAction = ControllerGetStateAction<\n typeof controllerName,\n AnalyticsControllerState\n>;\n\n/**\n * Actions that {@link AnalyticsControllerMessenger} exposes to other consumers.\n */\nexport type AnalyticsControllerActions =\n | AnalyticsControllerGetStateAction\n | AnalyticsControllerMethodActions;\n\n/**\n * Actions from other messengers that {@link AnalyticsControllerMessenger} calls.\n */\ntype AllowedActions = never;\n\n/**\n * Event emitted when the state of the {@link AnalyticsController} changes.\n */\nexport type AnalyticsControllerStateChangeEvent = ControllerStateChangeEvent<\n typeof controllerName,\n AnalyticsControllerState\n>;\n\n/**\n * Events that {@link AnalyticsControllerMessenger} exposes to other consumers.\n */\nexport type AnalyticsControllerEvents = AnalyticsControllerStateChangeEvent;\n\n/**\n * Events from other messengers that {@link AnalyticsControllerMessenger} subscribes to.\n */\ntype AllowedEvents = never;\n\n/**\n * The messenger restricted to actions and events accessed by\n * {@link AnalyticsController}.\n */\nexport type AnalyticsControllerMessenger = Messenger<\n typeof controllerName,\n AnalyticsControllerActions | AllowedActions,\n AnalyticsControllerEvents | AllowedEvents\n>;\n\n// === CONTROLLER DEFINITION ===\n\n/**\n * The options that AnalyticsController takes.\n */\nexport type AnalyticsControllerOptions = {\n state?: Partial<AnalyticsControllerState>;\n messenger: AnalyticsControllerMessenger;\n /**\n * Platform adapter implementation for tracking events\n */\n platformAdapter: AnalyticsPlatformAdapter;\n};\n\n/**\n * The AnalyticsController manages analytics tracking across platforms (Mobile/Extension).\n * It provides a unified interface for tracking events, identifying users, and managing\n * analytics preferences while delegating platform-specific implementation to an\n * {@link AnalyticsPlatformAdapter}.\n *\n * This controller follows the MetaMask controller pattern and integrates with the\n * messenger system to allow other controllers and components to track analytics events.\n * It delegates platform-specific implementation to an {@link AnalyticsPlatformAdapter}.\n */\nexport class AnalyticsController extends BaseController<\n 'AnalyticsController',\n AnalyticsControllerState,\n AnalyticsControllerMessenger\n> {\n readonly #platformAdapter: AnalyticsPlatformAdapter;\n\n /**\n * Constructs an AnalyticsController instance.\n *\n * @param options - Controller options\n * @param options.state - Initial controller state (defaults from getDefaultAnalyticsControllerState)\n * @param options.messenger - Messenger used to communicate with BaseController\n * @param options.platformAdapter - Platform adapter implementation for tracking\n */\n constructor({\n state = {},\n messenger,\n platformAdapter,\n }: AnalyticsControllerOptions) {\n super({\n name: controllerName,\n metadata: analyticsControllerMetadata,\n state: {\n ...getDefaultAnalyticsControllerState(),\n ...state,\n },\n messenger,\n });\n\n this.#platformAdapter = platformAdapter;\n\n this.messenger.registerMethodActionHandlers(\n this,\n MESSENGER_EXPOSED_METHODS,\n );\n\n projectLogger('AnalyticsController initialized and ready', {\n enabled: this.state.enabled,\n optedIn: this.state.optedIn,\n analyticsId: this.state.analyticsId,\n });\n }\n\n /**\n * Track an analytics event.\n *\n * Events are only tracked if analytics is enabled.\n *\n * @param eventName - The name of the event\n * @param properties - Event properties\n */\n trackEvent(\n eventName: string,\n properties: AnalyticsEventProperties = {},\n ): void {\n // Don't track if analytics is disabled\n if (!this.state.enabled) {\n return;\n }\n\n // Delegate to platform adapter\n this.#platformAdapter.trackEvent(eventName, properties);\n }\n\n /**\n * Identify a user for analytics.\n *\n * @param userId - The user identifier (e.g., metametrics ID)\n * @param traits - User traits/properties\n */\n identify(userId: string, traits?: AnalyticsEventProperties): void {\n if (!this.state.enabled) {\n return;\n }\n\n // Update state with analytics ID\n this.update((state) => {\n state.analyticsId = userId;\n });\n\n // Delegate to platform adapter if supported\n if (this.#platformAdapter.identify) {\n this.#platformAdapter.identify(userId, traits);\n }\n }\n\n /**\n * Track a page view.\n *\n * @param pageName - The name of the page\n * @param properties - Page properties\n */\n trackPage(pageName: string, properties?: AnalyticsEventProperties): void {\n if (!this.state.enabled) {\n return;\n }\n\n // Delegate to platform adapter if supported\n if (this.#platformAdapter.trackPage) {\n this.#platformAdapter.trackPage(pageName, properties);\n }\n }\n\n /**\n * Enable analytics tracking.\n */\n enable(): void {\n this.update((state) => {\n state.enabled = true;\n });\n }\n\n /**\n * Disable analytics tracking.\n */\n disable(): void {\n this.update((state) => {\n state.enabled = false;\n });\n }\n\n /**\n * Opt in to analytics.\n */\n optIn(): void {\n this.update((state) => {\n state.optedIn = true;\n });\n }\n\n /**\n * Opt out of analytics.\n */\n optOut(): void {\n this.update((state) => {\n state.optedIn = false;\n });\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"AnalyticsController.cjs","sourceRoot":"","sources":["../src/AnalyticsController.ts"],"names":[],"mappings":"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","sourcesContent":["import type {\n ControllerGetStateAction,\n ControllerStateChangeEvent,\n StateMetadata,\n} from '@metamask/base-controller';\nimport { BaseController } from '@metamask/base-controller';\nimport type { Messenger } from '@metamask/messenger';\nimport {\n v4 as uuidv4,\n validate as uuidValidate,\n version as uuidVersion,\n} from 'uuid';\n\nimport type { AnalyticsControllerMethodActions } from './AnalyticsController-method-action-types';\nimport { projectLogger } from './AnalyticsLogger';\nimport type {\n AnalyticsPlatformAdapter,\n AnalyticsEventProperties,\n AnalyticsUserTraits,\n AnalyticsTrackingEvent,\n} from './AnalyticsPlatformAdapter.types';\nimport { computeEnabledState } from './analyticsStateComputer';\n\n// === GENERAL ===\n\n/**\n * The name of the {@link AnalyticsController}, used to namespace the\n * controller's actions and events and to namespace the controller's state data\n * when composed with other controllers.\n */\nexport const controllerName = 'AnalyticsController';\n\n// === STATE ===\n\n/**\n * Describes the shape of the state object for {@link AnalyticsController}.\n */\nexport type AnalyticsControllerState = {\n /**\n * User domain: Whether the user has opted in to analytics.\n */\n user_optedIn: boolean;\n\n /**\n * User domain: Whether the user has opted in to analytics through social account.\n */\n user_socialOptedIn: boolean;\n\n /**\n * User domain: User's UUIDv4 analytics identifier.\n */\n user_analyticsId: string;\n};\n\n/**\n * The metadata for each property in {@link AnalyticsControllerState}.\n */\nconst analyticsControllerMetadata = {\n user_optedIn: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: true,\n },\n user_socialOptedIn: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: true,\n },\n user_analyticsId: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: true,\n usedInUi: false,\n },\n} satisfies StateMetadata<AnalyticsControllerState>;\n\n/**\n * Constructs the default {@link AnalyticsController} state. This allows\n * consumers to provide a partial state object when initializing the controller\n * and also helps in constructing complete state objects for this controller in\n * tests.\n *\n * @returns The default {@link AnalyticsController} state.\n */\nexport function getDefaultAnalyticsControllerState(): AnalyticsControllerState {\n return {\n user_optedIn: false,\n user_socialOptedIn: false,\n user_analyticsId: uuidv4(),\n };\n}\n\n// === MESSENGER ===\n\nconst MESSENGER_EXPOSED_METHODS = [\n 'trackEvent',\n 'identify',\n 'trackView',\n 'optIn',\n 'optOut',\n 'socialOptIn',\n 'socialOptOut',\n 'getAnalyticsId',\n 'isEnabled',\n 'isOptedIn',\n 'isSocialOptedIn',\n] as const;\n\n/**\n * Returns the state of the {@link AnalyticsController}.\n */\nexport type AnalyticsControllerGetStateAction = ControllerGetStateAction<\n typeof controllerName,\n AnalyticsControllerState\n>;\n\n/**\n * Actions that {@link AnalyticsControllerMessenger} exposes to other consumers.\n */\nexport type AnalyticsControllerActions =\n | AnalyticsControllerGetStateAction\n | AnalyticsControllerMethodActions;\n\n/**\n * Actions from other messengers that {@link AnalyticsControllerMessenger} calls.\n */\ntype AllowedActions = never;\n\n/**\n * Event emitted when the state of the {@link AnalyticsController} changes.\n */\nexport type AnalyticsControllerStateChangeEvent = ControllerStateChangeEvent<\n typeof controllerName,\n AnalyticsControllerState\n>;\n\n/**\n * Events that {@link AnalyticsControllerMessenger} exposes to other consumers.\n */\nexport type AnalyticsControllerEvents = AnalyticsControllerStateChangeEvent;\n\n/**\n * Events from other messengers that {@link AnalyticsControllerMessenger} subscribes to.\n */\ntype AllowedEvents = never;\n\n/**\n * The messenger restricted to actions and events accessed by\n * {@link AnalyticsController}.\n */\nexport type AnalyticsControllerMessenger = Messenger<\n typeof controllerName,\n AnalyticsControllerActions | AllowedActions,\n AnalyticsControllerEvents | AllowedEvents\n>;\n\n// === CONTROLLER DEFINITION ===\n\n/**\n * The options that AnalyticsController takes.\n */\nexport type AnalyticsControllerOptions = {\n state?: Partial<AnalyticsControllerState>;\n messenger: AnalyticsControllerMessenger;\n /**\n * Platform adapter implementation for tracking events\n */\n platformAdapter: AnalyticsPlatformAdapter;\n};\n\n/**\n * The AnalyticsController manages analytics tracking across platforms (Mobile/Extension).\n * It provides a unified interface for tracking events, identifying users, and managing\n * analytics preferences while delegating platform-specific implementation to an\n * {@link AnalyticsPlatformAdapter}.\n *\n * This controller follows the MetaMask controller pattern and integrates with the\n * messenger system to allow other controllers and components to track analytics events.\n * It delegates platform-specific implementation to an {@link AnalyticsPlatformAdapter}.\n */\nexport class AnalyticsController extends BaseController<\n 'AnalyticsController',\n AnalyticsControllerState,\n AnalyticsControllerMessenger\n> {\n readonly #platformAdapter: AnalyticsPlatformAdapter;\n\n /**\n * Constructs an AnalyticsController instance.\n *\n * @param options - Controller options\n * @param options.state - Initial controller state (defaults from getDefaultAnalyticsControllerState).\n * For migration from a previous system, pass the existing analytics ID via state.user_analyticsId.\n * @param options.messenger - Messenger used to communicate with BaseController\n * @param options.platformAdapter - Platform adapter implementation for tracking\n */\n constructor({\n state = {},\n messenger,\n platformAdapter,\n }: AnalyticsControllerOptions) {\n const initialState = {\n ...getDefaultAnalyticsControllerState(),\n ...state,\n };\n\n super({\n name: controllerName,\n metadata: analyticsControllerMetadata,\n state: initialState,\n messenger,\n });\n\n this.#platformAdapter = platformAdapter;\n\n this.messenger.registerMethodActionHandlers(\n this,\n MESSENGER_EXPOSED_METHODS,\n );\n\n projectLogger('AnalyticsController initialized and ready', {\n enabled: computeEnabledState(this.state),\n optedIn: this.state.user_optedIn,\n socialOptedIn: this.state.user_socialOptedIn,\n analyticsId: this.state.user_analyticsId,\n });\n\n // Call onSetupCompleted lifecycle hook after initialization\n // Only call if analyticsId is set and is a valid UUIDv4 (this is the definition of \"completed\" setup)\n if (\n this.state.user_analyticsId &&\n uuidValidate(this.state.user_analyticsId) &&\n uuidVersion(this.state.user_analyticsId) === 4\n ) {\n try {\n this.#platformAdapter.onSetupCompleted(this.state.user_analyticsId);\n } catch (error) {\n // Log error but don't throw - adapter setup failure shouldn't break controller\n projectLogger('Error calling platformAdapter.onSetupCompleted', error);\n }\n } else {\n // analyticsId is undefined, null, empty string, or not a valid UUIDv4\n throw new Error(\n `Invalid analyticsId: expected a valid UUIDv4, but got ${JSON.stringify(this.state.user_analyticsId)}`,\n );\n }\n }\n\n /**\n * Track an analytics event.\n *\n * Events are only tracked if analytics is enabled.\n *\n * @param event - Analytics event with properties and sensitive properties\n */\n trackEvent(event: AnalyticsTrackingEvent): void {\n // Don't track if analytics is disabled\n if (!computeEnabledState(this.state)) {\n return;\n }\n\n // if event does not have properties, only send the non-anonymous empty event\n // and return to prevent any additional processing\n if (!event.hasProperties) {\n this.#platformAdapter.track(event.name, {\n anonymous: false,\n } as AnalyticsEventProperties);\n\n return;\n }\n\n // Log all non-anonymous properties, or an empty event if there's no non-anon props.\n this.#platformAdapter.track(event.name, {\n anonymous: false,\n ...event.properties,\n } as AnalyticsEventProperties);\n\n // Track all sensitive properties in an anonymous event\n if (event.isAnonymous) {\n this.#platformAdapter.track(event.name, {\n anonymous: true,\n ...event.properties,\n ...event.sensitiveProperties,\n } as AnalyticsEventProperties);\n }\n }\n\n /**\n * Identify a user for analytics.\n *\n * @param traits - User traits/properties\n */\n identify(traits?: AnalyticsUserTraits): void {\n if (!computeEnabledState(this.state)) {\n return;\n }\n\n // Delegate to platform adapter if supported, using the current analytics ID\n if (this.#platformAdapter.identify) {\n this.#platformAdapter.identify(this.state.user_analyticsId, traits);\n }\n }\n\n /**\n * Track a page view.\n *\n * @param name - The name of the UI item being viewed (pages for web, screen for mobile)\n * @param properties - UI item properties\n */\n trackView(name: string, properties?: AnalyticsEventProperties): void {\n if (!computeEnabledState(this.state)) {\n return;\n }\n\n // Delegate to platform adapter\n this.#platformAdapter.view(name, properties);\n }\n\n /**\n * Opt in to analytics.\n * This updates the user's opt-in status.\n */\n optIn(): void {\n this.update((state) => {\n state.user_optedIn = true;\n });\n }\n\n /**\n * Opt out of analytics.\n * This updates the user's opt-in status.\n */\n optOut(): void {\n this.update((state) => {\n state.user_optedIn = false;\n });\n }\n\n /**\n * Opt in to analytics through social account.\n * This updates the user's social opt-in status.\n */\n socialOptIn(): void {\n this.update((state) => {\n state.user_socialOptedIn = true;\n });\n }\n\n /**\n * Opt out of analytics through social account.\n * This updates the user's social opt-in status.\n */\n socialOptOut(): void {\n this.update((state) => {\n state.user_socialOptedIn = false;\n });\n }\n\n /**\n * Get the analytics ID from the controller state.\n *\n * @returns The current analytics ID.\n */\n getAnalyticsId(): string {\n return this.state.user_analyticsId;\n }\n\n /**\n * Get the enabled status from the controller state.\n * This is computed from user state via the state machine.\n *\n * @returns The current enabled status.\n */\n isEnabled(): boolean {\n return computeEnabledState(this.state);\n }\n\n /**\n * Get the opted in status from the controller state.\n *\n * @returns The current opted in status.\n */\n isOptedIn(): boolean {\n return this.state.user_optedIn;\n }\n\n /**\n * Get the social opted in status from the controller state.\n *\n * @returns The current social opted in status.\n */\n isSocialOptedIn(): boolean {\n return this.state.user_socialOptedIn;\n }\n}\n"]}
|
|
@@ -2,7 +2,7 @@ import type { ControllerGetStateAction, ControllerStateChangeEvent } from "@meta
|
|
|
2
2
|
import { BaseController } from "@metamask/base-controller";
|
|
3
3
|
import type { Messenger } from "@metamask/messenger";
|
|
4
4
|
import type { AnalyticsControllerMethodActions } from "./AnalyticsController-method-action-types.cjs";
|
|
5
|
-
import type { AnalyticsPlatformAdapter, AnalyticsEventProperties } from "./AnalyticsPlatformAdapter.types.cjs";
|
|
5
|
+
import type { AnalyticsPlatformAdapter, AnalyticsEventProperties, AnalyticsUserTraits, AnalyticsTrackingEvent } from "./AnalyticsPlatformAdapter.types.cjs";
|
|
6
6
|
/**
|
|
7
7
|
* The name of the {@link AnalyticsController}, used to namespace the
|
|
8
8
|
* controller's actions and events and to namespace the controller's state data
|
|
@@ -14,17 +14,17 @@ export declare const controllerName = "AnalyticsController";
|
|
|
14
14
|
*/
|
|
15
15
|
export type AnalyticsControllerState = {
|
|
16
16
|
/**
|
|
17
|
-
* Whether
|
|
17
|
+
* User domain: Whether the user has opted in to analytics.
|
|
18
18
|
*/
|
|
19
|
-
|
|
19
|
+
user_optedIn: boolean;
|
|
20
20
|
/**
|
|
21
|
-
* Whether the user has opted in to analytics
|
|
21
|
+
* User domain: Whether the user has opted in to analytics through social account.
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
user_socialOptedIn: boolean;
|
|
24
24
|
/**
|
|
25
|
-
* User's UUIDv4 analytics identifier
|
|
25
|
+
* User domain: User's UUIDv4 analytics identifier.
|
|
26
26
|
*/
|
|
27
|
-
|
|
27
|
+
user_analyticsId: string;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* Constructs the default {@link AnalyticsController} state. This allows
|
|
@@ -91,7 +91,8 @@ export declare class AnalyticsController extends BaseController<'AnalyticsContro
|
|
|
91
91
|
* Constructs an AnalyticsController instance.
|
|
92
92
|
*
|
|
93
93
|
* @param options - Controller options
|
|
94
|
-
* @param options.state - Initial controller state (defaults from getDefaultAnalyticsControllerState)
|
|
94
|
+
* @param options.state - Initial controller state (defaults from getDefaultAnalyticsControllerState).
|
|
95
|
+
* For migration from a previous system, pass the existing analytics ID via state.user_analyticsId.
|
|
95
96
|
* @param options.messenger - Messenger used to communicate with BaseController
|
|
96
97
|
* @param options.platformAdapter - Platform adapter implementation for tracking
|
|
97
98
|
*/
|
|
@@ -101,40 +102,67 @@ export declare class AnalyticsController extends BaseController<'AnalyticsContro
|
|
|
101
102
|
*
|
|
102
103
|
* Events are only tracked if analytics is enabled.
|
|
103
104
|
*
|
|
104
|
-
* @param
|
|
105
|
-
* @param properties - Event properties
|
|
105
|
+
* @param event - Analytics event with properties and sensitive properties
|
|
106
106
|
*/
|
|
107
|
-
trackEvent(
|
|
107
|
+
trackEvent(event: AnalyticsTrackingEvent): void;
|
|
108
108
|
/**
|
|
109
109
|
* Identify a user for analytics.
|
|
110
110
|
*
|
|
111
|
-
* @param userId - The user identifier (e.g., metametrics ID)
|
|
112
111
|
* @param traits - User traits/properties
|
|
113
112
|
*/
|
|
114
|
-
identify(
|
|
113
|
+
identify(traits?: AnalyticsUserTraits): void;
|
|
115
114
|
/**
|
|
116
115
|
* Track a page view.
|
|
117
116
|
*
|
|
118
|
-
* @param
|
|
119
|
-
* @param properties -
|
|
117
|
+
* @param name - The name of the UI item being viewed (pages for web, screen for mobile)
|
|
118
|
+
* @param properties - UI item properties
|
|
120
119
|
*/
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* Enable analytics tracking.
|
|
124
|
-
*/
|
|
125
|
-
enable(): void;
|
|
126
|
-
/**
|
|
127
|
-
* Disable analytics tracking.
|
|
128
|
-
*/
|
|
129
|
-
disable(): void;
|
|
120
|
+
trackView(name: string, properties?: AnalyticsEventProperties): void;
|
|
130
121
|
/**
|
|
131
122
|
* Opt in to analytics.
|
|
123
|
+
* This updates the user's opt-in status.
|
|
132
124
|
*/
|
|
133
125
|
optIn(): void;
|
|
134
126
|
/**
|
|
135
127
|
* Opt out of analytics.
|
|
128
|
+
* This updates the user's opt-in status.
|
|
136
129
|
*/
|
|
137
130
|
optOut(): void;
|
|
131
|
+
/**
|
|
132
|
+
* Opt in to analytics through social account.
|
|
133
|
+
* This updates the user's social opt-in status.
|
|
134
|
+
*/
|
|
135
|
+
socialOptIn(): void;
|
|
136
|
+
/**
|
|
137
|
+
* Opt out of analytics through social account.
|
|
138
|
+
* This updates the user's social opt-in status.
|
|
139
|
+
*/
|
|
140
|
+
socialOptOut(): void;
|
|
141
|
+
/**
|
|
142
|
+
* Get the analytics ID from the controller state.
|
|
143
|
+
*
|
|
144
|
+
* @returns The current analytics ID.
|
|
145
|
+
*/
|
|
146
|
+
getAnalyticsId(): string;
|
|
147
|
+
/**
|
|
148
|
+
* Get the enabled status from the controller state.
|
|
149
|
+
* This is computed from user state via the state machine.
|
|
150
|
+
*
|
|
151
|
+
* @returns The current enabled status.
|
|
152
|
+
*/
|
|
153
|
+
isEnabled(): boolean;
|
|
154
|
+
/**
|
|
155
|
+
* Get the opted in status from the controller state.
|
|
156
|
+
*
|
|
157
|
+
* @returns The current opted in status.
|
|
158
|
+
*/
|
|
159
|
+
isOptedIn(): boolean;
|
|
160
|
+
/**
|
|
161
|
+
* Get the social opted in status from the controller state.
|
|
162
|
+
*
|
|
163
|
+
* @returns The current social opted in status.
|
|
164
|
+
*/
|
|
165
|
+
isSocialOptedIn(): boolean;
|
|
138
166
|
}
|
|
139
167
|
export {};
|
|
140
168
|
//# sourceMappingURL=AnalyticsController.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AnalyticsController.d.cts","sourceRoot":"","sources":["../src/AnalyticsController.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,wBAAwB,EACxB,0BAA0B,EAE3B,kCAAkC;AACnC,OAAO,EAAE,cAAc,EAAE,kCAAkC;AAC3D,OAAO,KAAK,EAAE,SAAS,EAAE,4BAA4B;
|
|
1
|
+
{"version":3,"file":"AnalyticsController.d.cts","sourceRoot":"","sources":["../src/AnalyticsController.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,wBAAwB,EACxB,0BAA0B,EAE3B,kCAAkC;AACnC,OAAO,EAAE,cAAc,EAAE,kCAAkC;AAC3D,OAAO,KAAK,EAAE,SAAS,EAAE,4BAA4B;AAOrD,OAAO,KAAK,EAAE,gCAAgC,EAAE,sDAAkD;AAElG,OAAO,KAAK,EACV,wBAAwB,EACxB,wBAAwB,EACxB,mBAAmB,EACnB,sBAAsB,EACvB,6CAAyC;AAK1C;;;;GAIG;AACH,eAAO,MAAM,cAAc,wBAAwB,CAAC;AAIpD;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC;;OAEG;IACH,YAAY,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,kBAAkB,EAAE,OAAO,CAAC;IAE5B;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AA0BF;;;;;;;GAOG;AACH,wBAAgB,kCAAkC,IAAI,wBAAwB,CAM7E;AAkBD;;GAEG;AACH,MAAM,MAAM,iCAAiC,GAAG,wBAAwB,CACtE,OAAO,cAAc,EACrB,wBAAwB,CACzB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAClC,iCAAiC,GACjC,gCAAgC,CAAC;AAErC;;GAEG;AACH,KAAK,cAAc,GAAG,KAAK,CAAC;AAE5B;;GAEG;AACH,MAAM,MAAM,mCAAmC,GAAG,0BAA0B,CAC1E,OAAO,cAAc,EACrB,wBAAwB,CACzB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,mCAAmC,CAAC;AAE5E;;GAEG;AACH,KAAK,aAAa,GAAG,KAAK,CAAC;AAE3B;;;GAGG;AACH,MAAM,MAAM,4BAA4B,GAAG,SAAS,CAClD,OAAO,cAAc,EACrB,0BAA0B,GAAG,cAAc,EAC3C,yBAAyB,GAAG,aAAa,CAC1C,CAAC;AAIF;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAAG;IACvC,KAAK,CAAC,EAAE,OAAO,CAAC,wBAAwB,CAAC,CAAC;IAC1C,SAAS,EAAE,4BAA4B,CAAC;IACxC;;OAEG;IACH,eAAe,EAAE,wBAAwB,CAAC;CAC3C,CAAC;AAEF;;;;;;;;;GASG;AACH,qBAAa,mBAAoB,SAAQ,cAAc,CACrD,qBAAqB,EACrB,wBAAwB,EACxB,4BAA4B,CAC7B;;IAGC;;;;;;;;OAQG;gBACS,EACV,KAAU,EACV,SAAS,EACT,eAAe,GAChB,EAAE,0BAA0B;IAgD7B;;;;;;OAMG;IACH,UAAU,CAAC,KAAK,EAAE,sBAAsB,GAAG,IAAI;IAgC/C;;;;OAIG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,mBAAmB,GAAG,IAAI;IAW5C;;;;;OAKG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,wBAAwB,GAAG,IAAI;IASpE;;;OAGG;IACH,KAAK,IAAI,IAAI;IAMb;;;OAGG;IACH,MAAM,IAAI,IAAI;IAMd;;;OAGG;IACH,WAAW,IAAI,IAAI;IAMnB;;;OAGG;IACH,YAAY,IAAI,IAAI;IAMpB;;;;OAIG;IACH,cAAc,IAAI,MAAM;IAIxB;;;;;OAKG;IACH,SAAS,IAAI,OAAO;IAIpB;;;;OAIG;IACH,SAAS,IAAI,OAAO;IAIpB;;;;OAIG;IACH,eAAe,IAAI,OAAO;CAG3B"}
|
|
@@ -2,7 +2,7 @@ import type { ControllerGetStateAction, ControllerStateChangeEvent } from "@meta
|
|
|
2
2
|
import { BaseController } from "@metamask/base-controller";
|
|
3
3
|
import type { Messenger } from "@metamask/messenger";
|
|
4
4
|
import type { AnalyticsControllerMethodActions } from "./AnalyticsController-method-action-types.mjs";
|
|
5
|
-
import type { AnalyticsPlatformAdapter, AnalyticsEventProperties } from "./AnalyticsPlatformAdapter.types.mjs";
|
|
5
|
+
import type { AnalyticsPlatformAdapter, AnalyticsEventProperties, AnalyticsUserTraits, AnalyticsTrackingEvent } from "./AnalyticsPlatformAdapter.types.mjs";
|
|
6
6
|
/**
|
|
7
7
|
* The name of the {@link AnalyticsController}, used to namespace the
|
|
8
8
|
* controller's actions and events and to namespace the controller's state data
|
|
@@ -14,17 +14,17 @@ export declare const controllerName = "AnalyticsController";
|
|
|
14
14
|
*/
|
|
15
15
|
export type AnalyticsControllerState = {
|
|
16
16
|
/**
|
|
17
|
-
* Whether
|
|
17
|
+
* User domain: Whether the user has opted in to analytics.
|
|
18
18
|
*/
|
|
19
|
-
|
|
19
|
+
user_optedIn: boolean;
|
|
20
20
|
/**
|
|
21
|
-
* Whether the user has opted in to analytics
|
|
21
|
+
* User domain: Whether the user has opted in to analytics through social account.
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
user_socialOptedIn: boolean;
|
|
24
24
|
/**
|
|
25
|
-
* User's UUIDv4 analytics identifier
|
|
25
|
+
* User domain: User's UUIDv4 analytics identifier.
|
|
26
26
|
*/
|
|
27
|
-
|
|
27
|
+
user_analyticsId: string;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* Constructs the default {@link AnalyticsController} state. This allows
|
|
@@ -91,7 +91,8 @@ export declare class AnalyticsController extends BaseController<'AnalyticsContro
|
|
|
91
91
|
* Constructs an AnalyticsController instance.
|
|
92
92
|
*
|
|
93
93
|
* @param options - Controller options
|
|
94
|
-
* @param options.state - Initial controller state (defaults from getDefaultAnalyticsControllerState)
|
|
94
|
+
* @param options.state - Initial controller state (defaults from getDefaultAnalyticsControllerState).
|
|
95
|
+
* For migration from a previous system, pass the existing analytics ID via state.user_analyticsId.
|
|
95
96
|
* @param options.messenger - Messenger used to communicate with BaseController
|
|
96
97
|
* @param options.platformAdapter - Platform adapter implementation for tracking
|
|
97
98
|
*/
|
|
@@ -101,40 +102,67 @@ export declare class AnalyticsController extends BaseController<'AnalyticsContro
|
|
|
101
102
|
*
|
|
102
103
|
* Events are only tracked if analytics is enabled.
|
|
103
104
|
*
|
|
104
|
-
* @param
|
|
105
|
-
* @param properties - Event properties
|
|
105
|
+
* @param event - Analytics event with properties and sensitive properties
|
|
106
106
|
*/
|
|
107
|
-
trackEvent(
|
|
107
|
+
trackEvent(event: AnalyticsTrackingEvent): void;
|
|
108
108
|
/**
|
|
109
109
|
* Identify a user for analytics.
|
|
110
110
|
*
|
|
111
|
-
* @param userId - The user identifier (e.g., metametrics ID)
|
|
112
111
|
* @param traits - User traits/properties
|
|
113
112
|
*/
|
|
114
|
-
identify(
|
|
113
|
+
identify(traits?: AnalyticsUserTraits): void;
|
|
115
114
|
/**
|
|
116
115
|
* Track a page view.
|
|
117
116
|
*
|
|
118
|
-
* @param
|
|
119
|
-
* @param properties -
|
|
117
|
+
* @param name - The name of the UI item being viewed (pages for web, screen for mobile)
|
|
118
|
+
* @param properties - UI item properties
|
|
120
119
|
*/
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* Enable analytics tracking.
|
|
124
|
-
*/
|
|
125
|
-
enable(): void;
|
|
126
|
-
/**
|
|
127
|
-
* Disable analytics tracking.
|
|
128
|
-
*/
|
|
129
|
-
disable(): void;
|
|
120
|
+
trackView(name: string, properties?: AnalyticsEventProperties): void;
|
|
130
121
|
/**
|
|
131
122
|
* Opt in to analytics.
|
|
123
|
+
* This updates the user's opt-in status.
|
|
132
124
|
*/
|
|
133
125
|
optIn(): void;
|
|
134
126
|
/**
|
|
135
127
|
* Opt out of analytics.
|
|
128
|
+
* This updates the user's opt-in status.
|
|
136
129
|
*/
|
|
137
130
|
optOut(): void;
|
|
131
|
+
/**
|
|
132
|
+
* Opt in to analytics through social account.
|
|
133
|
+
* This updates the user's social opt-in status.
|
|
134
|
+
*/
|
|
135
|
+
socialOptIn(): void;
|
|
136
|
+
/**
|
|
137
|
+
* Opt out of analytics through social account.
|
|
138
|
+
* This updates the user's social opt-in status.
|
|
139
|
+
*/
|
|
140
|
+
socialOptOut(): void;
|
|
141
|
+
/**
|
|
142
|
+
* Get the analytics ID from the controller state.
|
|
143
|
+
*
|
|
144
|
+
* @returns The current analytics ID.
|
|
145
|
+
*/
|
|
146
|
+
getAnalyticsId(): string;
|
|
147
|
+
/**
|
|
148
|
+
* Get the enabled status from the controller state.
|
|
149
|
+
* This is computed from user state via the state machine.
|
|
150
|
+
*
|
|
151
|
+
* @returns The current enabled status.
|
|
152
|
+
*/
|
|
153
|
+
isEnabled(): boolean;
|
|
154
|
+
/**
|
|
155
|
+
* Get the opted in status from the controller state.
|
|
156
|
+
*
|
|
157
|
+
* @returns The current opted in status.
|
|
158
|
+
*/
|
|
159
|
+
isOptedIn(): boolean;
|
|
160
|
+
/**
|
|
161
|
+
* Get the social opted in status from the controller state.
|
|
162
|
+
*
|
|
163
|
+
* @returns The current social opted in status.
|
|
164
|
+
*/
|
|
165
|
+
isSocialOptedIn(): boolean;
|
|
138
166
|
}
|
|
139
167
|
export {};
|
|
140
168
|
//# sourceMappingURL=AnalyticsController.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AnalyticsController.d.mts","sourceRoot":"","sources":["../src/AnalyticsController.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,wBAAwB,EACxB,0BAA0B,EAE3B,kCAAkC;AACnC,OAAO,EAAE,cAAc,EAAE,kCAAkC;AAC3D,OAAO,KAAK,EAAE,SAAS,EAAE,4BAA4B;
|
|
1
|
+
{"version":3,"file":"AnalyticsController.d.mts","sourceRoot":"","sources":["../src/AnalyticsController.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,wBAAwB,EACxB,0BAA0B,EAE3B,kCAAkC;AACnC,OAAO,EAAE,cAAc,EAAE,kCAAkC;AAC3D,OAAO,KAAK,EAAE,SAAS,EAAE,4BAA4B;AAOrD,OAAO,KAAK,EAAE,gCAAgC,EAAE,sDAAkD;AAElG,OAAO,KAAK,EACV,wBAAwB,EACxB,wBAAwB,EACxB,mBAAmB,EACnB,sBAAsB,EACvB,6CAAyC;AAK1C;;;;GAIG;AACH,eAAO,MAAM,cAAc,wBAAwB,CAAC;AAIpD;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC;;OAEG;IACH,YAAY,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,kBAAkB,EAAE,OAAO,CAAC;IAE5B;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AA0BF;;;;;;;GAOG;AACH,wBAAgB,kCAAkC,IAAI,wBAAwB,CAM7E;AAkBD;;GAEG;AACH,MAAM,MAAM,iCAAiC,GAAG,wBAAwB,CACtE,OAAO,cAAc,EACrB,wBAAwB,CACzB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAClC,iCAAiC,GACjC,gCAAgC,CAAC;AAErC;;GAEG;AACH,KAAK,cAAc,GAAG,KAAK,CAAC;AAE5B;;GAEG;AACH,MAAM,MAAM,mCAAmC,GAAG,0BAA0B,CAC1E,OAAO,cAAc,EACrB,wBAAwB,CACzB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,mCAAmC,CAAC;AAE5E;;GAEG;AACH,KAAK,aAAa,GAAG,KAAK,CAAC;AAE3B;;;GAGG;AACH,MAAM,MAAM,4BAA4B,GAAG,SAAS,CAClD,OAAO,cAAc,EACrB,0BAA0B,GAAG,cAAc,EAC3C,yBAAyB,GAAG,aAAa,CAC1C,CAAC;AAIF;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAAG;IACvC,KAAK,CAAC,EAAE,OAAO,CAAC,wBAAwB,CAAC,CAAC;IAC1C,SAAS,EAAE,4BAA4B,CAAC;IACxC;;OAEG;IACH,eAAe,EAAE,wBAAwB,CAAC;CAC3C,CAAC;AAEF;;;;;;;;;GASG;AACH,qBAAa,mBAAoB,SAAQ,cAAc,CACrD,qBAAqB,EACrB,wBAAwB,EACxB,4BAA4B,CAC7B;;IAGC;;;;;;;;OAQG;gBACS,EACV,KAAU,EACV,SAAS,EACT,eAAe,GAChB,EAAE,0BAA0B;IAgD7B;;;;;;OAMG;IACH,UAAU,CAAC,KAAK,EAAE,sBAAsB,GAAG,IAAI;IAgC/C;;;;OAIG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,mBAAmB,GAAG,IAAI;IAW5C;;;;;OAKG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,wBAAwB,GAAG,IAAI;IASpE;;;OAGG;IACH,KAAK,IAAI,IAAI;IAMb;;;OAGG;IACH,MAAM,IAAI,IAAI;IAMd;;;OAGG;IACH,WAAW,IAAI,IAAI;IAMnB;;;OAGG;IACH,YAAY,IAAI,IAAI;IAMpB;;;;OAIG;IACH,cAAc,IAAI,MAAM;IAIxB;;;;;OAKG;IACH,SAAS,IAAI,OAAO;IAIpB;;;;OAIG;IACH,SAAS,IAAI,OAAO;IAIpB;;;;OAIG;IACH,eAAe,IAAI,OAAO;CAG3B"}
|