[wp-trac] [WordPress Trac] #30937: Add Customizer transactions

WordPress Trac noreply at wordpress.org
Wed Jan 21 17:12:41 UTC 2015


#30937: Add Customizer transactions
-------------------------+------------------------------
 Reporter:  westonruter  |       Owner:
     Type:  enhancement  |      Status:  new
 Priority:  normal       |   Milestone:  Awaiting Review
Component:  Customize    |     Version:
 Severity:  normal       |  Resolution:
 Keywords:  has-patch    |     Focuses:  javascript
-------------------------+------------------------------
Description changed by westonruter:

Old description:

> The existence of modified settings in the Customizer is restricted to a
> browser window. When a user changes a control in the Customizer and a
> setting is thus modified, the changed setting is sent to the Customizer
> preview either by JavaScript (`postMessage`), or an Ajax POST request is
> made to the URL being previewed with the `customized` data sent along,
> and then this incoming `$_POST` data is added to filters so that the
> changes are reflected when WordPress builds the page to display in the
> preview iframe.
>
> A downside to this current approach is that if the user navigates away
> from the Customizer, they lose their settings. To get around this, we
> added an AYS dialog in #25439, but this still doesn't account for browser
> crashes or system failures.
>
> Another downside is that whenever the preview needs to load a new URL it
> has to re-send all the modified settings so that the Customizer preview
> will have them available to add to the filters, since the Customized data
> is not persisted in WordPress in any way. There's also a performance hit
> to continually send all data with each request, which was partially
> improved with #28580.
>
> So I propose that we introduce persisted Customizer settings, in other
> words '''Customizer transactions'''.
>
> When opening the Customizer for the first time, a transaction UUID can be
> generated. Whenever a setting changes, an Ajax request sends the updated
> setting to WordPress to be persisted in a `wp_transaction` post which has
> a post_name corresponding to that UUID (or a post is created dynamically
> if not existing already). Any changes made in the Customizer then get
> amended to the same `wp_transaction` post, which has a key/value JSON
> blob as its `post_content`.
>
> Instead of POSTing all of the customized settings to the preview, we then
> only have to reference the transaction UUID when loading URLs into the
> Customizer preview. Indeed, the patch I've worked on does this in a way
> that resolves #30028 (Load Customizer preview iframe with natural URL)
> and #23225 by injecting the transaction UUID as a query parameter for the
> URL being previewed and then amended to any site URL generated in the
> preview, so that navigating around the site in the preview (even
> following standard links with `GET` requests) will ensure that the
> transaction will continue to be referenced and loaded. In this way, when
> a transaction is updated the Customizer preview only has to do
> `location.reload()` instead of the current approach of doing an Ajax POST
> request followed by `document.write()` in the iframe window.
>
> As noted in #20714, my patch also injects the transaction UUID in form
> submissions (GET and POST), as well as in jQuery Ajax requests. This
> allows you to preview setting changes for full web applications in the
> Customizer.
>
> Other side-benefits that Customizer transactions will bring us:
>
>  * Settings can be drafted and then returned to later.
>  * Settings can be collaborated on by multiple users (though not
> concurrently, without some Heartbeat system in place)
>  * The capability to publish a `wp_transaction` post can be limited by
> role, allowing 'Customizer contributors' to submit settings as pending
> review.
>  * Settings can be scheduled for going live at a later date by saving the
> transaction post simply with `post_status=future`
>  * With each save in the Customizer resulting in a new transaction post
> being created, then there is Customizer revision history (see #31088,
> #31089)
>  * Accessing the Customizer preview for a transaction needs no special
> capabilities since the transaction is updated by an authorized user via
> single Ajax request. This means that Customizer previews (frontend URLs
> with the transaction UUID amended) can be shared for anonymous users to
> review.
>
> Something else that motivated my investigation into Customizer
> transactions is thinking about how the Customizer will relate to the
> '''JSON REST API'''. How can the REST API be improved with the
> Customizer? If the REST API provides a `transactions` endpoint for doing
> CRUD operations on Customizer settings, and if the REST API also has
> global recognition for a `customize_transaction_uuid` query parameter in
> all requests, then it becomes possible for the Customizer to be used to
> preview changes in applications that merely interact with the JSON REST
> API, as long as they include the transaction UUID in the requests.
>
> There's a lot of exciting possibilities introduced with Customizer
> transactions.
>
> Initial alpha Core patch for Customizer transactions can be seen at:
> https://github.com/xwp/wordpress-develop/pull/61
>
> Related:
>  * #30028: Load Customizer preview iframe with natural URL
>  * #30936: Dynamically create WP_Customize_Settings for settings created
> on JS client
>  * #27355: Customizer: Add framework for partial preview refreshes
>  * #20714: Theme customizer: Impossible to preview a search results page
>  * #23225: Customizer is Incompatible with jQuery UI Tabs.
>  * #28721: Scheduled changes for the customizer

New description:

 The existence of modified settings in the Customizer is restricted to a
 browser window. When a user changes a control in the Customizer and a
 setting is thus modified, the changed setting is sent to the Customizer
 preview either by JavaScript (`postMessage`), or an Ajax POST request is
 made to the URL being previewed with the `customized` data sent along, and
 then this incoming `$_POST` data is added to filters so that the changes
 are reflected when WordPress builds the page to display in the preview
 iframe.

 A downside to this current approach is that if the user navigates away
 from the Customizer, they lose their settings. To get around this, we
 added an AYS dialog in #25439, but this still doesn't account for browser
 crashes or system failures.

 Another downside is that whenever the preview needs to load a new URL it
 has to re-send all the modified settings so that the Customizer preview
 will have them available to add to the filters, since the Customized data
 is not persisted in WordPress in any way. There's also a performance hit
 to continually send all data with each request, which was partially
 improved with #28580.

 So I propose that we introduce persisted Customizer settings, in other
 words '''Customizer transactions'''.

 When opening the Customizer for the first time, a transaction UUID can be
 generated. Whenever a setting changes, an Ajax request sends the updated
 setting to WordPress to be persisted in a `wp_transaction` post which has
 a post_name corresponding to that UUID (or a post is created dynamically
 if not existing already). Any changes made in the Customizer then get
 amended to the same `wp_transaction` post, which has a key/value JSON blob
 as its `post_content`.

 Instead of POSTing all of the customized settings to the preview, we then
 only have to reference the transaction UUID when loading URLs into the
 Customizer preview. Indeed, the patch I've worked on does this in a way
 that resolves #30028 (Load Customizer preview iframe with natural URL) and
 #23225 by injecting the transaction UUID as a query parameter for the URL
 being previewed and then amended to any site URL generated in the preview,
 so that navigating around the site in the preview (even following standard
 links with `GET` requests) will ensure that the transaction will continue
 to be referenced and loaded. In this way, when a transaction is updated
 the Customizer preview only has to do `location.reload()` instead of the
 current approach of doing an Ajax POST request followed by
 `document.write()` in the iframe window.

 As noted in #20714, my patch also injects the transaction UUID in form
 submissions (GET and POST), as well as in jQuery Ajax requests. This
 allows you to preview setting changes for full web applications in the
 Customizer.

 Other side-benefits that Customizer transactions will bring us:

  * Settings can be drafted and then returned to later.
  * Settings can be collaborated on by multiple users (though not
 concurrently, without some Heartbeat system in place)
  * The capability to publish a `wp_transaction` post can be limited by
 role, allowing 'Customizer contributors' to submit settings as pending
 review.
  * Settings can be scheduled for going live at a later date by saving the
 transaction post simply with `post_status=future`
  * With each save in the Customizer resulting in a new transaction post
 being created, then there is Customizer revision history (see #31088,
 #31089)
  * Accessing the Customizer preview for a transaction needs no special
 capabilities since the transaction is updated by an authorized user via
 single Ajax request. This means that Customizer previews (frontend URLs
 with the transaction UUID amended) can be shared for anonymous users to
 review.

 Something else that motivated my investigation into Customizer
 transactions is thinking about how the Customizer will relate to the
 '''JSON REST API'''. How can the REST API be improved with the Customizer?
 If the REST API provides a `transactions` endpoint for doing CRUD
 operations on Customizer settings, and if the REST API also has global
 recognition for a `customize_transaction_uuid` query parameter in all
 requests, then it becomes possible for the Customizer to be used to
 preview changes in applications that merely interact with the JSON REST
 API, as long as they include the transaction UUID in the requests.

 There's a lot of exciting possibilities introduced with Customizer
 transactions.

 Initial alpha Core patch for Customizer transactions can be seen at:
 https://github.com/xwp/wordpress-develop/pull/61

 Related:
  * #30028: Load Customizer preview iframe with natural URL
  * #30936: Dynamically create WP_Customize_Settings for settings created
 on JS client
  * #27355: Customizer: Add framework for partial preview refreshes
  * #20714: Theme customizer: Impossible to preview a search results page
  * #23225: Customizer is Incompatible with jQuery UI Tabs.
  * #28721: Scheduled changes for the customizer
  * #31088/#31089: Customizer revisions

--

--
Ticket URL: <https://core.trac.wordpress.org/ticket/30937#comment:6>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list