(getScriptURL, options)
| 8 | let idCount = 0; |
| 9 | |
| 10 | export default function makeAsyncScript(getScriptURL, options) { |
| 11 | options = options || {}; |
| 12 | return function wrapWithAsyncScript(WrappedComponent) { |
| 13 | const wrappedComponentName = |
| 14 | WrappedComponent.displayName || WrappedComponent.name || "Component"; |
| 15 | |
| 16 | class AsyncScriptLoader extends Component { |
| 17 | constructor(props, context) { |
| 18 | super(props, context); |
| 19 | this.state = {}; |
| 20 | this.__scriptURL = ""; |
| 21 | } |
| 22 | |
| 23 | asyncScriptLoaderGetScriptLoaderID() { |
| 24 | if (!this.__scriptLoaderID) { |
| 25 | this.__scriptLoaderID = "async-script-loader-" + idCount++; |
| 26 | } |
| 27 | return this.__scriptLoaderID; |
| 28 | } |
| 29 | |
| 30 | setupScriptURL() { |
| 31 | this.__scriptURL = |
| 32 | typeof getScriptURL === "function" ? getScriptURL() : getScriptURL; |
| 33 | return this.__scriptURL; |
| 34 | } |
| 35 | |
| 36 | asyncScriptLoaderHandleLoad(state) { |
| 37 | // use reacts setState callback to fire props.asyncScriptOnLoad with new state/entry |
| 38 | this.setState( |
| 39 | state, |
| 40 | () => |
| 41 | this.props.asyncScriptOnLoad && |
| 42 | this.props.asyncScriptOnLoad(this.state) |
| 43 | ); |
| 44 | } |
| 45 | |
| 46 | asyncScriptLoaderTriggerOnScriptLoaded() { |
| 47 | let mapEntry = SCRIPT_MAP[this.__scriptURL]; |
| 48 | if (!mapEntry || !mapEntry.loaded) { |
| 49 | throw new Error("Script is not loaded."); |
| 50 | } |
| 51 | for (let obsKey in mapEntry.observers) { |
| 52 | mapEntry.observers[obsKey](mapEntry); |
| 53 | } |
| 54 | delete window[options.callbackName]; |
| 55 | } |
| 56 | |
| 57 | componentDidMount() { |
| 58 | const scriptURL = this.setupScriptURL(); |
| 59 | const key = this.asyncScriptLoaderGetScriptLoaderID(); |
| 60 | const { globalName, callbackName, scriptId } = options; |
| 61 | |
| 62 | // check if global object already attached to window |
| 63 | if (globalName && typeof window[globalName] !== "undefined") { |
| 64 | SCRIPT_MAP[scriptURL] = { loaded: true, observers: {} }; |
| 65 | } |
| 66 | |
| 67 | // check if script loading already |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…