I need help using the webchat v4 from BotFramework from Microsoft to send a message back to the bot through the Javascript.
My bot code is written in C# (.NET Framework) but at some point in my scenario I need to trigger some javascript to ask for the location from the user. What do I do?
- I send an activity of type event
- In the store from the bot, I catch the said activity (here is my code):
const store = window.WebChat.createStore({},
({ dispatch }) => next => action => {
//console.log('action of type ' + action.type);
if (action.type === 'DIRECT_LINE/INCOMING_ACTIVITY') {
var activityOut = action.payload.activity;
if (activityOut.type === 'message') {
// Store message
return next(action);
}
if (activityOut.type === 'event') {
// Handle based on event type
if (activityOut.name === 'getLocation') {
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
else
{
console.log("Geolocation is not supported by this browser.");
}
} else {
return next(action);
}
}
}
else if (action.type === 'DIRECT_LINE/POST_ACTIVITY') {
var activityIn = action.payload.activity;
if (activityIn.type === 'message') {
// Store message
}
return next(action);
}
else {
return next(action);
}
});
- I send the information to the bot (here the location):
function showPosition(position) {
console.log("Latitude: " + position.coords.latitude + " Longitude: " + position.coords.longitude);
var v = position.coords.latitude +';' + position.coords.longitude;
store.dispatch({
type: 'WEB_CHAT/SEND_MESSAGE_BACK',
payload:
{
text: v,
value : v
}
});
}
I also tried with 'WEB_CHAT/SEND_MESSAGE' but it doesn't change anything.
For more information, here is my piece of code to connect to the bot:
window.WebChat.renderWebChat(
{
directLine: window.WebChat.createDirectLine({
secret: 'my secret (will change to a token of course)'
}),
store,
userID: chatUser.id,
username: chatUser.name,
locale: 'fr-FR',
styleOptions
},
document.getElementById('BotChatGoesHere')
);
Here is the exception I get whenever I'm doing this:
Thank you already for anyone that will help me!