# SDK
SDK class can be imported from richWebChat
global variable.
# Example
var SDK = richWebChat.Sdk;
After that you will be able to call SDK methods:
on
off
emit
sendGlobalCommand
# Example
SDK.on('receive-message', function (message) {
console.log('new message ->', message)
});
# on
method
Listen for an event and executes callback function.
# Event names
receive-message
send-message
send-event
start-session
session-end
toggle-chat-window
# Arguments
{string} eventName
- name of the event, see above list of all events{Function} callback
- Function that will be executed after event is fired
# receive-message
event
Listen for a message from a bot and executes callback function. The callback will receive incoming message object.
# Example
SDK.on('receive-message', function (message) {
console.log('new message ->', message)
});
# Callback function params
Callback function recieves message
parameter which is an object with message data.
TIP
Param name can be different than message, this name is used only for demo purpose.
TIP
Note that different steps has different message
structures.
# Request Response (RWC) message
structure:
{
id: '', // message ID
message: '', // message text
medias: [], // message medias (images, files, etc)
stepId: '', // step ID that sent this message
time: 1622207001083, // message time
useCustomAnswer: true / false, // whether to use custom user answer function
userAnswerFunction: Function // function that returns message that will be used as user reply to this message
userAnswerFunctionParams: {} // params that will be passed to `userAnswerFunction`
isSuggestionInput: true / false, // whether text input has predefined answers
suggestionsType: 'emty' / 'list' / 'dynamic', // if step has manual user response defined its type
}
# Send Message (RWC) message
structure:
{
id: '', // message ID
message: '', // message text
medias: [], // message medias (images, files, etc)
stepId: '', // step ID that sent this message
time: 1622207001083, // message time
}
# Request Web Form Response (RWC) message
structure:
{
id: '', // message ID
message: '', // message text
stepId: '', // step ID that sent this message
time: 1622207001083, // message time
form: {
showInModal: true / false, // whether to show form in modal or in message bubble
url: '' // web form URL
}
}
# send-message
event
Fires when user replies to bot. The callback will recieve user answer.
# Example
SDK.on('send-message', function (reply) {
console.log('your reply ->', reply)
});
# Callback function params
TIP
Note that each component has its unique reply structure.
The structure of the reply will be the same as output except manual user reply.
# Menual user answer reply
structure
{
answerType: 'text-leg',
message: '',
userReply: '',
userText: ''
}
# send-event
event
-
# start-session
event
Fires when user starts new conversation with a bot.
# Example
SDK.on('start-session', function (session) {
console.log('new conversation ->', session)
});
# Callback function params
{
sessionId: '' // currrent session id
}
# session-end
event
Fires when conversation with a bot is ended.
# Example
SDK.on('session-end', function (session) {
console.log('conversation ended ->', session)
});
# Callback function params
{
sessionId: '' // currrent session id that was ended
}
# toggle-chat-window
event
Fires when user toggles embedded chat
# Example
SDK.on('toggle-chat-window', function (state) {
console.log('embedded chat open state ->', state)
});
# Callback function params
{
isOpen: true / false // true = open | false = closed
}
# off
method
Removes custom event listener(s).
# Arguments
{string} eventName
{Function} callback
# Example
function handleIncomingMessage(message) {
console.log('new message ->', message)
});
// Set event listener
SDK.on('receive-message', handleIncomingMessage);
// remove event listener
SDK.off('receive-message', handleIncomingMessage);
WARNING
When removing event listener provide the same function refference that was used when adding event listener.
# This code will not remove event listener
SDK.on('receive-message', function (message) {
console.log('new message ->', message)
});
SDK.off('receive-message', function (message) {
console.log('new message ->', message)
});
More information about this can be found here (opens new window)
# emit
method
Allows to emit custom events.
{string} eventName
{any} payload
# Example
SDK.emit('custom-event', { payload: [1,2,3] });
After emmiting this event we can subsribe to it using on
method
# Example
SDK.on('custom-event', function (data) { console.log('data ->', data) });
# sendGlobalCommand
method
Send global command.
# Arguments
{string} name
{any} data
# Code example
var SDK = richWebChat.Sdk;
SDK.sendGlobalCommand({
name: '', //global command name
data: {} // data that will be passed to flow, can be any type
});
# Example
# HTML page
HTML page with button that will trigger global command.
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://chat.staging.onereach.ai/lib/richWebChat.umd.min.js"></script>-->
<link rel="stylesheet" href="https://chat.staging.onereach.ai/lib/richWebChat.css" />
</head>
<body>
<div id="rwc"></div>
<button id="btn">trigger global command</button>
<script>
// import RWC SDK
var SDK = richWebChat.Sdk;
// function that will trigger SDK `sendGlobalCommand` method
function onClick() {
SDK.sendGlobalCommand({ name: 'help' });
}
const btn = document.getElementById('btn');
// set listener to button to trigger `onClick` function
btn.addEventListener('click', onClick)
document.addEventListener("DOMContentLoaded", function () {
var RWC = richWebChat.default
if (app) { app.destroy(); }
var app = new RWC({
// ...
// embedded chat settings
// ...
});
});
</script>
</body>
</html>
TIP
Note that HTML page example version does not have chat setup settings and neccessary tags in <head>
section.
# Steps configuration
Wait for Chat | Process Global Command |
---|---|
After click on button SDK will trigger global command and send message to the chat.
# Passing custom data when triggering global command
sendGlobalCommand
method in SDK has data
parameter that allows to provide any data that will be passed to Process Global Command (RWC) step merge field.
# Example
SDK.sendGlobalCommand({
name: 'globalComamndName',
data: { someData: 'some text' }
});
// or
SDK.sendGlobalCommand({
name: 'globalComamndName',
data: 'just text'
});
# End session in embed chat from Custom Request Response or inner SDK
To end current session and close embed chat:
# Example
SDK.endSession();
// or in Custom Template
window.SDK.endSession();
# Accesing SDK in JavaScript fields
When writing JavaScript code in Custom template input component or customizing header/footer you can access SDK via RWC
global JavaScript variable.
# Example:
// some JS logic
// ...
RWC.on('receive-message', function (message) {
console.log('new message ->', message)
});
// ...