Webchat Event Subscribe

Hello,

I am developing the Webchat v2 for our customer.

I have a problem when adding a code to my HTML test page.
This code allows me to subscribe to events such as "WebChat.messageAdded"

Goal : I would like to display the recent message sent by the agent when the customer minimizes the Webchat window.

Below, the code added according to the documentation (https://all.docs.genesys.com/WID/Current/SDK/GWCBusExtensions)


if(!window._genesys.widgets.extensions){
window._genesys.widgets.extensions = {};}

window._genesys.widgets.extensions["TestExtension"] = function($, CXBus, Common){

var oTestExtension = CXBus.registerPlugin("TestExtension");

oTestExtension.subscribe("WebChat.opened", function(e){});

oTestExtension.subscribe('WebChat.messageAdded', function(e){
console.log('Message added', e.data); })

oTestExtension.publish("ready");

};

Using Developer tools in Chrome, I can see the data/message exchanged between customer and agent using this command "e.data"
But when I refresh my page, it doesn't work. it only works half the time

Can you help fix this error please ?

  • How can I store the Agent data and displays it when Webchat.minimize in invoked ?

Below, two screenshots of the case OK and NOK (error)

Case NOK:

Case OK:

Thank you in advance for your help

Regards,

CHARAF

Hello,

It is not necessary to go up to a Widget Extension. You could just add the following code, after you set the configuration of the different Widgets plugins that you are using.
I mean after setting: window._genesys.widgets.main and window._genesys.widgets.webchat

Here is the code I have used:

var chatWindowIsMinimized = false;

window._genesys.widgets.onReady = function (QuickBus) {

    localWidgetPlugin = CXBus.registerPlugin('CustomChatPlugin');

    localWidgetPlugin.subscribe("WebChat.messageAdded", function (e) {
        if (chatWindowIsMinimized) {
            console.log('Message added while Chat Window is minimized', e.data);
        } else {
            console.log('Message added while Chat Window is opened', e.data);
        }
    });

    localWidgetPlugin.subscribe("WebChat.minimized", function () {
        console.log('Chat Window minimized');
        chatWindowIsMinimized = true;
    });

    localWidgetPlugin.subscribe("WebChat.unminimized", function () {
        console.log('Chat Window unminimized');
        chatWindowIsMinimized = false;
    });

    localWidgetPlugin.subscribe("WebChatService.messageReceived", function (e) {
        if (chatWindowIsMinimized) {
            console.log('Message received while Chat Window is minimized', e.data);
        } else {
            console.log('Message received while Chat Window is opened', e.data);
        }
    });

};

Few comments:

  • WebChat.messageAdded is triggered when adding a message to the Chat Transcript in the User Interface (a message from the agent or a message from the customer).
  • WebChatService.messageReceived is triggered when receiving a message at the protocol level (a message from the agent or a message from the customer).
  • When you restore the chat (refresh of the page as an example), if the chat window was minimized before the refresh, the Widgets will restore it as it is (meaning minimized). You will get the WebChat.minimized event. The only thing is that you may have messageAdded/messageReceived before or after that event (the Widgets retrieving the existing messages from the server - after reconnecting the session).

You probably have noticed it already, but when messages are received while the Chat window is minimized, the Widgets natively support the display of a red icon/bubble which shows the number of unread messages (messages received while minimized).

If you plan to display the messages elsewhere while the Chat Window is minimized, you will have to leverage regular/standard HTML/HTML5 elements.

Hope this helps.

Regards,

Thank you @Jerome.Saint-Marc

I appreciate your explanation and support

As you recommended, after I added you code to mine, it works only when I commented the row 155 (below my screen)

I can see the messages exchanged between agent and customer in Developer tools as you described, but I have noticed that the widget lost its own 'light' theme, it looks like that the theme is not fully loaded.

Here is my Webchat when commenting the line 155 :

Webchat without commenting the line 155 (no messages displayed between agent & customer - it seems like the code added is not working)

Since it didn't work at the first time, I am wondering if my code is in the right place ? all my code is placed in the section and the body is empty. I don't know if it's okay or not ?

Thank you again for your help

Best regards,

CHARAF

Comment/remove line 154. It should not be there.

Uncomment/Put back line 155.

Before 155, add a reference to the stylesheet:
<link id="genesys-cx-widget-styles" href="https://apps.mypurecloud.com/widgets/9.0/widgets.min.css" type="text/css"
rel="stylesheet" />

As an additional comment, I personally prefer to separate the html page/code from what's related to the widget. Just to make it easier to maintain.

In order to do so, I have the following in my html <head>:

<link id="genesys-cx-widget-styles" href="https://apps.mypurecloud.com/widgets/9.0/widgets.min.css" type="text/css"
        rel="stylesheet" />

    <script src="https://apps.mypurecloud.com/widgets/9.0/cxbus.min.js" onload="javascript:
				CXBus.configure({debug:true,pluginsPath:'https://apps.mypurecloud.com/widgets/9.0/plugins/'});
				CXBus.loadFile('pc_config.js').done(function(){
					CXBus.loadPlugin('widgets-core');
				});
			">
            </script>

pc_config.js is where I define the widgets config and customization. It is just a file stored at the same level than my html (relative path). You can also put in in subdirectory (like "config") and then change to CXBus.loadFile('config/pc_config.js') in the above code.

I have cleaned/separated the widget configuration from my HTML code as you recommended.

I have created a pc_config.js holding all the widget config and the head now is holding these information:

pc_config.js :

My widget doesn't appear when I refresh my HTML page...

Am I missing something in the Head ?

Thank you again for you support Jerome

Regards,

CHARAF

Don't add pc_config.js via a <script> (line 11)
I can't see in your screenshot what you are doing in line 12 (if it references the pc_config.js).

To summarize - in your html, remove your lines 10/11/12
And replace them with the exact same code I pushed above.
I mean with this:

<link id="genesys-cx-widget-styles" href="https://apps.mypurecloud.com/widgets/9.0/widgets.min.css" type="text/css"
        rel="stylesheet" />

    <script src="https://apps.mypurecloud.com/widgets/9.0/cxbus.min.js" onload="javascript:
				CXBus.configure({debug:true,pluginsPath:'https://apps.mypurecloud.com/widgets/9.0/plugins/'});
				CXBus.loadFile('pc_config.js').done(function(){
					CXBus.loadPlugin('widgets-core');
				});
			">
            </script>

Also, there is an error in your config.
There is no window._genesys.widgets.main.plugins configuration and the plugin names are not correct.

It is window._genesys.widgets.main.preload = [
"webchat"
];

No need to add "webchatservice". "webchat" preload will trigger the loading of the WebChatService.

Thank you Jerome for your reactivity and help

I have replace the code in the < head > with the following :

Here is the line 9 : <script src="https://apps.mypurecloud.de/widgets/9.0/cxbus.min.js" onload="javascript:CXBus.configure({debug:true,pluginsPath:'https://apps.mypurecloud.de/widgets/9.0/plugins/'});CXBus.loadFile('pc_config.js').done(function(){CXBus.loadPlugin('widgets-core');});"></script>

pc-config.js with the correction of the plugin :

I got this error + the widget still not loaded in my page :

Is it normal that in my HTML page, only the head section contains information and the rest is empty (body) ?

how and where can I invoke the pc_config.js ? not using a script tag as you mentioned !

Many thanks for your time & support

Regards,

CHARAF

  1. "how and where can I invoke the pc_config.js ? not using a script tag as you mentioned !"
    --> Line 9 as I mentioned in my previous answers: contains this "CXBus.loadFile('pc_config.js')"

  2. favicon.ico error
    This has nothing to do with the widget but with your page.
    https://www.html.am/html-codes/image-codes/html-favicon-code.cfm

  3. You still haven't replaced lines as I said you had to.......

Remove line 7 in your html!!!!!

Replace line 8 with the one I had posted:

\<link id="genesys-cx-widget-styles" href="https://apps.mypurecloud.com/widgets/9.0/widgets.min.css" type="text/css"
        rel="stylesheet" />
  1. Chome usually complains when you have mixed content - HTTP and HTTPS
    Your web site is apparently on http://127.0.0.1:8080 (HTTP).
    And the communications with PureCloud for Chat is over HTTPS

  2. Starting the chat
    You can either enable the native webchat side button or auto-invite in the web chat config.
    window._genesys.widgets.webchat.chatButton.enabled = true
    window._genesys.widgets.webchat.autoInvite.enabled = true

or add a custom button (HTML button) that will invoke WebChat command on click.
<button type="button" id="chat-button-simple" onclick="CXBus.command('WebChat.open');">Start Chat (simple)</button>

@Jerome.Saint-Marc Thank you for your time and help

it's working fine now

Appreciate your support

Regards,

CHARAF

Hello Charaf,

Glad to hear you were able to make it work.

Jerome

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.