chore(studio): vector buckets polish A#39759
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
6 Skipped Deployments
|
|
This pull request has been ignored for the connected project Preview Branches by Supabase. |
| <FormControl_Shadcn_> | ||
| <div className="flex flex-col gap-y-2"> | ||
| <p className="text-smn">Function to trigger</p> | ||
| <p className="text-sm">Function to trigger</p> |
There was a problem hiding this comment.
Just a typo I noticed elsewhere, unrelated to this effort. Feel free to remove if it muddies the later merge.
|
|
||
| export const CreateVectorIndexSheet = () => { | ||
| interface CreateVectorTableSheetProps { | ||
| bucketName: string |
There was a problem hiding this comment.
So we can reference the bucketName in the Target schema field. Honestly I might do away with this field entirely, later. Not sure how helpful it is for people to know this.
| id="targetSchema" | ||
| {...field} | ||
| placeholder="tdai_data" | ||
| value={bucketName} |
| dimension: 1536, | ||
| distanceMetric: 'cosine', |
There was a problem hiding this comment.
Reintroduced these. Sorry. Figured they are helpful to show in the table because they are required options upon table creation.
2e6fbdd
into
ivan/depr-91-add-skeleton-of-vector-bucket-contents-to-storage
* empty state * better checks * bucket name in sheet * fix typo * sheet improvements * rename vector index to vector table * cleanup
* Initial work on vector buckets. * Add more queries and UI. * chore(studio): vector buckets contents (#39705) * language * match analytics buckets * shared empty state * proper loading state * create dialog cleanup * simplify copywriting * proper details * filtering * use real data * chore(studio): vector buckets polish A (#39759) * empty state * better checks * bucket name in sheet * fix typo * sheet improvements * rename vector index to vector table * cleanup * More work on the vector indexes. * Add delete for bucket and indexes. Create index should now work. * chore(studio): vector buckets polish B (#39794) * loading * delete modal * fix modal behaviour * Add modal for deleting vector buckets. * Bring back the shimmering loader. * chore(studio): vector buckets polish C (#39887) * fix bucketname on deletion dialog * empty states * remove extraneous padding * proper loading and not-found cases * Minor fixes. * Minor updates to the vector components. * Add more instructions to the cursor rules. * Some refactors and shifting files around * Refactor analytics buckets detial to improve time to fcp * Fix * Refactors + simplify * Last few nits, just leaving comments * If the bucket is not empty, delete all indexes first. --------- Co-authored-by: Danny White <3104761+dnywh@users.noreply.github.com> Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
* Initial work on vector buckets. * Add more queries and UI. * chore(studio): vector buckets contents (#39705) * language * match analytics buckets * shared empty state * proper loading state * create dialog cleanup * simplify copywriting * proper details * filtering * use real data * chore(studio): vector buckets polish A (#39759) * empty state * better checks * bucket name in sheet * fix typo * sheet improvements * rename vector index to vector table * cleanup * More work on the vector indexes. * Add delete for bucket and indexes. Create index should now work. * chore(studio): vector buckets polish B (#39794) * loading * delete modal * fix modal behaviour * Add modal for deleting vector buckets. * Bring back the shimmering loader. * chore(studio): vector buckets polish C (#39887) * fix bucketname on deletion dialog * empty states * remove extraneous padding * proper loading and not-found cases * Minor fixes. * Minor updates to the vector components. * Add more instructions to the cursor rules. * Some refactors and shifting files around * Refactor analytics buckets detial to improve time to fcp * Fix * Refactors + simplify * Last few nits, just leaving comments * If the bucket is not empty, delete all indexes first. --------- Co-authored-by: Danny White <3104761+dnywh@users.noreply.github.com> Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
What kind of change does this PR introduce?
Chore: more UI improvements to the vector buckets and their details
What is the current behavior?
What is the new behavior?
indexestablesAdditional context
Based branch: #39597.
Still to come:
To test
Use
MOCK_VECTOR_INDEXESforallIndexesinVectorBucketDetails(here) if you need mock table data.