Package Exports
- react-native-zendesk-chat-tmc
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-zendesk-chat-tmc) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-native-zendesk-chat
Simple module that allows displaying Zopim Chat from Zendesk for React Native.
VERSIONS
For RN version higher than 0.59 use version >= 0.3.0
For RN version lower than 0.59 use version <= 0.2.2
Known Issues
Getting Started
Follow the instructions to install the SDK for iOS and Android.
Manual install
With npm:
npm install react-native-zendesk-chat --saveor with yarn:
yarn add react-native-zendesk-chat
iOS
Add a reference to your Podfile:
pod 'RNZendeskChat', :git => 'https://github.com/robertmurray/react-native-zendesk-chat.git'then run pod install:
(cd ios; pod install)or manually:
In Xcode, drag and drop
node_modules/react-native-zendesk-chat/RNZendeskChat.mandnode_modules/react-native-zendesk-chat/RNZendeskChat.hinto your project.Configure
ZDCChatinAppDelegate.m:
#import <ZDCChat/ZDCChat.h>
[ZDCChat initializeWithAccountKey:@"YOUR_ZENDESK_ACCOUNT_KEY"];Android
- Open up
android/app/main/java/[...]/MainApplication.java
- Add
import com.taskrabbit.zendesk.*;to the imports at the top of the file - Add
new RNZendeskChatPackage(this)to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:
include ':react-native-zendesk-chat'
project(':react-native-zendesk-chat').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-zendesk-chat/android')- Insert the following lines inside the dependencies block in
android/app/build.gradle:
compile project(':react-native-zendesk-chat')- Configure
ZopimChatinandroid/app/main/java/[...]/MainActivity.java
ZopimChat.init("YOUR_ZENDESK_ACCOUNT_KEY").build();Usage
In your code add:
import ZendeskChat from 'react-native-zendesk-chat
...
ZendeskChat.startChat({
name: user.full_name,
email: user.email,
phone: user.mobile_phone,
tags: ['tag1', 'tag2'],
department: "Your department"
});TODO
- Allow setting form configuration from JS
- Add examples
License
React Native is MIT licensed, as found in the LICENSE file.