Skip to content

Commit 0f10321

Browse files
committed
feat: show actionable resolutions for native module initialization errors
Show a few common resolutions when the native module fails to initialize for any reason. Partially resolves #16.
1 parent a2f22b1 commit 0f10321

File tree

1 file changed

+34
-3
lines changed

1 file changed

+34
-3
lines changed

src/index.ts

+34-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,27 @@ declare global {
1313
var __PrismaProxy: PrismaProxy | undefined;
1414
}
1515

16+
const errorResolutions = [
17+
`1. Ensure at least one migration exists:
18+
19+
$ prisma migrate dev`,
20+
21+
`2. Try removing the node_modules/ folder and running the prebuild command:
22+
23+
$ rm -rf node_modules/
24+
$ npx expo prebuild --clean
25+
`,
26+
`3. If in a monorepo, ensure the application's package.json also has the required Prisma dependencies:
27+
28+
$ npm i @prisma/client@latest @prisma/react-native@latest react-native-quick-base64
29+
$ yarn add @prisma/client@latest @prisma/react-native@latest react-native-quick-base64
30+
`,
31+
];
32+
33+
const makeErrorMessage = (message: string) => {
34+
return [message, errorResolutions.join('\n\n')].join('\n\n');
35+
};
36+
1637
// @ts-expect-error
1738
const isTurboModuleEnabled = global.__turboModuleProxy != null;
1839

@@ -21,13 +42,23 @@ const PrismaModule = isTurboModuleEnabled
2142
: NativeModules.Prisma;
2243

2344
if (!PrismaModule) {
24-
throw new Error('🟥 @prisma/react-native failed to initialize');
45+
throw new Error(
46+
makeErrorMessage('🟥 @prisma/react-native failed to initialize')
47+
);
2548
}
2649

27-
PrismaModule.install();
50+
try {
51+
PrismaModule.install();
52+
} catch {
53+
throw new Error(
54+
makeErrorMessage(`🟥 @prisma/react-native failed to install`)
55+
);
56+
}
2857

2958
if (!global.__PrismaProxy) {
30-
throw new Error('🟥 prisma/react-native C++ bindings failed to initialize');
59+
throw new Error(
60+
makeErrorMessage('🟥 prisma/react-native C++ bindings failed to initialize')
61+
);
3162
}
3263

3364
// Wrap the create function to stringify the env variables if necessary

0 commit comments

Comments
 (0)