ecode_nntt

ecode_nntt

I want to implement a view for teachers so they can add their students. It will be just a form containing name, age. and a add student button when the teacher clicks it shall add another form underneath the first and she can add as many as they can but the trick that every field shall have its own validations and then the render submit they will all be saved in the db.

    attributes do
      uuid_primary_key(:id)
  
      attribute :email, :ci_string do
        allow_nil?(false)
        public?(true)
      end
  
      attribute :hashed_password, :string do
        allow_nil?(false)
        sensitive?(true)
      end
  
      attribute :age, :string do
        allow_nil?(false)
      end
  
      attribute :full_name, :string do
        allow_nil?(false)
      end
      
      create_timestamp(:inserted_at)
      update_timestamp(:updated_at)
    end

these are my attributes in the resource file and i also created the action create that i’ll be using while submitting and it works but with only one field which is the first one

      defp render_step(1, assigns) do
        ~H"""
         <div class="flex flex-col flex-1">
          <%= for {student, index} <- Enum.with_index(@students) do %>
          <.live_component
            id={"students_form_add_#{index}"}
            module={Myapp.Students}
            student={student}
            changeset={@changeset}
          />
         <% end %>
          <button phx-click="add_student" class="border border-[#121212] rounded-lg 
     flex flex-row gap-2 py-1.5 px-3 cursor-pointer w-1/5 mt-4">
              <img src="/images/pluss.svg">
              <p class="text-sm text-nowrap"> <%= gettext("Add another student") %> 
            </p>
          </button>
        </div>
        """
      end

        @impl true
        def mount(_params, _session, socket) do
          {:ok,
           socket
           |> assign(students: [%{name: "", age: ""}]) 
           |> assign(
   changeset:
     Myapp.Accounts.Student
     |> AshPhoenix.Form.for_create(:create, forms: [auto?: true])
     |> to_form()
          )
          }
        end

      @impl true
      def handle_event("validate_students", %{"form" => params}, socket) do
        changeset = AshPhoenix.Form.validate(socket.assigns.changeset, params)
        {:noreply, assign(socket, changeset: changeset)}
      end

this render step, mount and the validation are in the liveview and the actual form is in a live_component because i was trying to loop over the live_component itself

        def render(assigns) do
          ~H"""
          <div class="flex flex-col flex-1 ml-5">
          <.form id="student_form" phx-change="validate_students" phx- 
     submit="save_students">
          <div class="flex space-x-4 items-center mb-4">
          <div class="mt-4 flex-1">
          <.input type="text" field={@changeset[:name]} label="Name" class="border-0 
   mt-1 block w-full focus:ring-[#FAFAFA] border border-[#FAFAFA] bg-[#FAFAFA] 
  rounded-lg px-2 py-3" placeholder="--"  />
          </div>
              <div class="mt-4 flex-1">
                <div class="relative">
                <.input type="text" field={@changeset[:age]} label="Age" class="border-0 
  mt-1 block w-full focus:ring-[#FAFAFA] border border-[#FAFAFA] bg-[#FAFAFA] 
  rounded-lg px-2 py-3" placeholder="--"  />
                <div class="absolute inset-y-0 pl-3 flex items-center">
                  </div>
                </div>
              </div>
          </div>
      
          <div class="flex justify-end gap-2 " id="buttons">
            <button  phx-click="previous_step" class="flex bg-[#F7F7F7] text-black px-4  
    py-2 mt-4 rounded-md items-end rounded-xl"> <%= gettext("Previous") %> 
  </button>
            <button
                type="submit"
                class="flex bg-[#1E1E20] text-white px-4 py-2 mt-4 rounded-md items-end 
   rounded-xl disabled:bg-gray-400 disabled:cursor-not-allowed"
                >
                Save student
               </button>
                </div>
          </.form>
            </div>
          """
        end  

and this is the render in the live component. Can please anyone tell me how could i implement this specially the validation part. the for loop over the livecomponent it does add a form underneath the first however when I write in one it writes in all inputs with the same name.

Showing Posts 1 to 1

zachdaniel

zachdaniel

Creator of Ash

The described sort/drop/add params are not yet released, but this new guide should still be of use. I plan on releasing it next week: New tools, and a new guide on nested forms with `AshPhoenix.Form`!

— All posts loaded —

Where Next? Top

Trending in Questions Top

katta
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
budgie
A little off-topic, but I feel like people here have a good head on their shoulders. I used to be quite good at making software. Was luc...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews