Reputation: 741
I am using Elixir with Phoenix. I have a form with a text input which should only allow a maximum text of 255 characters. However, the error is not shown I could not figure out why it does not show the error. The only thing is that the database or ecto will reject it when it tries to insert it and a error flash message is shown. But I expected that the validation step shows an error message.
.input, .modal, ... are the default core components.
I also noticed assigns.wasm_form.source.errors is not empty but assigns.wasm_for.errors is empty.
My relevant live view code:
defmodule BotLeagueBackendWeb.ProfileLive do
use BotLeagueBackendWeb, :live_view
alias BotLeagueBackend.Wasm
alias BotLeagueBackend.WasmService
@impl true
def mount(_params, session, socket) do
user_id = session["id"]
socket = socket
|> assign(:conn, %{request_path: "/profile", assigns: %{user: user_id}})
if connected?(socket) do
wasm_form =
%Wasm{}
|> Wasm.changeset(%{})
|> to_form(as: "wasm_form")
uploaded_wasm_modules = WasmService.get_wasm_modules_for_user(user_id)
socket =
socket
|> assign(:wasm_form, wasm_form)
|> allow_upload(:wasm_module, max_entries: 1, max_file_size: 16_000_000, accept: ~w(.wasm))
|> stream(:uploaded_wasm_modules, uploaded_wasm_modules)
{:ok, socket}
else
{:ok, assign(socket, loading: true)}
end
end
@impl true
def render(%{loading: true} = assigns) do
~H"""
<p>Loading...</p>
"""
end
@impl true
def render(assigns) do
~H"""
<.button type="button" phx-click={show_modal("upload-wasm-module-modal")}>
Upload New Bot Version
</.button>
<.modal id="upload-wasm-module-modal">
<.simple_form for={@wasm_form} phx-change="validate" phx-submit="upload" phx-feedback-for="wasm_form">
<%= for entry <- @uploads.wasm_module.entries do %>
<%= for err <- upload_errors(@uploads.wasm_module, entry) do %>
<p class="text-base text-red-500">
<%= error_to_string(err) %>
</p>
<% end %>
<% end %>
<.live_file_input upload={@uploads.wasm_module} required />
<.input
field={@wasm_form[:name]}
type="text"
label="Enter a name for your bot's current version"
required
/>
<.button type="submit" phx-disable-with="Saving...">Upload</.button>
</.simple_form>
</.modal>
<div class="mt-8 max-w-screen-md">
<h4 class="font-semibold mb-4">Uploaded Bot Versions</h4>
<table class="min-w-full">
<thead>
<tr>
<th class="px-6 py-3 border-b-2 border-gray-300 text-left uppercase">Name</th>
<th class="px-6 py-3 border-b-2 border-gray-300 text-left uppercase">Active</th>
<th class="px-6 py-3 border-b-2 border-gray-300 text-left uppercase">MD5</th>
</tr>
</thead>
<tbody id="uploaded_wasm_modules_stream" phx-update="stream">
<tr :for={{dom_id, uploaded_wasm_module} <- @streams.uploaded_wasm_modules} id={dom_id} class="border-t border-gray-300">
<td class="px-6 py-4 whitespace-no-wrap"><%= uploaded_wasm_module.name %></td>
<td class="px-6 py-4 whitespace-no-wrap"><%= uploaded_wasm_module.active %></td>
<td class="px-6 py-4 whitespace-no-wrap"><%= uploaded_wasm_module.md5_hash %></td>
</tr>
</tbody>
</table>
</div>
"""
end
@impl true
def handle_event("upload", %{"wasm_form" => wasm_params}, socket) do
%{user: user_id} = socket.assigns.conn.assigns
# TODO consume_file and saving it should be done in WasmService
{file_path, md5_hash} = List.first(consume_file(socket))
case WasmService.add_wasm_module_for_user(
file_path: file_path,
md5_hash: md5_hash,
name: wasm_params["name"],
user_id: user_id
) do
{:ok, _wasm} ->
socket =
socket
|> put_flash(:info, "Wasm module uploaded successfully")
|> push_navigate(to: ~p"/profile")
{:noreply, socket}
{:error, %Ecto.Changeset{} = changeset} ->
socket =
socket
|> put_flash(:error, "Some error occurred")
|> push_navigate(to: ~p"/profile")
{:noreply, socket}
end
end
@impl true
def handle_event("validate", %{"wasm_form" => params}, socket) do
wasm_form =
%Wasm{}
|> Wasm.changeset(params)
|> to_form(as: "wasm_form")
{:noreply, assign(socket, wasm_form: wasm_form)}
end
defp consume_file(socket) do
consume_uploaded_entries(socket, :wasm_module, fn %{path: path}, _entry ->
file_id = Ecto.UUID.generate()
dest =
Path.join([
:code.priv_dir(:bot_league_backend),
"static",
"uploads",
file_id <> ".wasm"
])
File.cp!(path, dest)
md5_hash = File.stream!(dest,[],2048)
|> Enum.reduce(:crypto.hash_init(:md5),fn(line, acc) -> :crypto.hash_update(acc,line) end )
|> :crypto.hash_final
|> Base.encode16
{:ok, {~p"/uploads/#{Path.basename(dest)}", md5_hash}}
end)
end
def error_to_string(:too_large), do: "Too large"
def error_to_string(:not_accepted), do: "You have selected an unacceptable file type"
def error_to_string(:too_many_files), do: "You have selected too many files"
end
and my domain model
defmodule BotLeagueBackend.Wasm do
use BotLeagueBackend, :domain_model
alias BotLeagueBackend.User
@primary_key {:id, Ecto.UUID, default: Ecto.UUID.generate()}
schema "wasms" do
field :file_path, :string
field :md5_hash, :string
field :name, :string
field :active, :boolean, default: true
belongs_to :user, User, foreign_key: :user_id, type: :binary_id
timestamps()
end
def changeset(wasm, params \\ %{}) do
wasm
|> cast(params, [:file_path, :md5_hash, :name, :active, :user_id])
|> validate_required([:file_path, :md5_hash, :name, :active, :user_id])
|> validate_length(:file_path, max: 255, min: 1, message: "must be between 1 and 255 characters")
|> validate_length(:md5_hash, max: 32, min: 32, message: "invalid md5 hash")
|> validate_length(:name, max: 255, min: 1, message: "must be between 1 and 255 characters")
end
def new(
file_path: file_path,
md5_hash: md5_hash,
name: name,
active: active,
user_id: user_id
)
when is_binary(file_path) and is_binary(md5_hash) and is_binary(name) and is_binary(user_id) do
{:ok, user_id} = Ecto.UUID.cast(user_id)
wasm = %@self{
file_path: file_path,
md5_hash: md5_hash,
name: name,
active: active,
user_id: user_id
}
{:ok, wasm}
end
end
What is my mistake here. My goal is that if I enter a text with more than 255 characters an error message is shown.
Upvotes: 0
Views: 916
Reputation: 2233
I have not fully checked your code but in my experience this usually happens when the changeset does not have an :action
key set.
You can do this as simply as Map.put(changeset, :action, :validate)
.
When you Repo.insert
or Repo.update
with a changeset, these functions will automatically put :action
of :insert
or :update
on the changeset.
The first thing I would try is to change this
@impl true
def handle_event("validate", %{"wasm_form" => params}, socket) do
wasm_form =
%Wasm{}
|> Wasm.changeset(params)
|> to_form(as: "wasm_form")
into this
@impl true
def handle_event("validate", %{"wasm_form" => params}, socket) do
wasm_form =
%Wasm{}
|> Wasm.changeset(params)
|> Map.put(:action, :validate)
|> to_form(as: "wasm_form")
Upvotes: 4