apps/studio/components/interfaces/SQLEditor/README.md
Quick run-through of the different building blocks that make up the SQL Editor, to help navigating the codebase a little easier 🙂🙏
Folders and snippets (in the product menu) are rendered via SQLEditorMenu and SQLEditorNav, in which the data are all loaded from the API via React Query directly. (Refer to point 3 under "Data Structure" below)
SQLEditorMenu: Wraps around SQLEditorNav + renders search input + View running queries buttonSQLEditorNav: Renders the 3 collapsible snippet sectionsThe Tabs interface is powered by a separate state tabs.ts. (Also used by the Table Editor)
Route validation to check for snippet validity + last visited snippet lies in the page level on [id].tsx
When searching for snippets, we're deliberately opting to render the results as a flat list in SearchList for ease of finding (rather than keeping the 3 separate sections / having folders)
SQL Editor is mainly powered by a Valtio store in sql-editor-v2.ts, in which most of the data is being managed on the client side for optimistic rendering to keep the editor feeling snappy. (unlike other parts of the dashboard where the data is always invalidated whenever a mutation happens).
The Valtio store here stores snippets across multiple projects as we aren't using a context provider, though this was a legacy decision (refer to ProjectContext for more context on using providers with stores)
While SQLEditorNav renders the folders + snippets directly from the API endpoints via React Query, we still store them in the Valtio store to store some properties used on the client side like splitSizes and projectRef for snippets, and status for folders (although it's possible that we can simplify the Valtio store).
The endpoint to fetch snippets and folders are via useSQLSnippetFoldersQuery and useSqlSnippetsQuery, both of which are paginated (limit set at 100)
useSQLSnippetFoldersQuery: Specifically for fetching private snippets and foldersuseSqlSnippetsQuery: For fetching shared and favorite snippetsPage fetching is done on demand for the snippets via a "Load more" button due to the complexity of a tree view (we've deliberate avoided an infinite loading UX which we commonly do across other parts of the dashboard)
Snippets and folders are all initially loaded via React Query in SQLEditorNav, which are then initialized into the Valtio store via snapV2.addSnippet calls in the useEffects
On /editor/sql
/editor/sql/[id]), otherwise will redirect to /editor/sql/new (within [id].tsx )On /editor/sql/[id]
useContentQuery and update the Valtio store via snapV2.setSnippetOn /editor/sql/new:
snapV2.addSnippet and user will be redirected to /editor/sql/[id], using the id from the skeletonsnapV2.addSnippet only handles adding snippets to the store and does not queue the snippet for saving/editor/sql/[id]On /editor/sql/[id]:
snapV2.setSql will be called based on the debounced value of the code editor, in which we'll then queue the snippet for saving via upsertSnippet.upsertSnippet, but the invalidation is only triggered if it's a new snippet that's not saved in the DB yetThere's several safeguards in place before we run the query
If the snippet's name is "Untitled query", we'll also trigger a non-blocking request to rename the snippet via AI. Snippet name will be updated whenever the request completes.
upsertContent via React Query directly without going through the Valtio storeupdateSnippet and setSql could be consolidated in sql-editor-v2.ts
Refactor renaming a query to have optimistic rendering for consistency on how we update snippets in the sql-editor-v2.ts
Implement drag and drop functionality for snippets into folders
RenameQueryModal and MoveQueryModal, could call updateSnippet instead of removeSnippet + addSnippet?