openreplay/tracker/tracker-reactnative/src/index.tsx
2024-06-21 15:53:21 +02:00

96 lines
2.5 KiB
TypeScript

import {
NativeModules,
Platform,
requireNativeComponent,
type TextInputProps,
UIManager,
type ViewProps,
} from 'react-native';
import network from './network';
import type { Options as NetworkOptions } from './network';
const { ORTrackerConnector } = NativeModules;
const LINKING_ERROR =
`The package '@openreplay/react-native' doesn't seem to be linked. Make sure: \n\n` +
Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) +
'- You rebuilt the app after installing the package\n' +
'- You are not using Expo Go\n';
interface Options {
crashes?: boolean;
analytics?: boolean;
performances?: boolean;
logs?: boolean;
screen?: boolean;
debugLogs?: boolean;
}
interface IORTrackerConnector {
startSession: (
projectKey: string,
optionsDict: Options,
projectUrl?: string
) => void;
setMetadata: (key: string, value: string) => void;
event: (name: string, payload?: string) => void;
setUserID: (userID: string) => void;
userAnonymousID: (userID: string) => void;
networkRequest: (
url: string,
method: 'GET' | 'POST' | 'PUT' | 'DELETE',
requestJSON: string,
responseJSON: string,
status: number,
duration: number
) => void;
}
const RnTrackerTouchTrackingView =
UIManager.getViewManagerConfig('RnTrackerTouchView') != null
? requireNativeComponent<ViewProps>('RnTrackerTouchView')
: () => {
throw new Error('RnTrackerTouchView; ' + LINKING_ERROR);
};
const ORTrackedInput =
UIManager.getViewManagerConfig('RnTrackedInput') != null
? requireNativeComponent<TextInputProps>('RnTrackedInput')
: () => {
throw new Error('RnTrackedInput; ' + LINKING_ERROR);
};
const ORSanitizedView =
UIManager.getViewManagerConfig('RnSanitizedView') != null
? requireNativeComponent<ViewProps>('RnSanitizedView')
: () => {
throw new Error('RnSanitizedView; ' + LINKING_ERROR);
};
export function setMetadata(key: string, value: string) {
ORTrackerConnector.setMetadata(key, value);
}
export function setUserID(userID: string) {
ORTrackerConnector.setUserID(userID);
}
let patched = false;
const patchNetwork = (
ctx = global,
isServiceUrl = () => false,
opts: Partial<NetworkOptions>
) => {
if (!patched) {
network(ctx, ORTrackerConnector.networkRequest, isServiceUrl, opts);
patched = true;
}
};
export default {
tracker: ORTrackerConnector as IORTrackerConnector,
patchNetwork: patchNetwork,
ORTouchTrackingView: RnTrackerTouchTrackingView,
ORTrackedInput: ORTrackedInput,
ORSanitizedView: ORSanitizedView,
};