Revision log message

Created on 18 March 2024, about 1 year ago

Problem/Motivation

When ETUF is enabled if you publish a node with a revision log message, if the form state value is empty for 'draft', that revision log message is transferred to the next revision.

Adjust the code to make this behave more like core.

Steps to reproduce

Install and configure two languages
install and configure ETUF (this module)
enable and configure workflow editorial for the bundle
enable translation and this modules options for the bundle
create a draft and save (ensure both langages avail),
edit that draft node, add a "revision log message"
publish the node
edit the published node, create a pending draft without entering a revision log message, you'll notice that the published revision "log message" is copied to the pending draft

Solution:
apply patch

Proposed resolution

see patch

Remaining tasks

see patch/review patch

User interface changes

see summary

API changes

minor

Data model changes

N/A

🐛 Bug report
Status

Active

Version

2.0

Component

Code

Created by

🇨🇦Canada joseph.olstad

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

Merge Requests

Comments & Activities

  • Issue created by @joseph.olstad
  • Status changed to Needs review about 1 year ago
  • Issue was unassigned.
  • Status changed to Closed: won't fix 11 months ago
  • Status changed to Active 3 months ago
  • 🇨🇦Canada joseph.olstad

    Some new information came to light on this issue, will followup here soon.

  • 🇨🇦Canada joseph.olstad

    Finally found a solution to this, in a hook_node_presave for example a client did this to fix it:

    
    
        $entity_log_message = $entity->get('revision_log')->getString();
       // Use a database query to get the current revision ID of a node.
        $connection = Database::getConnection();
          $query = $connection->select('node_field_data', 'nfd')
          ->fields('nfd', ['vid'])
          ->condition('nfd.nid', $entity_id)
          ->condition('nfd.langcode', $langcode);
    
        $current_revision_id = $query->execute()->fetchField();
        if (isset($current_revision_id) && is_numeric($current_revision_id)) {
          $current_revision = \Drupal::entityTypeManager()->getStorage('node')->loadRevision($current_revision_id);
          $current_revision_log_message = $current_revision->get('revision_log')->getString();
    
          if ($current_revision->isPublished() && $moderation_state == 'draft') {
            if ($entity_log_message == NULL && $current_revision_log_message != NULL) {
              $entity->set('revision_log', ' ');
            }
          }
        }
    

    This likely will lead to a better fix.

Production build 0.71.5 2024