Skip to content

Mbamin/react-chat

 
 

Repository files navigation

React Chat

A react-based chat widget built to interact seamlessly with Voiceflow's runtime.

Installation

yarn add @voiceflow/react-chat # or npm install @voiceflow/react-chat

Configuration

interface Configuration { verify: { /**  * the ID of your voiceflow project, the project must have `apiPrivacy: public`  * find this under integrations tab  */ projectID: string; }; /**  * [optional] userID to track users and persist/continue sessions  */ userID?: string; /**  * [optional] user metadata for transcripts  */ user?: { name?: string; image?: string; }; /**  * [optional] the version ID of your project, defaults to 'development'  * can be a 'development' or 'production' alias or a specific versionID  */ versionID?: string; /**  * [optional] voiceflow dialog management runtime endpoint  * defaults to https://general-runtime.voiceflow.com  */ url?: string; /**  * [optional] override configured assistant definitions on integrations tab  */ assistant?: { title?: string; description?: string; image?: string; color?: string; }; }

Browser Usage

You can use a simple JavaScript snippet to add the chat widget to any HTML page. Ensure that the verify: { projectID: ... } field is replaced with your Voiceflow projectID.

<script type="text/javascript"> (function (d, t) { var v = d.createElement(t), s = d.getElementsByTagName(t)[0]; v.onload = function () { window.voiceflow.chat.load({ verify: { projectID: "XXXXXX..." }, }); }; v.src = "https://cdn.voiceflow.com/widget/bundle.mjs"; v.type = "text/javascript"; s.parentNode.insertBefore(v, s); })(document, "script"); </script>

Browser API

When the react-chat script is loaded it will register an API as window.voiceflow.chat. It has the following interface:

interface VoiceflowAPI { // (re)load the chat // chat will not be visible until called load: (config: Configuration) => void; // open the chat open: () => void; // close the chat close: () => void; // hide the chat + button hide: () => void; // show the chat + button show: () => void; // send custom interaction to voiceflow interact: (action: RuntimeAction) => void; }

Example call:

window.voiceflow.chat.show();

Running Locally

To run the chat locally you will need to create a local .env file with your configuration. This will include our Voiceflow project ID and the runtime endpoint.

Create a new file packages/widget/.env.development.local with the following contents:

VITE_VF_PROJECT_ID='< your project ID >' VITE_VF_RUNTIME_URL='https://general-runtime.voiceflow.com' 

Now that the chat is configured, let's install dependencies and run the development server.

# install dependencies yarn install # build all packages yarn build # run dev server yarn dev

Once the server is running it should automatically open your browser with the chat widget.

About

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 95.8%
  • CSS 1.4%
  • JavaScript 1.3%
  • HTML 1.2%
  • Shell 0.3%