#slack #models #messages #model #message

slack-blocks

Models + clientside validation for Slack's JSON Block Kit

82 releases (24 breaking)

0.25.0 Jun 5, 2021
0.23.1 Jun 2, 2021
0.9.12 Aug 6, 2020
0.9.11 Jul 26, 2020

#430 in Data structures

Download history 41/week @ 2023-12-04 58/week @ 2023-12-11 39/week @ 2023-12-18 23/week @ 2024-01-01 9/week @ 2024-01-08 18/week @ 2024-01-15 56/week @ 2024-01-22 46/week @ 2024-01-29 63/week @ 2024-02-05 71/week @ 2024-02-12 62/week @ 2024-02-19 24/week @ 2024-02-26 60/week @ 2024-03-04 63/week @ 2024-03-11 92/week @ 2024-03-18

240 downloads per month

MIT/Apache

380KB
4.5K SLoC

crates.io docs.rs Maintenance

slack-blocks

This crate brings Slack's terrific Block Kit 🔗 to the Rust ecosystem.

Inside, you'll find models for all of Slack's Layout Blocks, Block Elements, and Composition Objects. Each structure has Slack's API documentation copied in-place so you don't have to leave your editor to remember the details of the block kit API.

Every model has builders that leverage Rust's type system to help you provide every required field, so you can be confident in your app.

Troubleshooting common compiler errors

Method build not found for ...Builder - Dig into the error message, you'll find something like RequiredMethodNotCalled<method::foo>, meaning you need to call .foo() before you can call .build()!

Example

Using an example from Slack's Documentation:

{
  "type": "section",
  "text": {
    "text": "*Sally* has requested you set the deadline for the Nano launch project",
    "type": "mrkdwn"
  },
  "accessory": {
    "type": "datepicker",
    "action_id": "datepicker123",
    "initial_date": "1990-04-28",
    "placeholder": {
      "type": "plain_text",
      "text": "Select a date"
    }
  }
}

You can use raw Builders like so:

use slack_blocks::{text::ToSlackMarkdown, blocks::Section, elems::DatePicker};

let section = Section::builder()
                      .text("*Sally* has requested you set the deadline for the Nano launch project".markdown())
                      .accessory(DatePicker::builder()
                                            .action_id("datepicker123")
                                            .initial_date((28, 4, 1990))
                                            .placeholder("Select a date")
                                            .build()
                      )
                      .build();

Or enable the unstable feature and use xml macros:

use slack_blocks::blox::*;

let pick_date = blox! {
  <date_picker action_id="datepicker123"
               placeholder="Select a date"
               initial_date=(28, 4, 1990) />
};

let section = blox! {
  <section_block accessory=pick_date>
    <text kind=plain>"*Sally* has requested you set the deadline for the Nano launch project"</text>
  </section_block>
};

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.4–1.9MB
~43K SLoC