So, I'm working on a project that should have a chat component same as the linkedin chat, where the user will have all their contacts and messages.
But, I've tried of all ways to work with stimulus_reflex
and view_component
to create this chat_box
, but until now I had none progress.
So right now I'm trying to create a chat with pure action_cable, but my doubt is: Can I use this action_cable channel ('ChatRoom')
with Stimulus Reflex
? Because when we see the rails console shows something like this: Broadcasting to StimulusReflex::Channel:1
, and I want to Broadcast to the ChatRoom Channel
.
Someone was tried the same?