Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3248053
D5357.id17543.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D5357.id17543.diff
View Options
diff --git a/native/data/sqlite-context-provider.js b/native/data/sqlite-context-provider.js
--- a/native/data/sqlite-context-provider.js
+++ b/native/data/sqlite-context-provider.js
@@ -1,12 +1,15 @@
// @flow
import * as React from 'react';
+import { Alert } from 'react-native';
import { useDispatch } from 'react-redux';
import { setMessageStoreMessages } from 'lib/actions/message-actions.js';
import { setThreadStoreActionType } from 'lib/actions/thread-actions';
+import { isStaff } from 'lib/shared/user-utils';
import { loginActionSources } from 'lib/types/account-types';
import { fetchNewCookieFromNativeCredentials } from 'lib/utils/action-utils';
+import { getMessageForException } from 'lib/utils/errors';
import { convertClientDBThreadInfosToRawThreadInfos } from 'lib/utils/thread-ops-utils';
import { commCoreModule } from '../native-modules';
@@ -26,6 +29,9 @@
);
const cookie = useSelector(state => state.cookie);
const urlPrefix = useSelector(state => state.urlPrefix);
+ const viewerID = useSelector(
+ state => state.currentUserInfo && state.currentUserInfo.id,
+ );
React.useEffect(() => {
if (storeLoaded || !rehydrateConcluded) {
@@ -46,18 +52,37 @@
type: setMessageStoreMessages,
payload: messages,
});
- } catch {
- await fetchNewCookieFromNativeCredentials(
- dispatch,
- cookie,
- urlPrefix,
- loginActionSources.sqliteLoadFailure,
- );
- } finally {
setStoreLoaded(true);
+ } catch (setStoreException) {
+ if (__DEV__ || (viewerID && isStaff(viewerID))) {
+ Alert.alert(
+ `Error setting threadStore or messageStore: ${
+ getMessageForException(setStoreException) ??
+ '{no exception message}'
+ }`,
+ );
+ }
+ try {
+ await fetchNewCookieFromNativeCredentials(
+ dispatch,
+ cookie,
+ urlPrefix,
+ loginActionSources.sqliteLoadFailure,
+ );
+ setStoreLoaded(true);
+ } catch (fetchCookieException) {
+ if (__DEV__ || (viewerID && isStaff(viewerID))) {
+ Alert.alert(
+ `Error fetching new cookie from native credentials: ${
+ getMessageForException(fetchCookieException) ??
+ '{no exception message}'
+ }. Please kill the app.`,
+ );
+ }
+ }
}
})();
- }, [storeLoaded, urlPrefix, rehydrateConcluded, cookie, dispatch]);
+ }, [storeLoaded, urlPrefix, rehydrateConcluded, cookie, dispatch, viewerID]);
const contextValue = React.useMemo(
() => ({
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 16, 8:23 AM (20 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2496913
Default Alt Text
D5357.id17543.diff (2 KB)
Attached To
Mode
D5357: [native] Add alerts to `SQLiteContextProvider` with exception info
Attached
Detach File
Event Timeline
Log In to Comment