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
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 believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
For example for a current url like
http://localhost:4000/cosmetic/products?_utf8=✓&query=perfume&page=2,
I would like to get:
...
New
Hello everybody,
usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
Hi,
I'm quite new in Elixir and I'm trying to format a string to a PEM format. I have the certificate value like MIIDBTCCAe2...... and ...
New
Hi guys, i’m new in the Elixir world, and i have to say, that i love it!
i’m having some problem to understand anonymous functions with ...
New
How to handle excepions in elixir? Suppose i have A, B, C ,D, E modules. and each module has get() function. A.get() method will call th...
New
I have a User schema with a :from_id field set to type :string:
defmodule TweetBot.Repo.Migrations.CreateUsers do
use Ecto.Migration
...
New
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New
Lets say i have map like this fetching from my database
%{"_id" => #BSON.ObjectId<58eb1a7a9ad169198c3dXXXX>, "email" => "XX...
New
Other popular topics
Hello!
tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability.
After spen...
New
Hello guys,
I have finally made it. I created an admin interface for a framework. It’s been on my todo list for years and with the curre...
New
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
This release brings a number of exciting features, including integration with the new Phoenix LiveDashboard and Phoenix LiveView. There h...
New
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
In the code below, if the create action is not set to accept “extra_key” as an input, it errors out with a message shown above. Is there ...
New
Elixir plugin for JetBrain’s IntelliJ Platform (including Rubymine)
This is a plugin that adds support for Elixir to JetBrains IntelliJ...
New
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar.
I p...
New
I am trying to run a deploy with docker and I successfully runned with this command:
docker build -t romenigld/blog-prod .
but when I t...
New
Kind of like when jquery came out, it was super necessary. Existing drag and drop libraries have a bunch of baggage to support old browse...
New







