Atomist utilities for creating formatted Slack messages
npm install @atomist/slack-messages

[Node.js][node] module that helps to create well-formatted
[Slack][slackhq] messages sent through the @atomist bot from your
software delivery machine (SDM). This module also facilitates adding
actions to your Slack messages that execute SDM commands.
Support for sending Slack Block messages is also supported.
See the [Atomist documentation][atomist-doc] for more information on
what SDMs are and what they can do for you using the Atomist API for
software.
[atomist-doc]: https://docs.atomist.com/ (Atomist Documentation)
[slackhq]: https://slack.com/ (Slack)
Construct a message as a plain map following the [Slack message
formatting API][slack-api].
[slack-api]: https://api.slack.com/docs/message-formatting (Slack message formatting API)
``typescript`
import { SlackMessage } from "@atomist/slack-messages";
// A very simple message
const msg: SlackMessage = { text: "Simple message" };
`typescript${url(user.url, "@" + user.name)} opened issue: ${url(issue.url, issue.title)}
import {
escape,
SlackMessage,
url,
} from "@atomist/slack-messages";
// Here is an example of a message with a Slack action (button).
const msg: SlackMessage = {
text: ,`
attachments: [
{
text: escape(issue.body),
fallback: escape(issue.title),
mrkdwn_in: ["text"],
actions: [
{
text: "Close issue",
type: "button",
name: "closeissue",
value: "somebuttonid",
},
],
callback_id: "cllbck1",
},
],
};
And then render the message with render(msg). This will construct a
JSON string representation of the message:
`typescript
import { render } from "@atomist/slack-messages"
const renderedMsg = render(msg);
`
or to produce a pretty JSON string:
`typescript`
const renderedMsg = render(msg, true);
This will produce the following JSON string (pretty version):
`json`
{
"text": "
"attachments": [
{
"text": "This is a very important issue with body containing <unsafe> characters and even &",
"fallback": "This issue title contains <unsafe> characters and &",
"mrkdwn_in": [
"text"
],
"callback_id": "cllbck1",
"actions": [
{
"text": "Close issue",
"type": "button",
"name": "rug",
"value": "somebuttonid"
}
]
}
]
}
Note that the render function will automatically assign a uniquecallback_id to each attachments that has actions. But, if youcallback_id
provide your custom it will be preserved as is.
#### Special characters
`typescript`
escape("Slack requires you to escape <, > and &");
// => "Slack requires you to escape <, > and &"
#### Links
`typescript
// Simple link
url("https://www.atomist.com");
// => "
// Link with label
url("https://www.atomist.com", "atomist");
// => "
`
#### User & channel links
`typescript
// @some-user (Slack will display user name for provided user ID)
user("U123");
// => "<@U123>"
// #some-channel (Slack will display channel name for provided channel ID)
channel("C123");
// => "<#C123>"
`
#### Special variables
`typescript
// @channel
atChannel();
// => ""
// @here
atHere();
// => ""
// @everyone
atEveryone();
// => ""
`
#### Emoji
`typescript`
emoji("smile");
// => ":smile:";
#### Markdown
Slack will render markdown if field where markdown is present is
included in mrkdwn_in array.
`typescript
bold("This text will appear bold");
// => "This text will appear bold"
italic("This text will appear italic");
// => "_This text will appear italic_"
strikethrough("This text will appear strike-through");
// => "~This text will appear strike-through~"
// Single line code block
codeLine("var a = new A();");
// => "var a = new A();"
// Multi line code block
codeBlock("var a = new A();\nvar b = new B();");
// => "`var a = new A();\nvar b = new B();`"
// List
listItem("Item 1");
// => "• Item 1"
`
GitHub and Slack markdown are different enough to make your GitHub
issues or GitHub PRs look quite bad in Slack by default. You can use
the githubToSlack function from Markdown to convert text that uses
GitHub markdown to text that will look good in Slack:
`typescript
import { githubToSlack } from "@atomist/slack-messages"
githubToSlack(" list item 1\n list item 2\n\some bold text and some italic text with a link click here");
// => "• list item 1\n• list item 2\nsome bold text and _some italic text_ with a link
`
General support questions should be discussed in the #help
channel in the [Atomist community Slack workspace][slack].
If you find a problem, please create an [issue][].
[issue]: https://github.com/atomist/slack-messages/issues
You will need to install [Node.js][node] to build and test this
project.
[node]: https://nodejs.org/ (Node.js)
Install dependencies.
``
$ npm install
Use the build package script to compile, test, lint, and build the
documentation.
```
$ npm run build
Releases are handled via the [Atomist SDM][atomist-sdm]. Just press
the 'Approve' button in the Atomist dashboard or Slack.
[atomist-sdm]: https://github.com/atomist/atomist-sdm (Atomist Software Delivery Machine)
---
Created by [Atomist][atomist].
Need Help? [Join our Slack workspace][slack].
[atomist]: https://atomist.com/ (Atomist - How Teams Deliver Software)
[slack]: https://join.atomist.com/ (Atomist Community Slack)