mendrik
Weird error with live_file_upload
I’m trying to implement multiple file upload buttons inside the same live_view. I have this kind of code:
defmodule AlbumWeb.AlbumLive do
use AlbumWeb, :live_view
alias Album.HashedIds
alias Integer
require Logger
def mount(%{"id" => id}, _session, socket) do
album_id = HashedIds.decode!(id)
album = Album.get_album!(album_id)
pages_per_album = Application.get_env(:album, :pages_per_album, 10)
{:ok, assign(socket, album: album, pages_per_album: pages_per_album)}
end
def render(assigns) do
~H"""
<div class="flex-1 book_holder">
<div class="book" style="--c: 0;--translate: 0;">
<%= for page <- 0..(@pages_per_album - 1) do %>
<PageComponents.photo_page page={page}>
<:front>
<.live_component
module={AlbumWeb.PhotosetLive}
id={page * 2}
page={page * 2}
album={@album}
/>
</:front>
<:back>
<.live_component
module={AlbumWeb.PhotosetLive}
id={page * 2 + 1}
page={page * 2 + 1}
album={@album}
/>
</:back>
</PageComponents.photo_page>
<% end %>
</div>
</div>
"""
end
end
which uses AlbumWeb.PhotosetLive a few times. PhotosetLive is defined like so
defmodule AlbumWeb.PhotosetLive do
use AlbumWeb, :live_component
# use def update_many(assigns_sockets) to load all photos in the albnum
def mount(socket) do
socket =
socket
|> assign(:uploaded_files, [])
|> allow_upload(:photoset, accept: ~w(.jpg .jpeg .png .webp), max_entries: 7)
{:ok, socket}
end
def handle_event("validate", _params, socket) do
{:noreply, socket}
end
def handle_event("save", _params, socket) do
uploaded_files =
consume_uploaded_entries(socket, :photoset, fn %{path: path}, _entry ->
dest = Path.join("priv/static/uploads", Path.basename(path))
IO.puts(path <> " -> " <> dest)
end)
{:noreply, update(socket, :uploaded_files, &(&1 ++ uploaded_files))}
end
attr :page, :integer, required: true
attr :album, Album.Album, required: true
def render(assigns) do
~H"""
<div>
<div>photos</div>
<div>
<%= for entry <- @uploads.photoset.entries do %>
<%= entry.client_name %> - <%= entry.progress %>%
<% end %>
<form phx-submit="save" phx-change="validate">
<%= live_file_input(@uploads.photoset) %>
<button type="submit">Upload</button>
</form>
</div>
</div>
"""
end
end
this crashes by page with
ArgumentError at GET /albums/1Ovxpva
assign/3 expects a socket from Phoenix.LiveView/Phoenix.LiveComponent or an assigns map from Phoenix.Component as first argument, got: %{accept: ".jpg,.jpeg,.png,.webp", __given__: %{accept: ".jpg,.jpeg,.png,.webp"}}You passed an assigns map that does not have the relevant change tracking information. This typically means you are calling a function component by hand instead of using the HEEx template syntax. If you are using HEEx, make sure you are calling a component using:
<.component attribute={value} />
If you are outside of HEEx and you want to test a component, use Phoenix.LiveViewTest.render_component/2:
Phoenix.LiveViewTest.render_component(&component/1, attribute: "value")
Would anyone have a pointer what I am doing wrong? I also tried only one component but it gives the same error. It’s pretty text book implementation so far, and I’m very new to phoenix and elixir.
Marked As Solved
mendrik
problem was with using <%= live_file_input(@uploads.photoset) %> instead of <.live_file_input upload={@uploads.photoset}/>
Popular in Questions
** (DBConnection.ConnectionError) connection not available and request was dropped from queue after 2733ms. You can configure how long re...
New
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible.
total = 10
while total != 0
...
New
What is the idiomatic way of matching for not nil in Elixir?
E.g.,
First way:
defp halt_if_not_signed_in(conn, signed_in_account) when...
New
Hello, how can I check the Phoenix version ?
Thanks !
New
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? Ecto.Repo — Ecto v3.14.0 has exampl...
New
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New
Using vs code and installed ElixirLS: support and debugger.
And I got an error popped up on start up says
Failed to run ‘elixir’ comma...
New
Hi,
I need to transform a list of numbers into a map where the keys are the indexes and the values are the original values of the list. ...
New
What is the proper way to load a module from a file in to IEX?
In the python world, doing something like this pretty standard:
from ....
New
Other popular topics
None of the current solutions worked well for me, so I went ahead and built a user management system from scratch.
This project took far...
New
Hello, I have map which I want to convert it to string like this:
the map:
%{last_name: "tavakkoli", name: "shahryar"}
the string I ne...
New
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
I want to highlight html closing tags when i click a html tag. That works in .html files but doesnt work for html.eex templates. How can...
New
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors:
[WARN] - (starship::utils): Executing command ...
New
Hey,
Just curious what are the main benefits of Elixir compared to Clojure?
When is Elixir more useful than Clojure and vice versa?
Th...
New
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum.
...
New
Hello everyone,
Long time lurker first time poster here. I’ve recently begun working on Elixir full-time again! :raised_hands: It’s been...
New
Elixir plugin for JetBrain’s IntelliJ Platform (including Rubymine)
This is a plugin that adds support for Elixir to JetBrains IntelliJ...
New
We’ve put together this wiki for Phoenix LiveView - please feel free to add any info you feel is worth including.
What is Phoenix LiveV...
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
- #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








