-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🔧 Direct Supabase Client Integration: Redefining Data Access Without Prisma #944
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
4 Skipped Deployments
|
PR Reviewer Guide 🔍(Review updated until commit 93f9b19)Here are some key observations to aid the review process:
|
Updates to Preview Branch (feat/directly-use-supabase-client) ↗︎
Tasks are run on every commit but only new migration files are pushed.
View logs for this Workflow Run ↗︎. |
The schema changes provided indicate a significant transition from using Prisma as the primary database client to adopting Supabase for data management within the project. Below is a detailed review of the changes:
Overall, the changes present a strategic shift towards utilizing Supabase, which can offer benefits like real-time capabilities and simplified database management. However, it is imperative to conduct thorough testing to ensure that the migration does not introduce new issues, particularly regarding data integrity, user experience, and security. Additionally, documentation should be updated to reflect these changes for future developers working on the project. Migration URL: https://liam-app-git-staging-route-06-core.vercel.app/app/projects/4/migrations/5 |
PR Code Suggestions ✨Latest suggestions up to 93f9b19
Previous suggestionsSuggestions up to commit 41bcf63
|
464126f
to
f5b0b87
Compare
f5b0b87
to
db2ebab
Compare
- Added a new script to generate Supabase TypeScript types in package.json. - Imported Supabase client creation functions and updated exports in index.ts. - Updated .gitignore to exclude generated TypeScript types file.
- Replaced Prisma client with Supabase client for fetching project data. - Updated the handling of empty project states to account for null responses. - Adjusted the date formatting for project creation dates in the UI. - Added a new SQL migration file to set permissions for the Project table in Supabase.
02c4e51
to
9919836
Compare
9919836
to
74fa8f5
Compare
8b9066c
to
f64b900
Compare
- Introduced a new job in the frontend CI workflow to check for differences in generated Supabase TypeScript types. - Updated package.json to include a new script for generating Supabase types and validating them against the committed file. - Removed the exclusion of the generated types file from .gitignore to ensure it is tracked for changes.
f64b900
to
93f9b19
Compare
@@ -0,0 +1,43 @@ | |||
grant delete on table "public"."Project" to "anon"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When attempting to retrieve records using the Supabase client, an error occurred due to insufficient privileges, so I added the necessary permissions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bit of a hassle... 😓 Thanks!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍🏻 Thanks!!
@@ -0,0 +1,43 @@ | |||
grant delete on table "public"."Project" to "anon"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bit of a hassle... 😓 Thanks!!
const supabase = await createClient() | ||
const { data: projects } = await supabase | ||
.from('Project') | ||
.select('id, name, createdAt') | ||
.order('id', { ascending: false }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great 🚀
- name: Check for diff in generated types | ||
run: | | ||
git add supabase/database.types.ts | ||
if ! git diff HEAD --ignore-space-at-eol --exit-code supabase/database.types.ts; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💭 If we can make this into a script of package.json
, it may be easier to develop.
But you don't have to do it now.
Issue
Why is this change needed?
To eventually remove Prisma, we set up our system to perform database operations using the Supabase client.
I manage the type definition files generated by Supabase in git because generating these types requires launching a Docker-based Supabase, and Vercel Deployment does not support Docker.
In addition to git management, I created a GitHub Action to ensure that the type definition files are always up-to-date. (35d3c10 )
ref. https://supabase.com/docs/guides/deployment/ci/generating-types#verify-types
What would you like reviewers to focus on?
Testing Verification
What was done
🤖 Generated by PR Agent at 41bcf63
Project
table in Supabase.Detailed Changes
index.ts
Integrate Supabase client in database module
frontend/packages/db/src/index.ts
ProjectsPage.tsx
Refactor ProjectsPage to use Supabase client
frontend/apps/app/features/projects/pages/ProjectsPage/ProjectsPage.tsx
20250319115250_remote_schema.sql
Add Supabase permissions migration for Project table
frontend/packages/db/supabase/migrations/20250319115250_remote_schema.sql
Project
table.anon
,authenticated
, andservice_role
roles.package.json
Add Supabase types generation script
frontend/packages/db/package.json
Additional Notes