feat: component code splitting, API batching, bulk operations, and fi… - #1021
Merged
Emmzyemms merged 1 commit intoAug 29, 2026
Merged
Conversation
…eld selection - Add dynamic imports for KeyboardShortcuts, CookieConsent, ComparisonPlayer, MintConfigForm, ActivityFeed, and EarningsTable with loading states - Extract ComparisonPlayer from transform page into standalone component - Add usePreloadComponent hook for component preloading strategies - Add POST /api/batch endpoint for batching multiple API requests - Add PATCH /api/clips/bulk endpoint for bulk tag and status updates - Add bulkUpdateTags and bulkUpdateStatus methods to clipsStore - Add field selection via ?fields= query param on GET /api/clips and /api/projects - Add fieldSelection utility with validation and default field sets
|
@anumukul Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
closes #950
closes #951
closes #954
closes #957
Performance & API Enhancements
Changes
1. Component Code Splitting
ssr: falseforKeyboardShortcuts,CookieConsent,ComparisonPlayer,MintConfigForm,ActivityFeed,EarningsTableComparisonPlayerinto its own componentusePreloadComponenthook for preloading strategies2. API Request Batching
POST /api/batch— batch up to 20 requests in a single call3. Bulk Operations
PATCH /api/clips/bulk?operation=tags— bulk tag set/add/removePATCH /api/clips/bulk?operation=status— bulk status update4. Field Selection
GET /api/clipsandGET /api/projectsnow support?fields=id,title,scoreFiles Changed