Open saibotma opened 9 months ago
After thinking about the issue, I now understand the reason behind the error messages.
However, what I still don't understand is what the recommended way to call the notifier is in this case?
I did not expect that I may not use the notifier variable from build
inside the onChanged
callback. I mean it makes sense after thinking about it, but it is not apparent for a beginner, and also not very intuitive. I am happy to enhance the documentation on this topic, after I got confirmation, that my reasoning is correct.
You're correct, this is indeed quite unintuitive. I need to think about the desirable behaviour here.
A simpler reproduction is:
@riverpod
class MyViewModel extends _$MyViewModel {
@override
String build() => ref.watch(myStateProvider);
void crash() {
ref.read(myStateProvider.notifier).state = 'Foo';
ref.read(myStateProvider);
}
}
Although this is consistent with how the assert behaves, that's wayy too inconvenient. I'll change this.
This is probably going to stay like this for some time. I can't immediately think of a good alternative that's not just "disable the assert".
For now, it seems to be a bit niche. If this gets a bunch of 👍 I'll consider it more.
You're correct, this is indeed quite unintuitive. I need to think about the desirable behaviour here.
A simpler reproduction is:
@riverpod class MyViewModel extends _$MyViewModel { @override String build() => ref.watch(myStateProvider); void crash() { ref.read(myStateProvider.notifier).state = 'Foo'; ref.read(myStateProvider); } }
Although this is consistent with how the assert behaves, that's wayy too inconvenient. I'll change this.
So we can not read state immediately after change the state. Sometimes I got this exception but didn't know what happened. I thought it should be safe because riverpod was in the same isolate.
Indeed. As I said I'll likely change this, but at the moment I need to think about how. And it doesn't seem like a very active issue, so we'll see
Here as well, hopefully it can be resolved
@dumikaiya Please thumb up the issue when you support it!
please thumbs up this issue guys
Also does anyone know a workaround this? Currently I just wrap the ref.read(provider.notifier).state = value
in a Future. I think it rebuilds the widget later with the newly added or changed value
I currently use something like this, is it okay? or can it cause unexpected errors?
Thanks
@riverpod
class MyViewModel extends _$MyViewModel {
@override
String build() => ref.watch(myStateProvider);
void crash() {
try{
ref.read(myStateProvider.notifier).state = 'Foo';
ref.read(myStateProvider); // usually ref.read(otherNotifier).someMethod();
} catch (e) {
if (e is AssertionError) {
if (e.toString().contains(
'Cannot use ref functions after the dependency of a provider changed but before the provider rebuilt')) {
} else {
rethrow;
}
} else {
rethrow;
}
}
}
}
I'll tackle this in a few weeks. I do plan in fixing this before the official 3.0 release.
Is there a way to disable the assertion until that's done? I can't think of a way to refactor the application to avoid reading from a provider after a set but before a rebuild.
No. To begin with, this isn't a problem in the stable version.
No. To begin with, this isn't a problem in the stable version.
I am encountering a similar behavior with flutter_riverpod: 2.5.1
and riverpod_generator: 2.4.0
, which I assume is what you are referring to as the stable version? I know there is riverpod_generator: 2.4.2
, but I can't update right now, so I did not test whether the issue is solved there.
My code roughly looks like this
try {
await Future.wait([
ref.read(myNotifierProvider.notifier).doSomethingThatTakesLong(),
ref.read(myOtherNotifierProvider.notifier).doSomethingThatTakesEvenLonger(),
]);
} on Exception {
// ... do some error handling
}
// crash
final updatedStateOfMyOtherNotifier = ref.read(myOtherNotifierProvider);
Apparently I can work around it like this, but I have no idea if this has other unwanted side effects (besides of being a little slower due to the Future.delayed
overhead):
try {
await Future.wait([
ref.read(myNotifierProvider.notifier).doSomethingThatTakesLong(),
ref.read(myOtherNotifierProvider.notifier).doSomethingThatTakesEvenLonger(),
]);
} on Exception {
// ... do some error handling
}
+ await Future.delayed(Duration.zero);
- // crash
final updatedStateOfMyOtherNotifier = ref.read(myOtherNotifierProvider);
I have also encountered this error when using riverpod
with go_router
. I am also watching my app initialization in the go router provider. But on initial startup, I get this error.
My go_router_provider:
@riverpod
GoRouter router(RouterRef ref) {
final appStartup = ref.watch(appStartupProvider);
final authRepository = ref.watch(authRepositoryProvider);
return GoRouter(
debugLogDiagnostics: kDebugMode,
initialLocation: authRepository.isLoggedIn
? AppRoutes.home.path
: AppRoutes.initial.path,
refreshListenable: GoRouterRefreshStream(authRepository.authState()),
redirect: (context, state) {
final user = ref.read(authRepositoryProvider).getSignedInUser();
return null;
},
routes: [
GoRoute(
name: AppRoutes.initial.name,
path: AppRoutes.initial.path,
builder: SplashView.route,
routes: [
GoRoute(
name: AppRoutes.email.name,
path: AppRoutes.email.path,
builder: EnterEmailView.route,
routes: [
GoRoute(
name: AppRoutes.otp.name,
path: AppRoutes.otp.path,
builder: OtpView.route,
),
],
),
],
),
GoRoute(
name: AppRoutes.home.name,
path: AppRoutes.home.path,
builder: HomeView.route,
),
],
);
}
My Startup Code(nothing is there yet.):
@Riverpod(keepAlive: true)
Future<void> appStartup(AppStartupRef ref) async {}
For now, I am going to remove the appstartup from here. and make a separate loading widget. Is there any other way to handle this?
Fwiw I'm currently working on fixing riverpod_lint, because analyzer broke custom_lint It's going to take a bit of time.
But just expect this error to go away.
Hi @rrousselGit any progress :) ?
You're using a dev branch. Expect bugs for some time ;)
I'm currently fixing custom_lint because it stopped working.
What is the current situation regarding this issue? Using the newest version of the package (v2.5.1) this behavior still occurs when calling a notifier function and then using a ref. It makes some code in our codebase really complicated. Thanks for any updates :)
This issue is specifically about the dev branch. If you have this using the stable version, that thread doesn't apply.
Consider creating a new issue and explain how you got this error.
What do you mean with dev branch? I'm using the newest pub.dev version from flutter_riverpod which is 2.5.1 and this error still occurs. I don't think that the official version on pub.dev is your dev branch, right? When it is can you please guide me how I can get the stable version of the package.
You're not on the dev branch. But this issue is about the dev branch.
Describe the bug This example has got two providers, one state provider, which persists the entered text, and a view model provider, which forwards the entered text from the state provider & also forwards the input event to the state provider. The example is very stripped down, and obviously you could do the same thing with only one provider, without any issue, however the issue appeared in a more complex real world situation where two providers were necessary.
To Reproduce
The exception disappears when you move the read the notifier inside the
onChanged
callback or stop watching the view model provider, as indicated in the comments.Expected behavior No exception should be thrown.