Zesky665
Hi everyone,
I’m going through the tutorial for drab and got to the case example. After copying the code from the example to my own files, I ran iex -S mix phx.server and visited localhost. When I clicked the uppercase button, I got the following error :
[error] Drab Handler failed with the following exception:
** (Protocol.UndefinedError) protocol Enumerable not implemented for nil. This protocol is implemented for: DBConnection.PrepareStream, DBConnection.Stream, Date.Range, Ecto.Adapters.SQL.Stream, File.Stream, Floki.HTMLTree, Function, GenEvent.Stream, HashDict, HashSet, IO.Stream, List, Map, MapSet, Postgrex.Stream, Range,Stream
(elixir) lib/enum.ex:1: Enumerable.impl_for!/1
(elixir) lib/enum.ex:141: Enumerable.reduce/3
(elixir) lib/enum.ex:1919: Enum.reduce/3
(drab) lib/drab/live.ex:968: Drab.Live.decrypted_assigns/1
(drab) lib/drab/live.ex:958: Drab.Live.decrypted_from_browser/1
(drab) lib/drab/live.ex:918: Drab.Live.assigns_and_nodrab/1
(drab) lib/drab/live.ex:574: Drab.Live.do_poke/5
(drab) lib/drab.ex:359: anonymous fn/7 in Drab.handle_event/6
Anyone have any idea what this is and how to fix it?
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
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
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
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
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
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
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
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
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
grych
I looks like Drab can’t see your assigns. Can you ensure that you’ve changed your template extension to .drab?
Zesky665
so is it supposed to be like index.html.eex.drab or index.drab?
Zesky665
index.html.drab was the answer.
grych
Actually, in this case Drab should show the better error message. I’ve added the nil case to assigns function, and now:
Zesky665
Good idea
piex
Ran into this error message when upgrading from 7.2 to 9.3 and a quick search brought me here. Error is
At first I was confused because I was calling poke/2 not poke/4 but after a bit of investigation I see that poke/2 ends up at do_poke/5 using a template id held in socket.assigns. It looks like something is clearing __drab_index: as it goes from __drab_index: “gi2dqnbygazdenbv” to __drab_index: nil in socket.assigns.
I suspect it is an exec_js call I use in the page_loaded callback:
The solution for me was to use peek/3 & poke/3 to be explicit about the template I want in the poke/peek calls instead of counting on the value to stay clean in assigns.
If I can isolate/verify that the cause of __drab_index getting reset to nil isn’t something in my code I will report it as a bug on github, but thought I would leave a quick note here in case I don’t get to that soon and others run into a similar issue.
grych
Can you check the value of
__drab.indexon the client side?piex
I believe it can be isolated to the exec_js call setup in page_loaded() so this is what I tried:
And in the first line of
What I see is the socket is correct inside page_loaded, but not in the position_changed() handler. It seems good inside the browser as you can see from the passed in value that is printed payload[“drab”]
OUTPUT: inside page_loaded()
OUTPUT: Inside position_chaged() handler
Phoenix.Socket.assigns.__drab_index looks good initially inside page_loaded() and stays good until the first call to position_chaged(), when it is passed in the socket value as nil.
It seems that __drab.index is correct in the browser context, but not sure if there is a better way to test what you are asking. Let me know.
grych
I believe it is a bug, it should not act like this. Let me try to reproduce it on my environment.
grych
I know where the issue is. The problem is rather fundamental and I must think how to solve it.
Normally, when you run the Drab Handler via JS event (
drab-clicketc), the default payload is passed to the server, which contains also__drab.indexin pages which haveDrab.Liveenabled.But you run
Drab.exec_elixir(). In this case, only the parameters you give to the method are passed. If you adddrab_indexto the exec_elixir, all should work:I can see 2 possible fixes for this case:
Drab.exec_elixir()Drab.exec_handler()which will have default payload, and leaveexec_elixirclean.