-
-
Notifications
You must be signed in to change notification settings - Fork 470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(index): add data-url
attribute
#317
Conversation
index.js
Outdated
@@ -12,7 +13,16 @@ module.exports = function () {}; | |||
module.exports.pitch = function (request) { | |||
if (this.cacheable) this.cacheable(); | |||
|
|||
var options = loaderUtils.getOptions(this) || {}; | |||
var options = clone(loaderUtils.getOptions(this) || {}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't use clone, it is decrease perf and bad practice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok.
clone
was used because the recommend in loader-utils
.
Now it is removed, and the logic is splited
Also please describe use case. Thanks! |
Codecov Report
@@ Coverage Diff @@
## master #317 +/- ##
==========================================
+ Coverage 98.43% 98.66% +0.22%
==========================================
Files 4 4
Lines 64 75 +11
Branches 21 24 +3
==========================================
+ Hits 63 74 +11
Misses 1 1
Continue to review full report at Codecov.
|
Some times we need some ways to find out
The differences can be distinct. |
@bukuta Please accept |
package.json
Outdated
@@ -15,6 +15,7 @@ | |||
"options.json" | |||
], | |||
"dependencies": { | |||
"clone": "^1.0.4", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed
index.js
Outdated
@@ -13,6 +13,16 @@ module.exports.pitch = function (request) { | |||
if (this.cacheable) this.cacheable(); | |||
|
|||
var options = loaderUtils.getOptions(this) || {}; | |||
var context = options.context || this.rootContext || (this.options && this.options.context); | |||
var attrs = {}; | |||
for(var key in options.attrs||{}){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
space between ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Formatted
index.js
Outdated
var context = options.context || this.rootContext || (this.options && this.options.context); | ||
var attrs = {}; | ||
for(var key in options.attrs||{}){ | ||
var name = loaderUtils.interpolateName(this,options.attrs[key],{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add simple regex to detect [here]
? To avoid perf problem?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I add a flag and a regexp
@@ -83,6 +96,8 @@ module.exports.pitch = function (request) { | |||
"", | |||
"var options = " + JSON.stringify(options), | |||
"", | |||
dynamicAttributesMatched ? "options.attrs = " + JSON.stringify(attrs) : "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just check Object.keys(attrs).length > 0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The attrs
object contains all attributes plain and dynamic. and ony dynamic attributes detected, the override is need.
test/basic.test.js
Outdated
// Run | ||
let expected = [ | ||
existingStyle, | ||
`<style x-from="style.css" type="text/css">${requiredCss}</style>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add tests around nested (i.e. with context option) to ensure path is right
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All good, just add one tests 👍
README.md
Outdated
@@ -210,7 +210,7 @@ import style from './file.css' | |||
{ | |||
test: /\.css$/, | |||
use: [ | |||
{ loader: 'style-loader', options: { attrs: { id: 'id' } } } | |||
{ loader: 'style-loader', options: { attrs: { id: 'id' , 'x-from': '[path][name].[ext]'} } } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about a data attribute instead of a non-standard one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bukuta let's use by default data-from
in tests and README and we can merge this
README.md
Outdated
@@ -210,7 +210,7 @@ import style from './file.css' | |||
{ | |||
test: /\.css$/, | |||
use: [ | |||
{ loader: 'style-loader', options: { attrs: { id: 'id' } } } | |||
{ loader: 'style-loader', options: { attrs: { id: 'id' , 'x-from': '[path][name].[ext]'} } } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bukuta let's use by default data-from
in tests and README and we can merge this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks very good. Thanks!
@@ -210,7 +210,7 @@ import style from './file.css' | |||
{ | |||
test: /\.css$/, | |||
use: [ | |||
{ loader: 'style-loader', options: { attrs: { id: 'id' } } } | |||
{ loader: 'style-loader', options: { attrs: { id: 'id' , 'data-from': '[path][name].[ext]'} } } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
data-from
=> data-url
@@ -14,6 +14,19 @@ module.exports.pitch = function (request) { | |||
|
|||
var options = loaderUtils.getOptions(this) || {}; | |||
|
|||
var attrs = {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the request
or this.resourcePath
and shorten it instead of interpolating, we should already have the url
here
var attrs = {
'data-url': request || this.resourcePath
}
data-url
attribute
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bukuta can you describe real use case? Why just don't use source maps?
Closing due to inactivity feel free to reopen once the requested chances are addressed :) |
Looks like it's almost done, can we reopen? |
Lets say I have 2 standalone apps. Each one needs to check whether the css libraries it needs have been loaded prior to loading them. If I load app 1, and this loads some css libs that app 2 also will use, without a method of identifying the css I have imported, how can I identify if the css has already been loaded? I think the only good way is with this feature. |
What kind of change does this PR introduce?
Feature
Did you add tests for your changes?
Yes
If relevant, did you update the README?
Yes
Summary
Add the support of dynamic attributes with placeholder as
file-loader
does, supply some useful informations when debugging.It may fix the problem
Does this PR introduce a breaking change?
No breaking change
Other information
None