![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@op-engineering/react-native-prisma
Advanced tools
A Prisma engine adaptation for React Native.
yarn add --exact react-native-prisma react-native-quick-base64 react-native-url-polyfill @prisma/client@5.9.0-integration-react-native.5 @op-engineering/react-native-prisma@0.1.9
npx pod-install
For bare project you will need to modify the building process to run a couple of scripts that take care of bundling the migrations you generate inside the final app bundle.
Go into XCode
→ Build Phases
→ Bundle React Native Code and images
and modify it so that it looks like this:
set -e
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh"
PRISMA_MIGRATIONS="../node_modules/@op-engineering/react-native-prisma/copy-migrations.sh" # Add this
/bin/sh -c "$WITH_ENVIRONMENT $PRISMA_MIGRATIONS $REACT_NATIVE_XCODE" # Add it to the list of running scripts
For Android you need to modify your apps app/Build.gradle
. Add the following at the top of the file.
apply from: "../../node_modules/@op-engineering/react-native-prisma/react-native-prisma.gradle"
For expo this process is automated into prebuild. Modify your app.json
by adding the react-native-prisma plugin.
{
"expo": {
// ... The rest of your expo config
"plugins": ["@op-engineering/react-native-prisma"]
}
}
This packages contains an extension to the prisma client that allows you to use reactive queries. Use at your own convinience and care since it might introduce large re-renders in your app.
import { PrismaClient } from '@prisma/client/rn';
import { reactiveHooksExtension } from 'react-native-prisma';
const baseClient = new PrismaClient();
export const extendedClient = baseClient.$extends(reactiveHooksExtension);
Then in your React component you can use the hook:
import {Text} from 'react-native';
import {extendedClient} from './myDbModule';
export default function App {
// Will automatically re-render the component with new data
const users = extendedClient.user.useFindMany();
return (
<Text>{users}</Text>
)
}
Bare in mind, for the reactive queries to work you have to use the extended client to modify the data:
extendedClient.user.create({ ...userData });
There are several hooks you can use for your reactive queries:
useFindMany();
useFindFirst();
useFindUnique();
It is also possible to use callbacks for this queries in case you are not using hooks, but you still want to get notified when data changes
import { PrismaClient } from '@prisma/client/rn';
import { reactiveQueriesExtension } from 'react-native-prisma';
const baseClient = new PrismaClient();
export const extendedClient = baseClient.$extends(reactiveQueriesExtension);
FAQs
Prisma for react-native
The npm package @op-engineering/react-native-prisma receives a total of 75 weekly downloads. As such, @op-engineering/react-native-prisma popularity was classified as not popular.
We found that @op-engineering/react-native-prisma demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.