Node creation date is populated on creation form

Created on 19 April 2016, almost 9 years ago
Updated 18 May 2023, almost 2 years ago

When you visit the node add form as a user who can edit the authoring information, you'll find that the "Authored on" field contains an actual date and time (when the form was generated). This is a departure from prior versions of Drupal, where the field would start out empty so that the form submission time was used.

Now you would have to remember to manually wipe out that field for the correct time to be saved.

πŸ› Bug report
Status

Needs work

Version

10.1 ✨

Component
Node systemΒ  β†’

Last updated about 6 hours ago

No maintainer
Created by

πŸ‡ΊπŸ‡ΈUnited States kevin.dutra

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

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡¦πŸ‡ΊAustralia pameeela

    This is still the case, but the patch to remove the default value breaks the node add form with:
    InvalidArgumentException: The timestamp must be numeric. in Drupal\Component\Datetime\DateTimePlus::createFromTimestamp() (line 201 of core/lib/Drupal/Component/Datetime/DateTimePlus.php).

  • πŸ‡³πŸ‡±Netherlands idebr
  • πŸ‡¦πŸ‡ΊAustralia acbramley

    We could probably do something like we have with the changed date by implementing an interface and setting the date if it's empty in ContentEntityForm

    We'd want to:

    1. Add an EntityCreatedInterface
    2. Add an EntityCreatedTrait
    3. Have Node implement and use those
    4. Remove the default value of the authored on date in the form. I think this would be moving logic out of CreatedItem::applyDefaultValue into CreatedItem::preSave like ChangedItem (so it only sets the value when empty)
    5. Set the creation date in the form?

    I think this would then also solve πŸ› Node created timestamp and updated timestamp are different for new nodes Needs work

  • πŸ‡¨πŸ‡­Switzerland berdir Switzerland

    Created is a specific field type that sets the default value: \Drupal\Core\Field\Plugin\Field\FieldType\CreatedItem. The node form uses the default widget for that field type, no special logic.

    And ChangedItem extends from CreatedItem and just extends that to then also update it on save.

    IMHO that's by design. All fields have the capability to have a default value and that's set when the entity is created, not actually related to the form at all.

  • πŸ‡¦πŸ‡ΊAustralia acbramley

    @berdir I'm happy to close as works as designed if there's agreement on that :)

  • πŸ‡ΊπŸ‡ΈUnited States mradcliffe USA

    Both this issue and πŸ› Node created timestamp and updated timestamp are different for new nodes Needs work are now postponed. The latter issue was waiting on this issue to resolve it. One of those two should remain open.

    It is not a great user experience to have to empty out the time/date every time I want to write content. This is buried in vertical tabs, and can be easy to miss depending on the theme. If I write content, and it takes me 20 minutes to write it, I should not have my creation date 20 minutes ago and the updated date the present time. Both created and changed should be equal on submit when the entity is new.

    @kevin.dutra's comment πŸ› Node created timestamp and updated timestamp are different for new nodes Needs work mentions

    That's the thing, this issue does not occur when creating an entity without the form. It only occurs when using the form because the entity is not created and saved within the same request. (It's created in one request when the form is generated and saved in another when the form is submitted.)

    So it is related to the form in-so-much as the form requires multiple requests carrying an unsaved entity.

    I think opening up the other issue as Active is appropriate now because it is more related to entity isNew and saving.

  • πŸ‡¨πŸ‡­Switzerland berdir Switzerland

    As far as the entity API is concerned, *create* is the operation that creates a new entity object, not when its' saved. For a form, that happens kind of the first time you access the node add form. There are some edge cases form state cache, so on a form without ajax and without permission to set a created date, you _might_ actually get it to use the time of the submit, haven't tested.

    I understand that the form workflow changes a bit how the API works due to storing the value and the created entity, but it's not really a form and even less a node.module issue.

    I get that this is in some cases unexpected, but changing this, especially after it has worked like this for 10 years, is also going to run into some edge cases. What about previewing an entity before it's saved, what would you expect there for something that displays the creation date? Also, as soon as drafts and workflows are involved, you're likely more interested in a published time than a created time anyway in many cases? Meaning, changing this would still not really fulfill expectations that people might have?

Production build 0.71.5 2024