EssenceOfChaos

EssenceOfChaos

I’m having trouble implementing a general lobby channel in my Phoenix app. Overall, Phoenix makes soft real-time communication very simple. A brief reading off Channels provides all the info to get up and running. However, after reaching that point of joining the channel and broadcasting messages it leaves me with some unanswered questions.

Besides the endpoint, are essentially 3 files in play:

  1. socket.js

  2. player_socket.ex

  3. lobby_channel.ex

I wanted to try the scaffolding so I used the generator mix phx.gen.channel Lobby. This seems to have left me with a “lobby:lobby” topic and subtopic. I tried implementing the presence module several times without any success. How do I implement the presence module so that I can show a list of “online users” and also have a username next to the chat message and the time the message was sent in a readable format, opposed to the Date.new() iso format that the guide provides.

I do have a “current_player” object stored in the session so it should be easy to figure this out but for some reason each time I take one step forward I wind up taking two steps back. I’ve reviewed the docs as well as several tutorials but I can’t figure out what I’m doing wrong.

The whole repo is here.

My player socket:

def connect(%{"token" => token}, socket) do

  case Phoenix.Token.verify(socket, "player socket", token, max_age: @max_age) do
    {:ok, player_id} ->
      {:ok, assign(socket, :player, player_id)}
    {:error, reason} ->
      :error
  end
end

Lobby Channel:

  def join("lobby:lobby", _payload, socket) do
      current_player = socket.assigns.current_player
      players = ChannelMonitor.player_joined("lobby:lobby", current_player)["lobby:lobby"]
      send self, {:after_join, players}
      {:ok, socket}
    end

My Socket.js (which is a mess of failed attempts)

/*jshint esversion: 6 */

// To use Phoenix channels, the first step is to import Socket
// and connect at the socket path in "lib/web/endpoint.ex":
import { Socket } from "phoenix";

var token = $('meta[name=channel_token]').attr('content');
var socket = new Socket('/socket', {params: {token: token}});
socket.connect();

var lobby = socket.channel('lobby:lobby');
lobby.on('lobby_update', function(response) {
  console.log(JSON.stringify(response.players));
});
lobby.join().receive('ok', function() {
  console.log('Connected to lobby!');
});

lobby.on('game_invite', function(response) {
  console.log('You were invited to join a game by', response.username);
});

window.invitePlayer = function(username) {
  lobby.push('game_invite', {username: username});
};



// format timestamp
let formatTimestamp = timestamp => {
    let date = new Date(timestamp);
    return date.toLocaleTimeString();
};

let channel = socket.channel("lobby:lobby", {});
let chatInput = document.querySelector("#chat-input");
let messagesContainer = document.querySelector("#messages");

// listen for "enter" key press
chatInput.addEventListener("keypress", event => {
    if (event.keyCode === 13) {
        channel.push("new_msg", { body: chatInput.value });
        chatInput.value = "";
    }
});

// listen for messages and append to the messagesContainer
channel.on("new_msg", payload => {
    let messageItem = document.createElement("li");
    messageItem.innerText = `[${Date()}] ${payload.body}`;
    messagesContainer.appendChild(messageItem);
});

channel
    .join()
    .receive("ok", resp => {
        console.log("Joined successfully", resp);
    })
    .receive("error", resp => {
        console.log("Unable to join", resp);
    });

export default socket;

// WORKING WITH PHOENIX PRESENCE MODULE //
// channel.on("presence_state", state => {
//     presences = Presence.syncState(presences, state);
//     renderOnlinePlayers(presences);
// });
//
// channel.on("presence_diff", diff => {
//     presences = Presence.syncDiff(presences, diff);
//     renderOnlinePlayers(presences);
// });
// WORKING WITH PHOENIX PRESENCE MODULE //

Showing Posts 1 to 10

axelson

axelson

Scenic Core Team

@EssenceOfChaos have you tried using Presence.track/3? The presence docs should be able to get you setup fine on the Elixir side: Phoenix.Presence — Phoenix v1.8.8

EssenceOfChaos

EssenceOfChaos OP

@axelson thanks for the reply. I implement the Presence tracking in the lobby channel after joining

axelson

axelson

Scenic Core Team

I’m glad that you got it to work!

EssenceOfChaos

EssenceOfChaos OP

@axelson I can get the chat to work, but once i implement Presence then I get the error “unable to connect to websocket”. I can’t get the Presence/Token modules to work, I’m not sure why. A call to IO.inspect token shows that the token is " ".

kokolegorille

kokolegorille

Please show us how You implement Presence. My config is in the channel file, like this

  ## HANDLE_INFO
  def handle_info(:after_join, socket) do
    {:ok, _} = Presence.track(socket, socket.assigns.current_user.id, %{
      name: socket.assigns.current_user.name,
      online_at: System.system_time(:seconds)
    })
    
    push socket, "presence_state", Presence.list(socket)
    {:noreply, socket}
  end

UPDATE: Sorry, I just found the link to your repo, I will check…

kokolegorille

kokolegorille

This reminds me this blogpost about poker with elixir.

In the socket You store player_id

{:ok, assign(socket, :player, player_id)}

but in the channel You load current_player

current_player = socket.assigns.current_player

Probably You need something like this in the case statement of your player socket.

{:ok, player_id} ->
      player = Gofish.Accounts.get_player!(player_id)
      {:ok, assign(socket, :current_player, player)}
EssenceOfChaos

EssenceOfChaos OP

@kokolegorille I am still unable to connect.
this is my connect function but I can’t seem to connect to the websocket

def connect(%{"token" => token}, socket) do
  IO.puts "#########TOKEN############"
  IO.inspect token
  IO.puts "#########TOKEN############"
  IO.puts "#########SOCKET############"
  IO.inspect socket
  IO.puts "#########SOCKET############"
  case Phoenix.Token.verify(socket, "player auth", token, max_age: @max_age) do
    {:ok, player_id} ->
      player = Gofish.Accounts.get_player!(player_id)
      {:ok, assign(socket, :current_player, player)}
    {:error, _} ->
      :error
  end
end

EDIT: I’m using Token.verify “player auth” in the player_socket and then in the meta tag I am using <%= tag :meta, name: "channel_token", content: Phoenix.Token.sign(@conn, "player auth", @current_player) %>

kokolegorille

kokolegorille

You should cleanup gofish/assets/js/app.js at master · EssenceOfChaos/gofish · GitHub

// import socket from "./socket";
import { Socket, Presence } from "phoenix";

let socket = new Socket("/socket", {
    params: {}
});

function renderOnlineUsers(presences) {
    let response = "";

    Presence.list(presences, (id, { metas: [first, ...rest] }) => {
        let count = rest.length + 1;
        response += `<br>${id} (count: ${count})</br>`;
    });

    document.querySelector("#UserList").innerHTML = response;
}
socket.connect();

let presences = {};

let channel = socket.channel("lobby:lobby", {});

channel.on("presence_state", state => {
    presences = Presence.syncState(presences, state);
    renderOnlineUsers(presences);
});

channel.on("presence_diff", diff => {
    presences = Presence.syncDiff(presences, diff);
    renderOnlineUsers(presences);
});

channel.join();

to

import socket from "./socket";

Because You declare your socket in socket.js

EssenceOfChaos

EssenceOfChaos OP

Yes, but I no longer import socket.js, I’m trying to get the presence module working but without the username coming from the params like in the example. I can’t seem to get presence AND token working together I keep trying different ways

kokolegorille

kokolegorille

You will need to pass a token as requested in your player_socket

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
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
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
georgeguimaraes
Just published claude-code-elixir, a plugin marketplace for Claude Code with Elixir support. These are the plugins I’ve been using for my...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews