larshei
Somehow, I cannot manage to get file uploads to work.
I have read the docs and watched the videos from Chris and also a tutorial at pragmatic studio.
So far, I understand the following:
- I need to allow file uploads:
This will add andef mount(params, session, socket) do {:ok, socket |> allow_upload(:csv, accept: ~w(.csv), max_entries: 1)} end@uploadsassign that holds a description of the constraints and, once selected, files and upload progress. - And can use the
live_file_inputto render a file upload button:
Note: Im using Surface UI with Phoenix Live View 0.16.4def render(assigns) do ~F""" <form id="id" for={:data} phx-submit="upload"> <div class="ui segment" phx-drop-target={@uploads.csv.ref}> {live_file_input @uploads.csv} </div> <p>{inspect @uploads.csv}</p> <Button text={gettext "Upload"} icon="upload" extra_attributes="labeled violet"/> </form> """ end
This renders a “Choose File…” button as expected and shows no file selected next to it. - Consume an upload using consume_uploaded_entries. I did not get to this point.
Expectations
With the setup above, I expected
- Clicking the “Choose File” button opens a file selector and
- when rendering
@uploads.csvafter selecting a file it contains information on the selected file in its:entryfield.
What happens
- Clicking the “Choose File” button does not do anything in Chrome. In Safari, a file browser is opened.
- After selecting a file in Safari, the
@uploadsassign seems to not contain anything (<p>{inspect @uploads.csv}</p>):#Phoenix.LiveView.UploadConfig< accept: ".csv", auto_upload?: false, entries: [], errors: [], max_entries: 1, max_file_size: 8000000, name: :csv, progress_event: nil, ref: "phx-FtoOkG01s4jRVQ-F", ... >
I am not sure if something is missing and would appreciate ideas/hints on what to check ![]()
Solutions
Solution to missing info in
@uploadassigns:
As @Xty mentioned below, aphx-changeis required on the form (which can simply return{:noreply, socket}) to properly update the@uploadsassign.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
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 have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Phoenix Threads
Latest on Elixir Forum
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
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Xty
It’s hard to tell if the code samples you’ve provided are complete or boiled down examples, but I’m fairly sure that the LiveView upload features are expected to be used from within a
formelement.Have you tried putting the
live_file_inputinside of a form? If not, I think that would be a good place to start.Another thing that has caused me issues with live uploads is not having a
phx-changehandler on the form. Even if that handler does nothing but respond{:noreply, socket}it’s still needed for live uploads.I’d recommend reading through the official documentation if you haven’t, it should cover everything you need and is likely more up-to-date than the videos you’ve mentioned.
larshei
You are right, it was inside a form.
I minimized the example a bit too much and have added the form to the initial post.
phx-changewas missing as you mentioned. Adding it to the form now updates the socket data correctly, so it fixed one of my two issuesNow that you mention it, I recognized this is actually mentioned in the docs
However, Chrome still does not work at all, as no file browser is opened on button click.
larshei
For Chrome, drag&drop with the
phx-drop-targetworks, just the button does not.03juan
I just tested this with my Chrome file inputs, because I’ve had no problems clicking it, and realised that I’m using a
labelelement in place of yourdiv.When I change my element to
div, drop works but click stops working. Even thesectionelement in the Upload Entries doc example doesn’t work with Chrome. This is either a browser bug or something in the live_view.js, not really sure.kartheek
I use this code and it works in safari and chrome (I use bootstrap for css). I had an error which says some id does not match on upload - but that was because I was creating two livesockets in a single page due two different js files(which I included by mistake).
Also I had to add
phx-change="validate"for validate to trigger.I derived this code from the live_view docs.
OP included solution in his post.