Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

react dynamic import using a variable doesn't work

With React, can anyone explain me why the dynamic import fail when we use a variable ?

// Do not work
let module = "./DynamicComponent";
import(module).then(ModuleLoaded => {})
// Works
import("./DynamicComponent").then(ModuleLoaded => {})

I tried to refresh the browser cache but nothing change.

like image 701
olive007 Avatar asked Jul 22 '26 06:07

olive007


1 Answers

As per webpack documentation.

It is not possible to use a fully dynamic import statement, such as import(foo). Because foo could potentially be any path to any file in your system or project.

The import() must contain at least some information about where the module is located.

https://webpack.js.org/api/module-methods/#dynamic-expressions-in-import.

So the below snippet works

import("./components/About").then(component => {
  console.log(component, "loaded successfully");
});

The below snippet doesn't work

let a = "./components/About";
    import(a).then(component => {
      console.log(component, "loaded successfully");
    });

I can't find an explanation anywhere that states the exact reason, why the above code works. But my intuition is webpack is not aware of the data type of variable a (It has to be a string) hence not able to use it in a dynamic import.

The above code is transpiled to

let a = "./components/About";
    __webpack_require__("./src lazy recursive")(a).then(component => {
      console.log(component, "loaded successfully");
    });

The below code actually works (Embedding the variable inside a string literal)..

let a = "./components/About";
    import(`${a}`).then(component => {
      console.log(component, "loaded successfully");
    });

And this gets transpiled to

let a = "./components/About";
    __webpack_require__("./src lazy recursive ^.*$")("".concat(a)).then(component => {
      console.log(component, "loaded successfully");
    });
like image 77
Nithin Thampi Avatar answered Jul 24 '26 20:07

Nithin Thampi



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!