kasvith

kasvith

i dont understand how phoenix presence works

in the examples

defmodule MyAppWeb.MyChannel do
  use MyAppWeb, :channel
  alias MyAppWeb.Presence

  def join("some:topic", _params, socket) do
    send(self(), :after_join)
    {:ok, assign(socket, :user_id, ...)}
  end

  def handle_info(:after_join, socket) do
    {:ok, _} = Presence.track(socket, socket.assigns.user_id, %{
      online_at: inspect(System.system_time(:second))
    })

    push(socket, "presence_state", Presence.list(socket))
    {:noreply, socket}
  end
end

it pushes to presence_state on :after_join event…
after that how does it work? how state is being pushed down to client in realtime as changes are happening?

is there any good way to hook into presence_state to identify which clients are online realtime?(I want to implement a total user counter)

PS: Im following this for my usecase https://medium.com/@alvinlindstam/phoenix-presence-for-social-networks-5fb67143f0ad

Showing Posts 1 to 4

zorn

zorn

From the docs, right under the sample you shared:

In the example above, Presence.track is used to register this channel’s process as a presence for the socket’s user ID, with a map of metadata. Next, the current presence information for the socket’s topic is pushed to the client as a "presence_state" event.

Emphasis above added by me. As you call Presence.track/3, it will associate the calling process with this specific user_id, and then when the process goes away (ie: the channel of the example is closed, or in other spaces the LiveView process is ended) the “presence” of this user_id is considered lost.

You might get value from this blog post, which talks about Presence at the end:

Good luck!

kasvith

kasvith OP

Thanks for the explanation, does it means Presence injects some behaviour into the channel to do this?

zorn

zorn

Nope. It gets the pid of the calling process and then uses Phoenix.Tracker and other things inside Presence to observe the life of the process via standard BEAM features.

PaulOlukayode

PaulOlukayode

Presence Tracking Workaround with Phoenix

kasvith said:

def join("some:topic", _params, socket) do
  send(self(), :after_join)
  {:ok, assign(socket, :user_id, ...)}
end

Sometimes you don’t need to strictly tie yourself to the Phoenix Channel’s join/3 callback for presence tracking or messaging.

Workaround idea

Instead of doing everything inside join/3, you can handle presence and messages directly in your GenServer or process by sending messages: all you need is the pid either socket or genserver then bind to it. that is all

def handle_info({:send_text, text}, state) do
  # Relay the message to the process/topic bound to presence
  # Presence is tied to the process (pid or atom) representing the topic
end
— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews