alexbaetz
Hi all together,
I’m currently working on a project to make realtime communication between my web-application (written in Phoenix Liveview) and my mobile-application (written in Flutter) work. However I struggle to set up a new channel since the channels for the liveview socket is set up in the packages files.
Does anybody know if I can just setup another socket (like in a project without the --live tag) for the necessary channel (and maybe more in the future) or does it lead to conflicts between the sockets/channels?
I also know that typically PubSub is used to enable realtime communication within a Liveview-App.
However I’m not sure if it’s possible to subscribe to a topic from a Flutter-App since the existing libraries I found so far only support a connection to a phoenix channel.
Thank you all in advance!
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 5 of 5 Posts
kokolegorille
Yes You can, if You look at your endpoint.ex, You should see 2 already defined…
But You need a flutter client to connect to Phoenix channels.
Exadra37
My approach would be to create a Phoenix channel in the backend for the mobile app, and then send notifications to this channel from wherever in your code you need to sync web with mobile.
The event type:
Then you can send notifications from anywhere in your code:
That you need to then handle in your Channel. An example of a possible channel in your backend would look like this:
https://github.com/approov/quickstart-elixir-phoenix-channels-token-check/blob/f00094cbacc559912c624068e6466c741e3bccad/src/approov-protected-server/token-check/echo/lib/echo_web/channels/echo_channel.ex#L6-L28
To create the socket for it you just need to add some code like:
https://github.com/approov/quickstart-elixir-phoenix-channels-token-check/blob/f00094cbacc559912c624068e6466c741e3bccad/src/approov-protected-server/token-check/echo/lib/echo_web/channels/user_socket.ex#L6-L19
From your mobile app you can then connect and join to the channel, like:
https://github.com/approov/quickstart-flutter-elixir-phoenix-channels/blob/63a15d941a18c20a85f53d700ec5fd96eb848800/src/echo-chamber-app/lib/phoenix_channel.dart#L12-L62
This Phoenix channel can also send notifications to the LiveView process in order to update the web with changes from the mobile app.
NOTE: All the code examples reference different projects, ones are demos at work, others are my personall ones, thus you need to adapt them to your needs, but it should give you a starting point.
cpgo
A bit off topic but
Looks really nice. Will try on my personal projects.
alexbaetz
Thank you all for your fast replies and help!
I now have a much clearer idea on how to get things running.
One last question about this topic:
Would you open a connection to the other socket directly from app.js as it is done for the livesocket or would you prefer a seperate js file?
Have a nice weekend
Exadra37
I think you missed the point I explained to keep the web and the mobile app in sync.
You don’t need to open another socket connection from the web app in order to keep mobile and web in sync.
What you need to do is to have a Phoenix Channel for the mobile app to connect too and then have the LiveView sending notifications to this Phoenix Channel to tell that something changed in the web side, and you can also send notifications from the Phoenix Channel to the LiveView to inform it that something have changed in the mobile side.
Just to be clear, all this notifications between LiveView and the Phoenix Channel is done in the backend side.