This section describes how you can pass in your own message types to be rendered in the WebChat application.
WebChat will allow you to pass in your own components to render as message types in the message list. This means that you could, for example, write your own Location message using a maps plugin of your choice and use it to override the default OpenDialog Location message, which requires a Google Maps API key.
Or you could use custom components to render message types outside of the current types supplied by OpenDialog. However, you will also need to set up a backend data source that provides the correct message data for WebChat to render in your components.
For more info about the current message types, response types and their data structure, explore our ChatAPI documentation.
How to create & use your custom components
Any component passed into the WebChat application must be written as a Vue 3 single file component. How you create and import your components into your application beyond that is entirely up to you.
Every message-type component that you create can receive the following properties, and emit the following events:
<your-message-component :msg=""// Message object - the current message object. See the API docs for more details :theme="" // Theme object - taken from the theme/colours that you passed into your settings or set in the interface settings section of OpenDialog
:latest="" // boolean - derived dynamically from the current message history. Indicates whether the message is the latest one in the list
:errorTemplates=""// object - uses settings.messages from the config endpoint :language=""// string - the currently selected language code @submit="(data: any) => onComponentSubmit(data.type, data.data)" @cancel="onCancel(message)"/>
A working example
This is an example of a very basic message component that renders some text and emits a submit event when the button is clicked:
LocationMessage.vue
<template> <divclass="location-message"> <p>{{ msg.data.text }}</p> <small>I'm a basic component being used to override the default location message</small> <buttonclass="submit"@click="handleSubmit">Submit</button> </div></template><scriptsetuplang="ts">exportinterfaceILocationMessage { author:string data: { text:string callback_id:string attribute_name:string api_key:string [key: string]:any } [key: string]:any}exportinterfaceILocationProps { msg:ILocationMessage theme?: {[key:string]:any} latest?:boolean errorTemplates?: {[key:string]:any} language?:string}constprops=withDefaults(defineProps<ILocationProps>(), {msg: () => {return {} asILocationMessage }})constemit=defineEmits(['submit'])consthandleSubmit= () => {constdata= { text:'You clicked the submit button!', callback:props.msg.data.callback_id, }/** * @eventsubmit * @type{object} * @property{object} data - The data you wish to send back to ChatApi * @property{string} type - The response type you wish to send. See API docs for more details */emit('submit', {data, type:'button'})}</script><stylescoped>.location-message {color:green;}</style>
Now that we have a component, we need to provide WebChat with a name for it and some optional other values. At it's simplest, this will look as follows:
main.js
import { LocationMessage } from'my-library'// this will depend on your setupimport type { Component } from 'vue' // you don't need Vue as a dependency at this point. This is just importing the Component type for our interface
interfaceCustomComponent { name:string component:Component fullScreen?:Boolean autoShow?:Boolean// only applicable if overriding the esign or location message showMessage?:Boolean// only applicable if overriding the fp-form message}constcomponentData:Array<CustomComponent> = [ { name:'location',// must be the same as the `type` in the message data. component: LocationMessage, fullScreen:true, autoShow:false }]
The name property must be the same as the message type property in the data. This is how WebChat maps message components to the data received from the API.
Finally, we can pass in our custom components when we initialise our WebChat widget:
At this point, when WebChat receives a message from ChatApi with a type of location , it will render the custom component rather than the default one provided by OpenDialog.