defmodule LivebookWeb.Output.FileInputComponent do use LivebookWeb, :live_component @impl true def mount(socket) do {:ok, assign(socket, initialized: false)} end @impl true def update(assigns, socket) do socket = assign(socket, assigns) socket = if socket.assigns.initialized do socket else socket |> allow_upload(:file, # The file input specifies the accepted formats, but in order # to handle unknown MIME types, we need to pass :any to # allow_upload and override the accept attribute ourselves accept: :any, max_entries: 1, max_file_size: 100_000_000_000, progress: &handle_progress/3, auto_upload: true ) |> assign( initialized: true, accept: case socket.assigns.accept do :any -> nil types when is_list(types) -> Enum.join(types, ",") end ) end {:ok, socket} end @impl true def render(assigns) do ~H"""
""" end @impl true def handle_event("validate", %{}, socket) do {:noreply, socket} end defp handle_progress(:file, entry, socket) do if entry.done? do {file_ref, client_name} = consume_uploaded_entry(socket, entry, fn %{path: path} -> {:ok, file_ref} = LivebookWeb.SessionHelpers.register_input_file( socket.assigns.session_pid, path, socket.assigns.input_id, socket.assigns.local, socket.assigns.client_id ) {:ok, {file_ref, entry.client_name}} end) value = %{file_ref: file_ref, client_name: client_name} send_update(LivebookWeb.Output.InputComponent, id: socket.assigns.input_component_id, event: :change, value: value ) end {:noreply, socket} end end