You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now when logging in through `login` method, user will be listed as online until they logout or end the session (close the tab or window).
135
125
136
-
**Note:** Currently this is not triggered on logout, but that is a [planned feature for the upcoming v3.0.0 version](https://github.com/prescottprue/react-redux-firebase/wiki/v3.0.0-Roadmap). Currently, the presense status will only change when the user becomes disconnected from the Database (i.e. closes the tab).
126
+
**NOTE:** Currently this is not triggered on logout, but that is a [planned feature for the upcoming v3.0.0 version](https://github.com/prescottprue/react-redux-firebase/wiki/v3.0.0-Roadmap). Currently, the presense status will only change when the user becomes disconnected from the Database (i.e. closes the tab).
137
127
138
128
## Wait For Auth To Be Ready (SSR)
139
129
140
130
Waiting for auth to be ready is usually only required in an SSR environment.
141
131
132
+
**NOTE:** This should only be used to prevent loading in a server side environment - if this is done directly on a client it can cause long application bootup times.
@@ -188,6 +180,8 @@ In order for this to work, the promise must know the name of the location within
188
180
189
181
If you want to write your own custom logic for the promise that actually confirms that auth is ready, you can pass a promise as the `authIsReady` config option.
190
182
183
+
**NOTE:** This should only be used to prevent loading in a server side environment - if this is done directly on a client it can cause long application bootup times.
0 commit comments