danubiolima

danubiolima

I’m new in Phoenix Liveview and I’m trying to create a quiz app to studying and pratice that framework.

My app currently have three simple ecto schemas (using postgres as database):

Form schema:

schema "form" do
    field :name, :string

    has_many :questions, Question

    timestamps(type: :utc_datetime)
 end

Question schema:

schema "question" do
    field :type, :string, default: "text"
    field :title, :string

    belongs_to :form, Form
    has_many :item, Item

    timestamps(type: :utc_datetime)
 end

Item schema:

schema "item" do
    field :type, :string, default: "text"
    field :title, :string

    belongs_to :question, Question

    timestamps(type: :utc_datetime)
 end

My idea with that schemas is build a simple app where students can acess forms and respond to questions to pratice they knowledgments in web development and related fields.

I have a LiveView questions.ex that lists the questions of a form:

defmodule QuizAppWeb.QuizLive.Questions do
  use QuizAppWeb, :live_view

  alias QuizApp.Quiz
  alias QuizApp.Quiz.Form

  alias QuizApp.Repo

  def render(assigns) do
    ~H"""
    <div class="grid grid-cols-1 gap-10">
      <%= for question <- @form.questions do %>
        <div class="bg-blue-200 rounded-2xl shadow-md p-4">
          <h1 class="text-lg font-bold mb-2"><%= question.title %></h1>
          <div class="bg-gray-300 shadow-md p-4">
            <%= for item <- question.item do %>
              <div class="p-2">
                <input type="radio" id="{item.id}" name="#{item.id}-item" value="{item.id}" />
                <label for="{item.id}"><%= item.title %></label>
              </div>
            <% end %>
          </div>
        </div>
      <% end %>

      <.button phx-click="submit_answers">Enviar</.button>
    </div>
    """
  end

  def mount(%{"form_id" => form_id} = _params, _session, socket) do
    questions = Quiz.get_questions(form_id)
    form = Repo.get(Form, form_id) |> Repo.preload(questions: :item)
    changeset = Form.changeset(form, %{})
    {:ok, assign(socket, questions: questions, form: form, changeset: changeset)}
  end

  def handle_event("submit_answers", %{"form_id" => _form_id} = _params, socket) do
    {:noreply, socket}
  end
end

The interface is like this:

I know, the design is not beautiful, but I’ll improve it soon :joy:

The liveview above does not work and I can’t receive the item that user choices. When I click in a item of second question, the items in firsts question unmark automatically.

What is a simple and efficient way to render and store the user answers of the form?

Thank you!

Showing Posts 1 to 3

windexoriginal

windexoriginal

I think the first step would be to get things setup within a form component: phoenix form bindings

Right now it looks like when you click the Enviar button to trigger “submit_answers” you will not be getting the values in your inputs because they are not wrapped in a form. You can confirm this by inspecting the params passed in to your handle_event function.

If you are having issues fitting your form around your schema you should consider making a separate changeset that represents your form. That way you don’t have to marry your UI to your schema.

danubiolima

danubiolima OP

@windexoriginal Thanks!
I don’t have idea if this is correct, but worked for me:

defmodule QuizAppWeb.QuizLive.Questions do
  use QuizAppWeb, :live_view

  alias QuizApp.Quiz.Form

  alias QuizApp.Repo

  def render(assigns) do
    ~H"""
    <div class="grid grid-cols-1 gap-10">
      <.form for={@form} phx-submit="save">
        <%= for question <- @form.data.questions do %>
          <div class="bg-blue-200 rounded-2xl shadow-md p-4">
            <h1 class="text-lg font-bold mb-2"><%= question.title %></h1>
            <div class="bg-gray-300 shadow-md p-4">
              <%= for item <- question.item do %>
                <div class="p-2">
                  <input type="radio" id={item.id} name={question.id} value={item.id} />
                  <label for={item.id}><%= item.title %></label>
                </div>
              <% end %>
            </div>
          </div>
        <% end %>
        <.button type="submit">Save</.button>
      </.form>
    </div>
    """
  end

  def mount(%{"form_id" => form_id} = _params, _session, socket) do
    form =
      Repo.get(Form, form_id)
      |> Repo.preload(questions: :item)
      |> Ecto.Changeset.change()
      |> to_form()

    {:ok, assign(socket, form: form)}
  end

  def handle_event("save", params, socket) do
    params |> dbg()
    {:noreply, socket}
  end
end

When I click in “Save” button, it returns a map where the key is the question_id and the value is the item id that user choiced, like this:

params #=> %{
  "655eb6bb-4b3b-463d-b975-b3bdd8ea032a" => "d9e1ddae-80cd-4853-a113-fa1ab358cba4",
  "e981890c-0005-4cd8-81c4-3d2aebf7b1a2" => "407f2b2b-9bbf-44f6-9533-acdc54e9146a"
}

I would like to know if I’m making a mistake or something else. Thank you!

LostKobrakai

LostKobrakai

The changeset of the form should be based on the schema of the submitted data, not on the details about of the form. Most offen those are dynamic though, which can be problematic with changesets, which use atoms for fields - and you generally want to avoid creating atoms from user input in a system.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
kszambelanczyk
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
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
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
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
New

Other Trending Topics Top

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
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews