Description
Hi,
In the example shown, the URL is known upfront and hardcoded. Is it possible to pass in props into the wrapper that helps determine what the URL is and then inject that URL being used?
In my use case, bing maps api, I need to add in query params to set the Language or local.
example of what i'm looking for.
<WrapperComponent urlProps={} {… componentProps} />
Then in the WrapperComponent it takes the url props and builds the URL that is injected into the default.
export default AsyncScriptLoader(BingMapWidget, URL, {
callbackName: callbackName,
globalName: globalName,
});
However, its not clear to me if it's possible to expose the wrapper to take in those params so then i can run a method to compute the URL and spit it back to the AsyncScriptLoader
Also i notice that you are attaching to the global scope. What happens if you launch two instances of the wrapped components. Would there be issues since they will share the same callback?
Thanks,
Derek