Hi there,
I currently have the chat feature included on all of my pages. My config file (GenesysChatConfig.js) looks like this:
window._genesys = {
widgets : {
main : {
theme : 'light',
preload: ['webchat'],
},
webchat : {
emojis : true,
autoInvite : {
enabled : true,
timeToInviteSeconds : 300,
inviteTimeoutSeconds : 15,
},
actionsMenu : true,
uploadsEnabled : true,
confirmFormCloseEnabled : true,
charCountEnabled : true,
chatButton: {
enabled: false
},
transport : {
type : 'purecloud-v2-sockets',
dataURL : 'https://api.mypurecloud.com',
deploymentKey : [KEY_HERE],
orgGuid : [ORG_GUID_HERE],
interactionData : {
routing : {
targetType : 'QUEUE',
targetAddress : [CHAT_QUEUE_NAME_HERE],
priority : 2
}
}
},
userData : {
addressStreet : dataToStartChat.address,
addressCity : dataToStartChat.city,
addressPostalCode : dataToStartChat.zip,
addressState : dataToStartChat.state,
phoneNumber : dataToStartChat.phone + ' Ext: ' + dataToStartChat.extension,
phoneType : 'Work',
// These fields should be provided via advanced
// configuration
// firstName: first,
// lastName: last,
// email: email,
// subject: 'Chat subject'
},
// form : {
// autoSubmit : false,
// firstname : dataToStartChat.firstName,
// lastname : dataToStartChat.lastName,
// email : dataToStartChat.email,
// subject : ""
// },
form : {
wrapper : "<table></table>",
inputs : [
{
id : "cx_webchat_form_firstname",
name : "firstname",
maxlength : "100",
placeholder : "@i18n:webchat.ChatFormPlaceholderFirstName",
label : "@i18n:webchat.ChatFormFirstName",
value: dataToStartChat.firstName,
validateWhileTyping: true,
validate: function(){
return document.getElementById('cx_webchat_form_firstname') === null || document.getElementById('cx_webchat_form_firstname').value !== "";
}
},
{
id : "cx_webchat_form_lastname",
name : "lastname",
maxlength : "100",
placeholder : "@i18n:webchat.ChatFormPlaceholderLastName",
label : "@i18n:webchat.ChatFormLastName",
value: dataToStartChat.lastName,
validateWhileTyping: true, // default is false
validate: function(){
return document.getElementById('cx_webchat_form_lastname') === null || document.getElementById('cx_webchat_form_lastname').value !== "";
}
},
{
id : "cx_webchat_form_email",
name : "email",
maxlength : "100",
placeholder : "@i18n:webchat.ChatFormPlaceholderEmail",
label : "@i18n:webchat.ChatFormEmail",
value: dataToStartChat.email,
},
{
id : "my_custom_subject_field",
name : "customField2",
maxlength : "100",
placeholder : "How can we help you?",
label : "Subject",
} ]
},
}
}
};
Which is loaded in like this on each page:
<script src="https://apps.mypurecloud.com/widgets/9.0/cxbus.min.js"
onload="javascript:CXBus.configure({debug:false,pluginsPath:'https://apps.mypurecloud.com/widgets/9.0/plugins/'});
CXBus.loadFile('<%=request.getContextPath()%>/resources/js/GenesysCloudChat/GenesysChatConfig.js')
.done(function(){CXBus.loadPlugin('widgets-core')});">
</script>
I then have a custom button that I show on each page that executes the following code when clicked:
const customPlugin = CXBus.registerPlugin('Custom'); customPlugin.command('WebChat.open');
This works fine when the customer first starts a chat, but when I navigate to a different page in my application (with an ongoing chat still open), the chat doesn't automatically re-open and calling the "customPlugin.command('WebChat.open');" command again doesn't re-open the existing chat (or start a new chat, for that matter).
I can see all of the cookies are still set correctly.
Any ideas what I'm missing?
Thanks!
-Colton