Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

feat: add require.ensure error callback #48

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

jharris4
Copy link

Adds support for an optional error callback to the bundle-loader.

This work was originally done by @richardscarrott: https://github.com/richardscarrott/require-error-handler-webpack-plugin/blob/master/src/BundleLoader.js.

This PR uses the version created by @richardscarrott with refactoring to reflect changes from the bundle-loader repo since the fork was created.

@jsf-clabot
Copy link

jsf-clabot commented Apr 16, 2017

CLA assistant check
All committers have signed the CLA.

Copy link

@bebraw bebraw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be a lot better with tests. I wonder if it makes sense to get webpack-defaults in first.

@jharris4
Copy link
Author

Agreed about the tests. Too bad there weren't any tests to begin with...

The require.ensure with error handling does have tests though, so I think it would be sufficient to just test that the correct syntax of require.ensure is called by bundle-loader (for the various permutations of with/without error callback, and with/without chunk name.)

Are there any webpack loaders with tests like that that I could use as a reference for adding some tests to bundle-loader?

Also, what is webpack-defaults?

@bebraw
Copy link

bebraw commented Apr 17, 2017

Also, what is webpack-defaults?

It's a default infrastructure we use for loaders and packages. It comes with opinionated testing setup etc. and allows us to maintain the setup as a dependency (it syncs and migrates project config).

@joshwiens
Copy link
Member

joshwiens commented May 2, 2017

Should be done after defaults, i'll get the pull request in this evening.

@jharris4 - #51 is webpack defaults

@jharris4
Copy link
Author

jharris4 commented May 2, 2017

@d3viant0ne Ok, I'm still a little unsure as to how to proceed with creating tests for this package, if that's a hard requirement for getting my PR merged...

If it helps put minds at east, I have been using this code in production for months now with no issues via a fork of bundle-loader which is identical to this PR: https://github.com/jharris4/split-chunk-loader

@michael-ciniawsky michael-ciniawsky changed the title Add support for the require.ensure error callback added in webpack 2.4 feat: add support for the require.ensure error callback May 2, 2017
@joshwiens
Copy link
Member

First and foremost, the pull request for defaults has to land in master which will lay the foundations to actually author tests and landing this with defaults is more about not releasing back to back Major version releases than anything else.

As far as tests for this specific pull request, we need to add tests to cover the existing functionality. If those don't provide a path forward, we can deal with it then.

@jharris4
Copy link
Author

jharris4 commented Jun 8, 2017

Any word on the defaults? Anything I can do to help move this forward and get it merged?

@michael-ciniawsky
Copy link
Member

@jharris4 Should be on the finishing line, sry for the inconvenience

@joshwiens
Copy link
Member

Literally working on it now :)

@sdhhqb
Copy link

sdhhqb commented Aug 9, 2017

Hope the next release will coming soon! Currently I just edit line.27 to handle loading errors.

"	}, function(err) { cb(null, err); }, " + chunkNameParam + ");\n",

@jharris4
Copy link
Author

@d3viant0ne Any updates on the status of this? Anything I can do to try and help speed things along?

@joshwiens
Copy link
Member

@jharris4 - It's technically done. I'll pick up the latest version of defaults & get the other org maintainers to give it a final once over before it merges.

@jharris4
Copy link
Author

@d3viant0ne Still curious to see if this is gonna move forward :-)

If it helps to get things moving I can try and do some work to integrate webpack-defaults into the fork of this repo that i'm using (https://github.com/jharris4/split-chunk-loader) to make sure everything works. But I could use some pointers on how to do that... :-)

index.js Outdated
"module.exports = function(cb) {\n",
" require.ensure([], function(require) {\n",
" cb(require(", loaderUtils.stringifyRequest(this, "!!" + remainingRequest), "));\n",
"module.exports = function(successCallback, errorCallback) {\n",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

function (successCallback, errorCallback) => function(cb, err)

Copy link
Author

@jharris4 jharris4 Dec 21, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you were suggesting rename successCallback to cb and errorCallback to err so I've done that.

index.js Outdated
" cbs = null;\n",
" for(var i = 0, l = callbacks.length; i < l; i++) {\n",
" callbacks[i](data);\n",
"var cbs,\n",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove all ending \n in the code snippets and instead result.join('\n') them on line 73

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch! I've made the change.

@michael-ciniawsky michael-ciniawsky changed the title feat: add support for the require.ensure error callback feat: add require.ensure error callback Dec 21, 2017
@jharris4
Copy link
Author

@michael-ciniawsky I made the changes you requested. Dare I hope that you guys might be close to actually merging this? :-)

@hampusohlsson
Copy link

Any intent of merging this?

@jharris4
Copy link
Author

@michael-ciniawsky @d3viant0ne

Hi guys, so it has been 11 months since I created this PR! Is there anything I can do to move this forward?

I'm starting to look at upgrading to webpack 4 and hopefully this loader won't require any changes for that...

@jharris4
Copy link
Author

@michael-ciniawsky @d3viant0ne I just merged the changes from version 0.5.6 so the build should be passing again soon.

@jharris4
Copy link
Author

@michael-ciniawsky @d3viant0ne Or not! No idea why the travis builds are failing... Something about the rake command. The command "rake" exited with 1.

@jharris4
Copy link
Author

@michael-ciniawsky @d3viant0ne I just fixed a small issue with the error callback not getting passed the error object in non-lazy mode.

We've been using this in production for months now. Any chance we can get this merged so that I can stop maintaining https://github.com/jharris4/split-chunk-loader ? :-)

@maksis
Copy link

maksis commented Feb 18, 2019

I'm using the code from this PR and it's working well. Is there any hope with getting this merged?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

8 participants