innocentoldguy

innocentoldguy

Ecto noob question here. I followed this tutorial for dynamically adding and deleting the many side of a one-to-many relationship in a Phoenix LiveView: Nested model forms with Phoenix LiveView · FullstackPhoenix

Just to keep it easy, lets say I have a one-to-many relationship between a Blog and its Comments.

Using the example in the above tutorial, I can dynamically add multiple Comments to a Blog. I can also delete Comments. If I delete a Comment that is in the changset, but not committed to the database yet (one with a temp ID), then I can continue to add more Comments. However, if I delete a Comment that is already in the database and then try to add another Comment, I get this error:

(RuntimeError) cannot replace related %Test.Blogs.Entry{__meta__: #Ecto.Schema.Metadata<:loaded, "comments">, delete: nil, id: 1, inserted_at: ~N[1970-01-01 00:00:00], blog: #Ecto.Association.NotLoaded<association :blog is not loaded>, blog_id: 1, temp_id: nil, title: "Test Blog", updated_at: ~N[1970-01-01 00:00:00]}. This typically happens when you are calling put_assoc/put_embed with the results of a previous put_assoc/put_embed/cast_assoc/cast_embed operation, which is not supported. You must call such operations only once per embed/assoc, in order for Ecto to track changes effeciently [sic].

My code is exactly the same as the code in the tutorial at this point, only with different table names. I’m using the latest versions of Phoenix, LiveView, and Ecto.

I’ve scoured the Ecto documentation for about 10 hours now, but I haven’t found a way to get past this error using Ecto changesets, as described in the tutorial. Is there a way to fix this error, or is it just impossible to use Ecto in the way this tutorial suggests?

Showing Posts 1 to 1

innocentoldguy

innocentoldguy OP

I misspoke in my original post. The tutorial I mentioned doesn’t show how to delete existing “Comments” from a “Blog.” I added that using this function:

def handle_event("remove-existing-comment", %{"remove" => id}, socket) do
    deleted_comments = [ id | socket.assigns.deleted_comments ]
    Blog.delete_comment(id)

    comments =
      socket.assigns.blog.commets
      |> Enum.reject(fn comment ->
        comment.id in deleted_comments
      end)

    changeset =
      socket.assigns.changeset
      |> Ecto.Changeset.put_assoc(:comments, comments)

    {:noreply, assign(socket, changeset: changeset, deleted_comments: deleted_comments)}
  end

This works fine, but if I delete an existing comment using this callback, then the function to create new Comments stops working, with the error I mentioned in my original post.

I apologize for attributing this part of the code to the author of the tutorial.

So, again, is there a way to get this to work with Ecto, or is it an impossible scenario?

— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
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

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