Content - Carousel
A carousel is an array of cards, that can be presented horizontally or vertically.
The carousel has the Postback feature, which allows you to send custom data to the Digital Agent server when the user clicks a button in the carousel. Using a hook, you can make your Digital Agent server act upon the received data.
Example​
When our chat user clicks on a button in the carousel, we send a payload with a city code (mtl
 [Montréal] or nyc
 [New York City]).
Then, we create a hook that saves this city code in the memory. The bot then flows to a particular node, depending on the value in memory.
As you can see, the bot first displays a carousel, then a different node based on the value of temp.cityClicked
. The current transitions do not work yet, let's see the hook.
Implementing the Hook​
- Access the Conversation Studio of the selected bot.
- Click the Code Editor tab.
- Next to the Hooks tab, click the + button.
- In the dropdown menu, hover over Event Hooks, then click After Incoming Middleware.
Type the name of your hook.
Don't forget to addÂ
.js
 after the name you typed.Paste the following snippet inside your hook file:
function hook(bp: typeof sdk, event: sdk.IO.IncomingEvent) { /** Your code starts below */ async function hook() { const backs = ['callback', 'postback'] if (backs.includes(event.type)) { let payload = '' switch (event.type) { case 'callback': // For Facebook Messenger payload = event.payload.text break case 'postback': // For Web payload = event.payload.payload } switch (payload) { case 'mtl': event.state.temp.cityClicked = 'mtl' break case 'nyc': event.state.temp.cityClicked = 'nyc' break default: console.log('Unexpected payload') } } } return hook() /** Your code ends here */ }
- Save by clicking the little disk at the bottom left.
Confluence Cloud Migration Alert: Please refer to known issues you may encounter in Confluence Cloud: https://eitdocs.atlassian.net/wiki/x/wDGwAQ