Open yugandhar02 opened 1 month ago
@rofe @sdmcraft The current assumption is that script will be loaded only once in block and works in most of the cases. In case developer is using some utility function which internally loads some script, he/she will have to ensure that function is not called multiple times in a row Can you please suggest if this issue is worth addressing ?
@yugandhar02 as far as I can see, you can await
both functions. They resolve their promise once the element is loaded:
In any case, this code is in aem.js
which is being maintained in https://github.com/adobe/aem-lib.
@rofe
you can await both functions. They resolve their promise once the element is loaded
that's right. but when the function is invoked again with same parameter while script is still getting dowloaded or parsed, it will return resolved promise. the issue can be reproduced with this test page https://issue-399-demo--franklin-assets-selector--hlxsites.hlx.page/_drafts/yug/demo
Expected Behaviour
When loadScript or loadCSS is called multiple times in parallel, the subsequent invocations after first call doesn't wait for script loading or parsing. It returns resolved promise
Actual Behaviour
loadScript or loadCSS should return pending promise if loading or parsing is still in progress
Steps to Reproduce
Sample Code that illustrates the problem
Test page where it fails: https://issue-399-demo--franklin-assets-selector--hlxsites.hlx.page/_drafts/yug/demo
Test page with fix applied: https://issue-399-fix--franklin-assets-selector--hlxsites.hlx.page/_drafts/yug/demo