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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-actions-chat-support

v2.1.0

Published

Support-desk flow helpers and in-memory adapters for react-actions-chat.

Readme

React Actions Chat Support

Companion package for react-actions-chat that adds reusable support-desk flows for both customers and admins.

Installation

npm install react-actions-chat react-actions-chat-support

What It Includes

  • createSupportUserFlow
  • createSupportAdminFlow
  • createInMemorySupportFlowAdapter

The package ships a shared adapter contract plus an in-memory implementation so you can prototype ticketing, ticket queue review, live-chat queue review, two-sided live-chat transcripts, assignment, and resolution flows without wiring a backend first.

User flows show capability-driven entry actions: start a ticket, start a live chat, and view existing tickets when tickets exist. Live-chat requests collect an initial customer message, keep the customer input locked until an agent joins, and expose persistent end-chat actions. Admin flows let agents join live chats, reply through the shared input, and inject persistent live-chat actions. Ticket review stays focused on ticket triage: assign to yourself or a named agent, raise priority, reply, inspect activity, resolve, or return to admin options. Async adapter and callback operations use the core chat loading indicator when database reads or writes stay pending long enough to need feedback.

Both user and admin flows are designed to be extended instead of forked. Host applications can pass:

  • callbacks to override any adapter operation one method at a time
  • validation to customize support input rules
  • labels and requestInputs to change button copy, prompts, placeholders, validators, input modes, file-upload settings, abort labels, timeout/cooldown behavior, and request-button styling
  • formatters to replace the markdown rendered for queues, tickets, transcripts, completion states, and opening messages
  • filterOptions to add optional, configurable filter buttons for admin ticket queues, admin assigned work, admin live-chat queues, and customer ticket lists using backend filters, local predicates, or both
  • paged ticket-list responses so customer ticket lists and admin queues can keep fetching when a backend returns only part of a larger result set
  • behavior to adjust queue limits, recent-activity limits, live-chat send/open predicates, priority order, status transitions, queue button variants, assigned-work filters, and live-chat requeue math
  • customizeButtons to replace, remove, or append buttons for each flow slot
  • liveChatPersistentButtons or the live-chat-persistent button slot to extend or replace persistent live-chat actions

Admin ticket priority is set through the shared input dropdown.

The in-memory adapter is also configurable through factories for ticket references, message IDs, live-chat IDs, timestamps, default statuses and priorities, customer matching, queue status filters, queue positions, estimated wait times, and sorting.