Only auto-save JavaScriptComponent/AssetLibrary config entities when there are actual changes

Created on 26 February 2025, about 1 month ago

Overview

πŸ› Once previewed in XB an entity with no changes will still show up in "Review x changes" Active solves a very noticeable, in-your-face problem.

It added missing infrastructure and used it for ApiLayoutController::post() (aka what we use for generating previews: client posts the entire layout+model, server responds with preview β€” and we use that entire layout+model to auto-save for content entity + PageRegions).

But in principle, the same problem is true for JavaScriptComponent and AssetLibrary config entities β€” it's just far less prominent.

Proposed resolution

Quoting @larowlan from https://git.drupalcode.org/project/experience_builder/-/merge_requests/7...

Because we only call ::recordInitialClientSideRepresentation inside ApiLayoutController it means we're not storing the initial hash of JavascriptComponents and AssetLibrary config entities.

So when we PATCH to \Drupal\experience_builder\Controller\ApiConfigAutoSaveControllers::patch for updates, and that calls \Drupal\experience_builder\AutoSave\AutoSaveManager::save we don't have a hash recorded for comparison.

We need to call recordInitialClientSideRepresentation from \Drupal\experience_builder\Controller\ApiConfigControllers::get for those two entity types.

And we probably should have a test for the PATCH that confirms calling it without changes doesn't create an autosave entry for them.

User interface changes

πŸ“Œ Task
Status

Active

Version

0.0

Component

Auto-save

Created by

πŸ‡§πŸ‡ͺBelgium wim leers Ghent πŸ‡§πŸ‡ͺπŸ‡ͺπŸ‡Ί

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

Sign in to follow issues

Comments & Activities

  • Issue created by @wim leers
  • πŸ‡¦πŸ‡ΊAustralia larowlan πŸ‡¦πŸ‡ΊπŸ.au GMT+10
  • πŸ‡ΊπŸ‡ΈUnited States tedbow Ithaca, NY, USA

    re

    But in principle, the same problem is true for JavaScriptComponent and AssetLibrary config entities β€” it's just far less prominent.

    I think this is actually pretty easy to make happen. As soon as your have existing published component all you have to do is click "edit" for the component and this happens. So there is no way to view the code of currently published component without also having it show up in "review x changes"

Production build 0.71.5 2024