Zesky665

Zesky665

Hi,

I’m going through the examples on the drab page. In the ‘chat example’ section, in the code example.

defhandler update_chat(socket, sender) do
  nick = get_store(socket, :nickname, "Anonymous")
  html = ~E"<strong><%= nick %>:</strong> <%= message %><br>" |> safe_to_string()
  broadcast_insert socket, "#chat", :beforeend, html
  set_prop socket, this(sender), value: ""
  broadcast_js socket, "document.querySelector('#chat').scrollTop = 
  document.querySelector('#chat').scrollHeight"`
end  

On the third line, the one with html, a sigil ~E is used. I don’t know what this does, and it doesn’t show up in the elixir docs or in the page source code. Anyone know what this is?

Showing Posts 1 to 10

yurko

yurko

That comes from Phoenix HTML package: “Provides ~E sigil with HTML safe EEx syntax inside source files”.

grych

grych

Creator of Drab

It is important to use safe when you build html from the outside source, like inputs. Future versions of Drab will take safe directly, so you’ll not have to add safe_to_string/1.

marat

marat

Trying chat example as well.
Getting
page_commander.ex:13: undefined function safe_to_string/1

grych

grych

Creator of Drab

Do

import Phoenix.HTML

in the commander, or just call Phoenix.HTML.safe_to_string directly.

marat

marat

Tried to call module.function, that gave page_commander.ex:14: undefined function sigil_E/2.
Now,
page_commander.ex:16: undefined function message/0

it’s the 3rd line in

  defhandler update_chat(socket, sender) do
    nick = get_store(socket, :nickname, "Anonymous")
    html = ~E"<strong><%= nick %>:</strong> <%= message %><br>" |> safe_to_string()
Zesky665

Zesky665 OP

You need to define message within the function. It’s currently not defined and the program assumes its some undefined function.

What I did was get the message value from the sender.

message = sender["value"] 

Or something similar, I’ll post the actual code when I get the chance.

grych

grych

Creator of Drab

Yes, I made a mistake when copying the code to the html, will be added soon.
message = sender["value"] is correct.

marat

marat

Yes, this works:

  defhandler update_chat(socket, sender) do
    nick = get_store(socket, :nickname, "Anonymous")
    message = sender["value"]
    html = ~E"<strong><%= nick %>:</strong> <%= message %><br>" |> safe_to_string()
...
marat

marat

@grych another issue with chat:

defmodule AppWeb.PageCommander do
  use Drab.Commander #, modules: [Drab.Presence]
  import Phoenix.HTML
  import Drab.Presence

gives error:

** (CompileError) lib/olist_no_brunch_web/commanders/page_commander.ex:4: module Drab.Presence is not loaded and could not be found
    (stdlib) erl_eval.erl:677: :erl_eval.do_apply/6

I have in config:

config :drab, :default_modules, [Drab.Live, Drab.Element, Drab.Waiter, Drab.Modal, Drab.Presence]
config :drab, :presence, id: [store: :nickname, session: :nickname] 
config :drab, :presence, endpoint: AppWeb.Endpoint

and still no luck :((

grych

grych

Creator of Drab

Which version of Drab do you have?

Try to:

  1. remove import Drab.Presence from the commander, it is not needed.
  2. remove Drab.Presence from default modules
  3. do mix clean

You may always take a look on the Drab Examples Page source to find out how it is done.

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
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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

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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews