11

This question has been asked several times here(here the most relevant,Another example), but no solution has been proposed in any of them. So I have 2 questions to you guys:

  1. Any idea why it wouldn't work in a large project? I mean, there are any know issues with fast refresh related to the size of the project or the packages he includes that will make fast refresh stop working? There is any way to fix it?
  2. Is there a convenient way to edit an internal page in the app without using a fast refresh (without running the page independently, since it depends on all the logic of the app)?

This bug really makes the development really difficult for me, and I find it hard to believe that professional developers have not found a way around this problem, Please help!

I'm using expo-cli(v3.26.2 - Expo SDK 38 that using react-native v0.62)

Eliav Louski
  • 3,593
  • 2
  • 28
  • 52

4 Answers4

28

TLDR;

using default export with no name ALWAYS resulted in a full reload of the app without hot reload!

Details

So after a lot of months of pain, I accidentally found a strangely enough effect: I usually write my react components in this syntax:

export default ({ ...props }) => {
  ...
};

and for some reason, changing a module that exports that way ALWAYS resulted in a full reload of the app without hot reload!

after months of pain, accidentally i found out that changing the export to:

const Test = ({ ...props }) => {
  ...
};

export default Test;

completely fixed the issue and now hot reload works perfectly fine!
I did not saw this effect mentioned in a single place on the internet!

Bhargav Rao
  • 50,140
  • 28
  • 121
  • 140
Eliav Louski
  • 3,593
  • 2
  • 28
  • 52
  • 3
    This worked for me too. What I dont understand is that I was using default exports with no names with no issues, but at some point it started re-loading the app on every save. I tried naming the component as described above and sure enough it works... There must be something else to this, but this helps me a lot for now. Thanks for posting the solution! – Ross Jones Feb 06 '21 at 07:44
  • I haven't read it personally, but [the docs describing how Fast Refresh](https://reactnative.dev/docs/fast-refresh) works would probably help you understand why this behaviour happens. Especially in the 'How It Works' section. – jaquinocode Sep 02 '21 at 19:05
  • 1
    This solved for me (after trying a few other hairy stuff) - I had a screen (using React Navigation) that was a default exported component and Fast Refresh didn't work - resumed as soon as I went bak to this syntax to `export const MyScreenName = () => {}` like other screens! – Hugo Oct 25 '21 at 13:58
  • @jaquinocode nah if you actually "read it personally" you'll realize that nothing in that section mentions anything directly relevant to the behavior mentioned in this answer. – xji Jan 22 '22 at 16:42
  • 2
    @Hugo I'm also using React Navigation and this fix also worked for me. Maybe the way React Navigation works has something to do with this behavior. – xji Jan 22 '22 at 16:44
  • This totally works. You deserve a medal my man. – Jocke Med Kniven Jan 26 '22 at 21:47
  • If this works for you then you may be using https://github.com/storybookjs/babel-plugin-named-exports-order#babel-plugin-named-exports-order which adds another named export which is not a react component and so may break Fast Refresh – Stephen J. Collings Feb 10 '23 at 11:07
3

There is an other way to obtain this weird behavior. When you export a simple function:

//if we export this function in the entry file of the app,
//it will break the hot reload feature without any warnings.
export function someName() {
};

from the entry file of your app (with typescript template expo init nameApp the file is App.tsx) It will exactly produce a full reload of the app rather than a hot reload.

This is vicious because on ios simulator it full reloads the app without the modification whereas in android it full reloads the app WITH the modification. So you'll take some time to realize that this is not a hot reload in android but a full reload.

IDK why ios don't display the modification like android does..

But when you think at the problem, we shouldn't export multiple things from the entry point of an app. This sounds weird isn't it ?

Guillaume Réan
  • 155
  • 1
  • 12
  • 1
    [This section](https://reactnative.dev/docs/fast-refresh#how-it-works) will help better explain why this happens. – jaquinocode Sep 02 '21 at 19:11
2

From react-refresh-webpack-plugin troubleshoot section

Un-named/non-pascal-case-named components

See this tweet for drawbacks of not giving component proper names. They are impossible to support because we have no ways to statically determine they are React-related. This issue also exist for other React developer tools, like the hooks ESLint plugin. Internal components in HOCs also have to conform to this rule.

// Wont work
export default () => <div />;
export default function () {
return <div />;
}
export default function divContainer() {
return <div />;
}
0

TLDR;

During development, I had your problem with the infinity "Refreshing..." message. As well as incomprehensible errors like "unknow resolve module 2" and "bundle error..."

Details

the solution turned out to be unexpected, I changed "require()" to "import" in the main index.js file

before

const module = require('some-module')

after

import module from 'some-module';
iGroza
  • 645
  • 7
  • 9