WordPress.org

Make WordPress Core

Opened 4 years ago

Last modified 14 months ago

#43733 assigned task (blessed)

Replace Underscores.js with Lodash.js

Reported by: ChopinBach Owned by: adamsilverstein
Milestone: Awaiting Review Priority: normal
Severity: normal Version:
Component: External Libraries Keywords: dev-feedback needs-patch
Focuses: javascript Cc:

Description

Should we replace Underscores.js with Lodash.js?

Discussed in Slack today (April 10th, 2018).

It was suggested for converting WP Core to lodash, jscodeshift could be leveraged.

Here is a list of API pairings between lodash and underscores.

Concerns:

Lodash 5.0 is set to have some backwards incompatible changes that could make the migration awkward.

General backwards compatibility concerns as well. How do we want to handle Backwards Compat? Most likely only core will be changed, and a migration path/tool will be offered out to theme/plugin authors.

Change History (19)

This ticket was mentioned in Slack in #core-js by chopinbach. View the logs.


4 years ago

#2 @johnbillion
4 years ago

  • Keywords dev-feedback added

Can someone summarize the reasons for switching?

#3 @johnbillion
4 years ago

  • Focuses javascript added

#5 @netweb
4 years ago

  • Type changed from enhancement to task (blessed)

#6 @adamsilverstein
4 years ago

@johnbillion quick summery: since Gutenberg has chosen to use lodash, we should switch core's usage over as well when possible to avoid loading duplicate, redundant libraries. For example, using media in Gutenberg means we are loading both lodash and underscore.

#7 @sc0ttkclark
3 years ago

Just a friendly reminder from your neighborhood plugin developer that you'll want to replace underscore usage in core with lodash, but leave underscore as a registered script while noting in the official WP release that it has been deprecated and will be removed in WP 5.x (whatever version that might be) -- so that plugins using underscore can continue to remain compatible with this upcoming major WP release while they make the transition.

This ticket was mentioned in Slack in #core-js by adamsilverstein. View the logs.


3 years ago

#9 @Hareesh Pillai
3 years ago

  • Keywords needs-patch added

#10 @desrosj
20 months ago

@adamsilverstein @aduth Can you summarize what the levels of effort and risk would be for tackling this?

@sc0ttkclark 100%. I don't know that we would deprecate it, but leaving it available through wp_enqueue_script() or as a dependency is definitely the best way for backwards compatibility. I think we could continue packaging Underscore for a few releases, or we could switch to loading it from an external CDN.

#11 @desrosj
20 months ago

To clarify, what is the level of effort for replacing Underscore with Lodash throughout Core only with the knowledge that plugins/themes can continue enqueuing Underscore if they'd like.

#12 @aduth
20 months ago

If I recall correctly, it should be a generally low-risk effort. Underscore and Lodash are very similar tools, and in a large number of cases share an identical API. Sometimes there are small differences in naming.

Also mentioned in the original ticket, Lodash has a migration guide here:

https://github.com/lodash/lodash/wiki/Migrating

In the past, I've observed some specific differences that can be more subtle and cause some issues:

https://github.com/WordPress/gutenberg/issues/4043#issuecomment-361049257

Generally speaking, there should be a fairly straight-forward transition for the majority of usage.

Personally, I think the value of undertaking the effort should be considered, or at least targeting specific core scripts which currently depend on Underscore, and where there's a high value of migrating to Lodash. What comes to mind for me is reducing the chances that both Lodash and Underscore would be loaded on the same page in a default installation of WordPress. For example, it can be seen on the post editor screen that both are loaded (noted in comment above).

My suggestion would be to focus on those packages first. It's a bit hard to pinpoint, since anything which indirectly depends on Underscore will cause it to be loaded. Unless I'm unaware of some better option, it may require some close inspection of the $wp_scripts global to see how those dependencies are resolved. It might be a good first task to identify and prioritize those dependencies.

This ticket was mentioned in Slack in #core-js by aduth. View the logs.


20 months ago

#14 @adamsilverstein
20 months ago

  • Owner set to adamsilverstein
  • Status changed from new to assigned

#15 @aduth
20 months ago

Discussed briefly during today's JavaScript chat: https://wordpress.slack.com/archives/C5UNMSU4R/p1587479046337900

#16 @adamsilverstein
20 months ago

I spent a little time looking at core use of 'underscore' and found the following dependencies:

The following core scripts depend on 'underscore':

  • 'color-scheme-control'
  • 'backbone'
  • 'wp-util'
  • 'code-editor'
  • 'wp-theme-plugin-editor'
  • 'customize-base'
  • 'customize-models'
  • 'customize-views'
  • 'shortcode'
  • 'wp-api'
  • 'post'
  • 'editor-expand'
  • 'nav-menu'

'backbone' is depended on by:

  • 'wp-backbone'
  • 'wp-playlist'
  • 'customize-models'
  • 'ap-api'
  • 'text-widgets'
  • 'custom-html-widgets'

'wp-backbone' is depended on by:

  • 'revisions'
  • 'customize-widgets'
  • 'customize-nav-menus'
  • 'media-models'
  • 'theme'

What comes to mind for me is reducing the chances that both Lodash and Underscore would be loaded on the same page in a default installation of WordPress. For example, it can be seen on the post editor screen that both are loaded (noted in comment above).

I would agree, fixing the duplicate script load on the editor screen is a high priority, so it makes sense to tackle the use by media-modals first. According to this document: https://github.com/lodash/lodash/wiki/Migrating#backbone Backbone should work fine with Lodash. I'm going to test by creating a lodash-wp-backbone and having media-models depend on that.

#17 @adamsilverstein
18 months ago

I'm going to test by creating a lodash-wp-backbone and having media-models depend on that.

I tried this and ran into some blocking problems. Going to have to take it more slowly to see what breaks.

This ticket was mentioned in Slack in #core-js by adamsilverstein. View the logs.


18 months ago

This ticket was mentioned in Slack in #core-js by adamsilverstein. View the logs.


14 months ago

Note: See TracTickets for help on using tickets.