Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-use-action-cable-ts

Package Overview
Dependencies
Maintainers
0
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-use-action-cable-ts

Hooks to easily use Rails Action Cable in your React application

  • 2.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
782
increased by30.12%
Maintainers
0
Weekly downloads
 
Created
Source

React Use Action Cable

Hooks to use Rails Action Cable in your React application.

Installation

npm i react-use-action-cable-ts

Usage

Connecting to a websocket

To connect to an Action Cable, simply call the useActionCable hook with the URL you wish to connect to. If you want to be able to use this Action Cable throughout your application consider implementing it in a context.

import React, { useEffect } from 'react';
import { useActionCable, useChannel } from 'react-use-action-cable-ts';

export default function index() {
  const { actionCable } = useActionCable('ws://localhost:3000/cable');
}

Subscribe to a channel

Provide the useChannel hook with the previously created actionCable. You then get access to the (un)subscribe and send functions. In the example below we immediately subscribe to the channel 'ChannelName' on the first render.

...
  const { subscribe, unsubscribe, send } = useChannel(actionCable)

  useEffect(() => {
    subscribe({
      channel: 'ChannelName',
      param2: '...',
      param3: '...'
    }, {
      received: (data) => console.log(data),
      // Custom callbacks can be added for 'initialized', 'connected', and 'disconnected' 
    })
    return () => {
      unsubscribe()
    }
  }, [])
...

Sending data

To send data to the channel that we are subscribe to we can use the send function as below.

send({
  action: 'ping',
  payload: {}, // Optional
  useQueue: true // Optional, default: false
})

When setting useQueue to true the message will be added to a queue and will be sent as soon as possible. That is, immediately when the websocket is connected. If the websocket is not connected at the time send() is called it will be sent as soon as the websocket reconnects.

Keywords

FAQs

Package last updated on 04 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc