Create Comment Entity without related NODE?

Created on 13 November 2024, 5 months ago

Problem/Motivation

Cannot create a Comment entity, because there is nowhere I can tell the interface about the NODE this entity will be bond to!

Steps to reproduce

  1. Create new ECA model
  2. select any trigger that operates on a NODE entity
  3. create a new action, Create New Entity
  4. run the Model, starting the trigger
  5. look for the new Comment - you will not find it!

Proposed resolution

Add a new field on the interface, where we can define the token related to the Node entity that the new Comment will be bond to.

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

2.0

Component

User interface

Created by

🇧🇷Brazil marco aurelio rocca

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @marco aurelio rocca
  • 🇩🇪Germany jurgenhaas Gottmadingen

    This is not a bug, it works as designed. Using the create new entity action creates an entity without saving it to the database. Before saving, you can use the set entity field value action to set the ID of the parent entity, and you probably want to set other field values as well. Once all field values are set, you can then save the new comment entity.

  • 🇧🇷Brazil marco aurelio rocca

    Thank you, @Jurgenhaas, will try that!

  • 🇧🇷Brazil marco aurelio rocca

    It worked!
    Just not obvious: had a little effort trying to understand which fields were needed, what their names were and what kind of value they wanted to receive. So I opened a MySql interface and compared the tables, fields and values filled by data from a naturally-created Comment (i.e., from the form under a node entity), and then things worked out.
    Thank you!

  • 🇩🇪Germany jurgenhaas Gottmadingen

    You're right, it's not obvious which entity type requires which fields. This would probably be a good suggestion for an improvement of the API-documentation on Drupal in general, because the same questions apply for module developers, not only for ECA users.

  • 🇬🇧United Kingdom sprucemoose

    Hi Marco,
    Which fields did you find were required in the end? Im running into this same issue but struggling to pick out which fields are have to be filled pre creation and which ones will fill themselves on creation.

  • 🇬🇧United Kingdom sprucemoose

    To answer my own question, the fields I found had to be filled in on the newly created comment entity before save were:

    entity_id (set to the nid of the node the comment is to attach to)
    field_name (set to the field name of the comment field on the node)
    subject
    entity_type (in my case, just node)

    When setting the final field (entity_type) I also selected to save the entity. This was enough to successfully create the comment and attach it to the node.

  • 🇧🇷Brazil marco aurelio rocca

    Very nice, @sprucmoose , those are the same fields I found, too! Sorry I didnt come here before.
    In case it might help people who come around here, the steps I made to find those fields out where:

    • create a Comment, the "normal way", without trying to use ECA (that will give me valid data into the database tables, from where I will be able to take some references)
    • Run the ECA model using just that "Create (comment) Entity" action, and try to save it, withoui knowing it better (that will not work, I know, it sucks)
    • get to the Recent Messages page, in /admin/reports/dblog
    • inspect the error messages found there - some will eventually tell you something like ERROR ... SQL ... INSERT INTO ... and some COLUMN NAME whose absence it is complaining about
    • then go to MySQL (this is possible for me only in a DEV environment, or I wouldnt get access to the PROD tables, in my case here), open the databse and search around those tables whose name start with "comment",
    • try to find there a column with the same name as that one mentioned in the error message
    • in that column name found inside the databse, find the value of the previously created Comment (that you made in "the normal way"
    • try to take this value back to you ECA Model, and use the SET FIELD VALUE Action to insert this value to that field
    • Sometimes you will find out that the name of the COLUMN is not the name of the FIELD, but some of the changes needed to make it work may prove somewhat easy to infer (like turning something_nid into [something:nid]

  • 🇩🇪Germany jurgenhaas Gottmadingen

    This sounds all great, I wish this could be turned into a documentation page in the ECA Guide or a tutorial, as the information in the issue queue is hard to find. If anyone is up for that task, I'd be happy to guide you through the process.

  • 🇬🇧United Kingdom sprucemoose

    Hi Jurgen, I would be more than happy to do this if you can point me in the direction of some instructions as to how

  • 🇩🇪Germany jurgenhaas Gottmadingen

    @sprucemoose nice! The ECA Guide is written in markdown and maintained on our GitLab instance at https://gitlab.lakedrops.com/drupal/documentation/eca

    We've turned off signup because of spam. If you PM me your email address (maybe on Slack), then I can create an account for you. You could create a fork and write a page somewhere in the structure of the guide. We can still move it elsewhere later on then.

    For further details, a chat on Slack (are you there?) is probably more practical.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024