Have a question for anyone who is using Bubble streaming API in their apps.
How are you getting a repeating group to scroll with the active stream?
With the send message workflow I have various “scroll to last item” in the repeating group…but whilst it is streaming, it is not technically an Item in the repeating group (there’s no message data type).
I then tried things like “every 0.5 seconds scroll to last item” when streaming is Yes. But that suffers from the same problem.
I then tried to doing this via javascript to scroll the Repeating group with an ID of X when “streaming” = Yes.
This didnt seem to trigger when stepping through in the debugger.
I then removed the condition altogether so it’;s constantly firing regardless. Sure enough, if not message is sent and just viewing the RG, it will shunt to the bottom every 0.5s. Enter a message to start streaming and it doesn’t (step through confirmed this, it never fires this action, only the series of actions in the “send messsage”" flow).
So it seems like when the streaming is active, it blocks out any other action that might be queued or running concurrently.
But if this was the case then I would be sure that this would be highlighted by many and not really useable given its kind of the expected standard now.
So assume I am doing something wrong.