pgarg
How to dynamically make new channel topics?
Hello everyone,
I am a beginner to elixir and phoenix. I was trying to make a webpage where users can create different discussion topics and in those discussions people can add comments. For commenting I think channels would be great but I am confused that when a user creates a new discussion thread, how will a subtopic be generated for that particular discussion topic in the backend? Initially I can hard code it but is there a way that a topic is generated for channels as soon as a user adds a discussion topic?
Marked As Solved
lud
Channels are just names. In the Docs you will see that example:
channel "room:*", HelloWeb.RoomChannel
Then there is a join function:
defmodule HelloWeb.RoomChannel do
use Phoenix.Channel
def join("room:lobby", _message, socket) do
{:ok, socket}
end
def join("room:" <> _private_room_id, _params, _socket) do
{:error, %{reason: "unauthorized"}}
end
end
(in this example the private rooms are always refused since the docs talks about implementing the authorization later on).
As long as your join function accepts _private_room_id as a room name (i.e. it returns ok), then your channel exists, basically.
Also Liked
pgarg
Thanks I tried it and it worked.
kokolegorille
Hello and welcome,
In that case, it’s a pattern match… and _private_room_id will be assigned to what follow “room:”
kokolegorille
It can also be simplified like this… maybe it’s more explicit.
iex> "koko:" <> id = "koko:12345"
"koko:12345"
iex> id
"12345"
Popular in Questions
Other popular 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
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance









