@tcn/omni-chat-client
A react native component for TCN's omni chat client
Installation
Install the module in your project with:
yarn add @tcn/omni-chat-client
Also be sure to install the safe area context peer dependency (see package.json).
Configure and render the chat client component
Import the OmniChatClient
component from the library.
In the config
prop, pass an object with properties for an API key, url, and some CSS colors, as shown in the example snippet below.
Also be sure to place the OmniChatClient
component somewhere within a SafeAreaProvider
component from react-native-safe-area-context
.
import { OmniChatClient } from "@tcn/omni-chat-client";
import {
KeyboardAvoidingView,
} from "react-native";
export function YourComponent() {
return (
<SafeAreaProvider>
{* ... *}
<OmniChatClient
config={{
apiKey:
"YOUR API KEY HERE - CAN BE FOUND IN OMNIBOSS CAMPAIGN OVERVIEW",
url: "YOUR URL - CAN BE FOUND IN OMNIBOSS CAMPAIGN OVERVIEW",
mainColor: "YOUR COLORS HERE",
headingColor: "YOUR COLORS HERE",
paragraphColor: "YOUR COLORS HERE",
}}
/>
</SafeAreaProvider>
);
}
Z Stack Positioning
You can optionally pass a zIndex
prop to the OmniChatClient
component to set the z-index of the chat client component. This is useful if the default value doesn't place the component in the correct z position for your app.
<OmniChatClient
config={{
}}
zIndex={100}
/>
Deployment
Staging
- Create feature branch with your version title
release/7.5.x
for example - Run pipeline,
deploy-staging
job will run
Production
- Merge feature branch to master
- Tag the new version, pipeline will deploy to production
FAQ
Why is the chat client component cut off when the keyboard is open?
Be sure to use adjustResize
for the windowSoftInputMode
in your Android Manifest file (or in app.json
- expo.android.softwareKeyboardLayoutMode
- if using Expo).
Contributing
There is currently no way for someone to contribute to this project, nor is there any issue tracking publicly.