Phoenix.LiveView.uploaded_entries

You're seeing just the function uploaded_entries, go back to Phoenix.LiveView module for more information.
Link to this function

uploaded_entries(socket, name)

View Source

Returns the completed and in progress entries for the upload.

Examples

case uploaded_entries(socket, :photos) do
  {[_ | _] = completed, []} ->
    # all entries are completed

  {[], [_ | _] = in_progress} ->
    # all entries are still in progress
end