-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Description
Is this a bug report?
Yes
Have you read the Contributing Guidelines?
Yes
Environment
Any react native version from the last 6+ months.
Steps to Reproduce
Use Firebase in a react-native app (see the dozens of comments on #12981) or just do a setTimeout(() => { }, 60001) in an app.
Expected Behavior
Behaves as in a web browser and performs the timeout without complaint.
Actual Behavior
App displays disruptive yellow warning on the screen saying: Setting a timer for a long period of time, i.e. multiple minutes, is a performance and correctness issue on Android as it keeps the timer module awake, and timers can only be called when the app is in the foreground. See #12981 for more info. (Saw setTimeout with duration 111862ms)
The Fix
Can we please please please change the warning text here to be prefixed with "(ADVICE)" so it’s no longer as disruptive?
const ANDROID_LONG_TIMER_MESSAGE = |
Context:
The Firebase JavaScript SDK uses setTimeout / setInterval for a variety of tasks that need to be scheduled. For example, refreshing auth tokens, making reconnect attempts after a backoff delay, etc. This is done in the standard JavaScript way by using setInterval() or setTimeout().
React Native supports timers of any length, but currently displays a non-actionable but disruptive yellow warning if you schedule a timer for > 60 seconds.
const MAX_TIMER_DURATION_MS = 60 * 1000; |
The warning references #12981 which has received a very large amount of comments, upvotes, etc., but it does not actually provide any solution. As far as I can tell, the underlying issue is a React Native one (in how it implements setTimeout / setInterval on Android) and there's nothing developers can do.
Firebase has received multiple support requests and github issues (e.g. firebase/firebase-js-sdk#97, firebase/firebase-js-sdk#283) and the comments regarding Firebase on #12981 have gathered over 100 upvotes.
We (Firebase) have no way to fix this other than reduce our timeouts which if anything will make things worse (we would need to set multiple short timeouts to get to the desired longer timeout).
From my reading of the code, warnings prefixed with "(ADVICE)" do not result in the disruptive yellow box:
if (warning.startsWith('(ADVICE)')) { |
So can we please please please change the warning text here to be prefixed with "(ADVICE)" so it’s no longer as disruptive?
const ANDROID_LONG_TIMER_MESSAGE = |