npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

slack-blocks-to-jsx

v0.6.2

Published

A library to convert Slack blocks to JSX components to be used with React

Downloads

1,196

Readme

Slack Blocks to JSX Documentation

Overview

The slack-blocks-to-jsx package allows you to render Slack blocks in React with styles that closely mimic how they are displayed in Slack. This library converts Slack's block kit components into JSX components, maintaining the visual fidelity and interactive elements.

🚨 Quickly test out the library on online playground: https://slack-block-to-jsx-playground.vercel.app/

🔗 New! Check out our detailed blog post: Rendering Slack Blocks in React: A Complete Guide

Installation

To use this package in your project, install it via npm:

npm install slack-blocks-to-jsx

Or using yarn:

yarn add slack-blocks-to-jsx

Usage

Importing Styles

Import the necessary CSS file in your entry point to ensure the styles are applied:

import "slack-blocks-to-jsx/dist/style.css";

Using Components

Import the Message component from the package and use it to render your Slack blocks:

import { Message } from "slack-blocks-to-jsx";

const blocks = [...]; // your Slack blocks data

<Message time={new Date()} name="Your Company" logo="logo_url" blocks={blocks} />

Types

For better type safety, you can import the Block type:

import type { Block } from "slack-blocks-to-jsx";

const blocks: Block[] = [...]; // your Slack blocks data

Components

Message

This is the main component that renders the entire Slack message. It supports various props to customize the appearance and behavior:

  • blocks: Array of Slack block objects.
  • logo: URL of the logo to display.
  • name: Name of the sender.
  • time?: Timestamp for the message.
  • className?, style?: Standard React styling props.
  • unstyled?: If true, disables all included styles. Default to false.
  • withoutWrapper?: If true, renders only the Slack blocks without any wrapper. Default to false.
  • hooks?: custom handlers for user, channel, broadcast, usergroup, emoji etc.
    • user?: (input: { id: string; name: string }) = ReactNode
    • channel?: (input: { id: string; name: string }) = ReactNode
    • usergroup?: (input: { id: string; name: string }) = ReactNode
    • atChannel?: () = ReactNode
    • atEveryone?: () = ReactNode
    • atHere?: () = ReactNode
    • emoji?: (data: { name: string; unicode?: string; skin_tone?: number; }, => ReactNode, fallback: (data: { name: string; unicode?: string; skin_tone?: number; }) => string )
    • date?: (data: { timestamp: string; format: string; link: string | null; fallback: string; }) => ReactNode;
  • data?: optionally pass an array or users, channels and user groups to automatically be replaced with the user, channel and user group mentions.
  • showBlockKitDebug?: Show a link to open the message in the Slack Block Kit Builder, for debugging purposes. Defaults to false.

Block Components

Each Slack block type has a corresponding component:

  • Section (✅ supported)
  • Divider (✅ supported)
  • Image (✅ supported)
  • Context (✅ supported)
  • Actions (🟨 partially supported)
  • File (❌ not supported yet)
  • Header (✅ supported)
  • Input (🟨 partially supported)
  • RichText (✅ supported)
  • Video (✅ supported)

If you want a support of a particular block or element which is not supported yet so please raise a github issue or mail me at [email protected]. I will try to push it asap.

Customization

You can handle custom rendering and interactions using the hooks prop in the Message component. This allows you to define custom behavior for user mentions, channels, and other interactive elements. You can also override default styling. Here are the classes structure to understand to override any block styling.

.slack_blocks_to_jsx: Main Wrapper
.slack_blocks_to_jsx--header: Header (name and time)
.slack_blocks_to_jsx--blocks: blocks array mapping wrapper
.slack_blocks_to_jsx--block_wrapper: wrapper around every block .slack_blocks_to_jsx__divider: Divider Block
.slack_blocks_to_jsx__section: Section Block
.slack_blocks_to_jsx__image: Image Block
.slack_blocks_to_jsx__context: Context Block
.slack_blocks_to_jsx__actions: Actions Block
.slack_blocks_to_jsx__input: Input Block
.slack_blocks_to_jsx__rich_text: Rich Text Block
.slack_blocks_to_jsx__rich_text_list_element: Rich Text Block List Element
.slack_blocks_to_jsx__rich_text_preformatted_element: Rich Text Block Preformatted Element
.slack_blocks_to_jsx__rich_text_quote_element: Rich Text Block Element Quote Element
.slack_blocks_to_jsx__rich_text_section_element: Rich Text Block Section Element

...as so on (all the other classes will be similar too, for example .slack_blocks_to_jsx__rich_text_section_element_user for Rich Text Block Section Element User)

If you want any other customization so please raise a github issue or mail me at [email protected]. I will try to push it asap if it aligns with the library development vision.

Development and Contribution

The project is open-source, and contributions are welcome. If you encounter any issues or want to suggest improvements, please file an issue on the GitHub repository:

GitHub Repository Issues

License

The project is licensed under the MIT license, allowing free use, modification, and distribution.

Support

Love my open source work or anything else I do? Treat me to a coffee! 😊

Buy Me a Coffee