react-native-zohosalesiq-mobilisten
Version:
A React Native module for the ZohoSalesIQ Mobilisten SDK
29 lines (22 loc) • 944 B
text/typescript
import { Platform, NativeModules, NativeEventEmitter } from "react-native";
const LINKING_ERROR =
`The package 'react-native-zohosalesiq-mobilisten' 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 following installation steps in our documentation(${"https://www.zoho.com/salesiq/help/developer-section/react-native-sdk-installation.html"}).`
// @ts-expect-error
const isTurboModuleEnabled = global.__turboModuleProxy != null;
const RNZSIQModule = isTurboModuleEnabled
? require('../NativeRNZohoSalesIQ').default
: NativeModules.RNZohoSalesIQMobilisten;
const RNZohoSalesIQ = RNZSIQModule
? RNZSIQModule
: new Proxy(
{},
{
get() {
throw new Error(LINKING_ERROR);
},
}
);
export const RNZohoSalesIQEmitter = new NativeEventEmitter(RNZohoSalesIQ);
export default RNZohoSalesIQ;