List of available message formats in Slack channel
Text
Slack has partial markdown support in text components.
say "His palms are sweaty, knees weak, arms are heavy"sayText("There's vomit on his sweater already, mom's spaghetti")say "He's _nervous_, but **on the surface** he looks ~calm and ready~"
Typing, Wait
In Slack, Wait and Typing have the same behavior. No typing indicator exists in slack, so the bot will simply wait for the duration given (in milliseconds) before the next message is processed.
sayTyping(1000)sayWait(1000)
Question, Button
Slack makes it possible to style your buttons and define a custom payload that is sent to the chatbot on click. Available styles are "danger" and "primary". Slacks recommends to only use primary on one button in a list, and danger even less often.
sayQuestion("Hi! My name is:",buttons=[Button("What?", payload="btn1"),Button("Who?", payload="btn2", style="danger"),Button("Slim Shady", payload="btn3", style="primary"), ])holdsay "User selected: {{event}}"
CSML Studio will also take advantage of Slack's features to update the content of the component when an option is chosen, so that the user's choice appears clearly after they select an option.
Image
Send the URL of an image. Slack will attempt to display it.
sayImage("http://placekitten.com/500/500",title="Nice kitten", // optional alt="this is a photo of a cute kitten", // optional)
Video, Audio, Url
Generic files will render as standard URLs. When it can, Slack will try to display the URL nicely, such as the Wikipedia link below.
A Carousel is essentially a collection of Card elements A single Card will display as a Carousel of 1 element.
do card1 =Card("The Marshall Mathers LP", subtitle="Release date: May 23, 2000", image_url="https://upload.wikimedia.org/wikipedia/en/a/ae/The_Marshall_Mathers_LP.jpg", buttons=[Button("Listen to this album", payload="marshallmatherslp1"),Url("https://www.eminem.com/", text="Visit eminem.com"), ])do card2 =Card("The Slim Shady LP", subtitle="Release date: February 23, 1999", image_url="https://upload.wikimedia.org/wikipedia/en/3/35/Eminem_-_The_Slim_Shady_LP_CD_cover.jpg", buttons=[Button("Listen to this album", payload="theslimshadylp"),Url("https://www.eminem.com/", text="Visit eminem.com"), ])do card3 =Card("The Marshall Mathers LP 2", subtitle="Release date: November 5, 2013", image_url="https://upload.wikimedia.org/wikipedia/en/8/87/The_Marshall_Mathers_LP_2.png", buttons=[Button("Listen to this album", payload="marshallmatherslp2"),Url("https://www.eminem.com/", text="Visit eminem.com"), ])sayCarousel(cards=[card1, card2, card3])
You can add several Button or Url buttons to your Card components.
Input, Textarea
// the same works with Textarea()sayInput(title="Enter something below", description="This is a simple text field, and you can say whatever you want", placeholder="Whatever you want", submit_label="Submit",)
Radio, Dropdown
// the same works with Dropdown()sayRadio( // Mandatoryoptions= [Button("Cats 🐕", payload="meow"),Button("Dogs 🐶", payload="woof"),Button("Hot dogs 🌭", payload="yummy"), ], // Optional fields: title="What's your favorite animal?", description="You can only pick one!",)
Multiselect, Checkbox
// the same works with Multiselect()sayCheckbox( // Mandatoryoptions= [Button("Cats 🐕", payload="meow"),Button("Dogs 🐶", payload="woof"),Button("Hot dogs 🌭", payload="yummy"), ], // Optional fields: title="What's your favorite animal?", description="You can pick many!",)
Calendar
sayCalendar(title="Select your date of birth",submit_label="OK")
Full reference
For a complete reference of all the code presented on this page, refer to the following gist:
Event Metadata
A sample _metadata for an incoming event will be similar to the following object: