react-native-action-cable icon indicating copy to clipboard operation
react-native-action-cable copied to clipboard

Use Rails 5+ ActionCable channels with React Native for realtime magic.

Results 7 react-native-action-cable issues
Sort by recently updated
recently updated
newest added

'm currently working on a project that utilizes @kesha-antonov/react-native-action-cable for handling WebSocket connections in a React Native application. In order to effectively test my components that use this library, I...

**ActionCableConnector.js** ``` import { ActionCable, Cable } from '@kesha-antonov/react-native-action-cable'; import { WEB_SOCKET_URL } from '../constants/url'; const connectActionCable = ActionCable.createConsumer(WEB_SOCKET_URL); const cable = new Cable({}); import { getPubSubToken } from './AuthHelper';...

Thank you for this library! I have a question about the example in the README. How are you passing the the `chatID` and `userID` from the Rails app when setting...

So I know we can set up listeners for events like `received`, `connected`, `rejected`. But can you set up a listener when an error occurs while trying to connect to...

investigate

We did not find any solutions for our stack React-Native/Rails/GraphQl/Apollo and specifically had problems creating an ActionCable that connected properly with GraphQL subscriptions. The solution was a combination of this...

Hi @kesha-antonov, I am new to action cable with react native. could you help to fix this issue? My Channel callbacks it not triggered so I don't is my APP...

First of all, thanks for creating this repository. In the project I'm working on I'd like to switch from passing an Auth Token as URL parameter to header. Currently we...