Message Automation RulesPRO

An automation section listing each trigger against the message it sends on hairline rows with live switches, striking through the volume of any rule turned off and totalling the rest in a soft summary panel.

Chat30: Message Automation Rules

An automation section listing each trigger against the message it sends on hairline rows with live switches, striking through the volume of any rule turned off and totalling the rest in a soft summary panel.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/chat30?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/chat30?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/chat30.tsx, the shadcn/ui switch component it depends on, and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

The installed file exports chat30Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.

tsx
import { Chat30, chat30Demo } from "@/components/beste/block/chat30";

export default function AutomationsPage() {
  return <Chat30 {...chat30Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Chat30 } from "@/components/beste/block/chat30";

export default function AutomationsPage() {
  return (
    <Chat30
      badge={{ label: "What sends itself" }}
      heading="Four messages nobody has to remember to write"
      description="Turn each one on or off. Everything else stays manual."
      triggerLabel="When this happens"
      actionLabel="This goes out"
      rules={[
        {
          trigger: "An appointment is booked",
          action: "Confirmation with room, clinician, and what to bring",
          detail: "Sent immediately, with a calendar file attached.",
          sent: "1,284 last month",
          defaultOn: true,
        },
        {
          trigger: "An invoice passes thirty days",
          action: "A single polite chase, then it stops",
          detail: "One message, then it goes to a human list.",
          sent: "38 last month",
          defaultOn: false,
        },
      ]}
      summaryLabel="messages a month at this setting"
      note="Nothing here can be scheduled outside your opening hours."
      button={{ label: "See every automation", href: "/product/automations" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
triggerLabelstringColumn heading, also the mobile label for the trigger
actionLabelstringColumn heading, also the mobile label for the message
rulesRule[][]Automation rules with their default state
summaryLabelstringCaption under the running total
notestringPolicy line in the summary panel
button{ label: string; href: string }Outline action in the summary panel
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Rule = {
  trigger: string;
  action: string;
  detail: string;
  sent: string;
  defaultOn?: boolean;
};

Behavior notes

More Chat blocks

View all Chat
PRO

chat31

Two Sides Of One Conversation

A messaging section splitting a hairline matrix between the staff view and the member view, each half floating its own live asset above a title and a list of what that side gets.

PRO

chat12

Conversational Thread with Reactions

Chat message thread with rich formatting, copy and thumbs-up/down action buttons on AI messages, and time-grouped message sections. Features hover-revealed action bars and smooth animations.

PRO

chat11

Complete AI Chat Interface

Full-featured chatbot window with message thread, AI and user avatars, timestamp display, typing indicator, and rich input area with send button. Suitable as the primary chat experience.

PRO

chat23

Messaging Overview Split

A messaging section pairing a light heading, a hairline table of response figures, and two actions with an image tile that floats a live conversation thread.

PRO

chat22

Member Inbox And Thread

A two-pane messaging panel: a selectable conversation list with unread dots on the left, and the chosen thread on the right with member and staff bubbles, timestamps, and a composer row.

PRO

chat27

Inverted Out Of Hours Panel

A support section built as one dark panel, with a light heading, three hairline promises about who answers, two actions, and a bordered column floating a live on-call conversation.