-
Notifications
You must be signed in to change notification settings - Fork 762
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
RequireJS and chart.js module name #147
Comments
From the requireJS usage documentation http://requirejs.org/docs/api.html#jsfiles
would rename |
So, Is there need to change the code of angular-chart.js (If I am making chart.js to chartjs or chart some other name that not ends with .js)? |
I tried to change module ID name from chart.js to chartjs and for the same doing change in angular-chart code, NOT WORKING. |
@vaneshmali - there's the AMD module name chart.js and also the angular module name (which also happens to be chart.js). Changing the AMD module name (should) fix the issue. This part...
|
The fix won't be backward compatible because the AMD module name change would mean that the requires.config and any require.defines that refer to the chart.js module name will need to be changed. |
So the main problem is that the module name of Chart.js ends with |
There should be a standard and easy way to FIX it. Hope it will...!!! Waiting for the same. |
@jantimon - correct, and just to clarify - the problem is with the AMD module name. The Angular module name can remain as chart.js. Does that change the impact / feasibility? It's a problem only for folks who use RequireJS by the way, but it's tricky to get it working in an actual production folder structure if you have RequireJS. Maybe a note in the documentation to change the AMD module name in case of issues would help (unless it's too hacky) Cheers! |
+1 From requirejs docs:
This way, I cannot use this module as a bower component, because I need to change the dependency name and that change would be lost on next update of the component. If you change it to, for instance,
However, this is ignored because of
|
I have/had changed moduleID name from chart.js to chartjs. Nothing helped. Also tried: changing the angular-chart code as per moduleID name. Nothing worked. |
The you did something wrong. I changed it to chartjs, added path config as
|
So if I understand correctly, this will be "solved" just by adding a note to docs? |
@jirihelmich - that's probably my fault in proposing that (in the light of the comment that it was hard to fix). I would definitely love a fix than a workaround in the docs. Cheers! |
Yes, me as well. Otherwise I need to not to use this plugin as a bower component. What prevents us to modify to module ID for AMD and use chartjs instead of chart.js. The fact that it's a kind of breaking change (which, in fact, corrects a huge broken thing :-) )? Because what we need for Require is simply this: e14eca2 |
Is it possible to solve it and release a new version ? Because that's a pretty annoying problem.. Thanks ! |
Please solve that quickly (change priority to high)! |
This wont work for webpack which is able to properly detect chart.js in the modules folder. |
Actually this needs to be solved in this module and nowhere else. |
Sorry but this is just wrong - there was no extension added. The module name is See here: https://github.com/nnnick/Chart.js/blob/master/package.json#L2 |
So, how do you explain it works with the version 0.6.0 ? |
@olee No need to be so rude. All, As @jantimon explained Chat.js is the name of the module, as per https://github.com/nnnick/Chart.js/blob/master/package.json#L2. Before Would removing the entire AMD definition work better then (if it works in 0.0.6, it's that it isn't really needed) or fixing the AMD definition and just reversing the order of AMD and CommonJS for webpack compatibility? |
Yep, removing the definition would help as well.
|
Same problem here.. I tried the 0.6.0 and it works. Is it possible to remove the AMD stuff to makes it work again ? It's not needed, I can confirm that. |
@jantimon could you please confirm the question in the comment above as you implemented this feature originally? Can I just remove I'd rather do that then removing it entirely but will have to do if no better choice. |
Webpack does some special optimizations for the AMD part - this would be broken but beside of that it should work |
Changed the module ID for chart.js as otherwise it doesn't work. Had to add a shim for angular in the require config to make it work in the example: https://github.com/jtblin/angular-chart.js/blob/master/examples/amd.js. I don't think it's a breaking change in the sense that it didn't work before so will just push a patch version, |
Great! Thanks!
|
Now it is broken for webpack users |
Broken in a way you cannot compensate with some webpack configuration? (Sorry, don't know webpack config). Because that was exactly the problem with require - there was NO way how to use it with require. |
@jantimon with a simple example, I can't even get webpack to find Was it working before? |
I am on vacation right now but I'll set up a demo project soon :) |
From what I just saw, I don't think that this is already released into bower. |
Is this still an issue? I'm not able to use charts with requirejs. |
I think the major confusion here is the angular name vs the requirejs name. I sat and beat my head against the keyboard for 3 hours trying to figure out why things werent working when i finally realized the following worked: app.settings.json (we have a utility client that we merge the settings with on bootstrap, this will likely be in a different file for a more vanilla require.js)
app.require.js
|
With the current AMD module ID of
chart.js
, RequireJS will not use any paths configured in requirejs.config. It will instead attempt to load chart.js from <root>/chart.js (where root is where the HTML page which calls RequireJS is located)Here is the folder structure to replicate the problem
index.html
main.js
app.js
RequireJS will attempt to load the chart.js AMD module from ./chart.js instead of ./lib/chart.js. This is because of
See http://requirejs.org/docs/api.html#jsfiles.
The fix would be change the Require.JS module ID of chart.js to something that doesn't end in .js and doesn't fall in any of the 3 buckets above.
This seems to be similar to twitter/typeahead.js#1211.
Also related - this SO question http://stackoverflow.com/questions/31288001 (there's a workaround in this, but I think it's a bit hacky)
The text was updated successfully, but these errors were encountered: