mirror of
https://github.com/supabase/supabase.git
synced 2026-09-06 18:11:51 +08:00
## Summary - Unify Explorer toolbar actions: 16px / 2px Lucide icons, `text-tertiary-foreground` that becomes `text-foreground` on hover (Analyze icon goes brand on hover). - Soften chat scroll edges with top/bottom fades, and align the composer width with the conversation content (`px-7` + `max-w-3xl`). - Put **Run SQL** first on Explorer home, and rename the tab-bar new-tab item from “New query” to **Run SQL** so it matches. ## Test plan - [ ] Open Explorer and check query, notebook, and chat toolbars: icons are 16px, muted by default, and go to foreground on hover. Analyze on a notebook with cells: icon goes brand on hover; empty notebook still disables Analyze. - [ ] Open a query tab: source menu, result settings, save, and more-options all look like the other toolbar actions (including while the dropdown is open). - [ ] Open Explorer chat: scroll a long thread and confirm top/bottom fades sit on the chat surface. Composer lines up with message width (not inset extra). - [ ] On Explorer home, **Run SQL** is the first card; clicking it still opens a SQL tab. - [ ] From the tab bar **+** menu, the first item is **Run SQL** (not “New query”); it still creates a SQL tab. **New notebook** and **New chat** still work. Made with [Cursor](https://cursor.com) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **UI Improvements** * Standardized Explorer toolbar icons for consistent sizing and visual weight. * Updated toolbar action colors, hover states, and keyboard-focus visibility. * Reordered Explorer home actions so “Run SQL” appears first. * Renamed “New query” to “Run SQL” in the new-tab menu. * Improved query source and settings toolbar controls. * Refined AI assistant chat layout with centered content, decorative gradients, and improved focus styling. * Added hover styling for the notebook Analyze action. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
144 lines
5.1 KiB
TypeScript
144 lines
5.1 KiB
TypeScript
import { useParams } from 'common'
|
|
import { NotebookText } from 'lucide-react'
|
|
import { useMemo, useState } from 'react'
|
|
import { Button, cn } from 'ui'
|
|
|
|
import {
|
|
formatNotebookDiffSummary,
|
|
getEntryKey,
|
|
notebookEntriesNeedDatabaseLookup,
|
|
summarizeNotebookDiff,
|
|
type NotebookDatabaseContext,
|
|
} from './AssistantNotebookPreview.utils'
|
|
import { AssistantNotebookPreviewCell } from './AssistantNotebookPreviewCell'
|
|
import {
|
|
ExplorerToolbar,
|
|
ExplorerToolbarActions,
|
|
ExplorerToolbarIcon,
|
|
ExplorerToolbarTitle,
|
|
} from '@/components/interfaces/Explorer/ExplorerToolbar'
|
|
import type { QueryResult } from '@/components/interfaces/Explorer/types'
|
|
import type { NotebookCellDiffEntry } from '@/data/content/notebooks/notebook-operations'
|
|
import { useReadReplicasQuery } from '@/data/read-replicas/replicas-query'
|
|
|
|
export interface AssistantNotebookPreviewProps {
|
|
entries: NotebookCellDiffEntry[]
|
|
mode: 'create' | 'update' | 'run'
|
|
/** The notebook's name, shown in the toolbar. Falls back to a generic label. */
|
|
title?: string
|
|
/** Query results keyed by persisted cell id. */
|
|
results?: Record<string, QueryResult>
|
|
className?: string
|
|
}
|
|
|
|
const VISIBLE_ENTRY_LIMIT = 5
|
|
|
|
const FALLBACK_TITLE = {
|
|
create: 'New notebook',
|
|
update: 'Notebook changes',
|
|
run: 'Notebook run',
|
|
} as const
|
|
|
|
/**
|
|
* Read-only minified notebook for assistant create/update proposals and notebook runs.
|
|
* Composes the same Explorer toolbar and query-result surfaces as notebook tabs; the
|
|
* surrounding `Confirm` card owns the frame. Pure presentational: no data fetching,
|
|
* approval, or notebook-editor state — callers adapt those concerns into entries/results.
|
|
*/
|
|
export const AssistantNotebookPreview = ({
|
|
entries,
|
|
mode,
|
|
title,
|
|
results,
|
|
className,
|
|
}: AssistantNotebookPreviewProps) => {
|
|
const { ref: projectRef } = useParams()
|
|
const [isShowingAllEntries, setIsShowingAllEntries] = useState(false)
|
|
const [expandedOverrides, setExpandedOverrides] = useState<Record<string, boolean>>({})
|
|
|
|
const needsDatabaseLookup = notebookEntriesNeedDatabaseLookup(entries, projectRef)
|
|
const {
|
|
data: databases,
|
|
isPending: isLoadingDatabases,
|
|
isError: isDatabaseError,
|
|
} = useReadReplicasQuery({ projectRef }, { enabled: needsDatabaseLookup })
|
|
const databasesByIdentifier = useMemo(
|
|
() => new Map((databases ?? []).map((database) => [database.identifier, database])),
|
|
[databases]
|
|
)
|
|
const databaseContext: NotebookDatabaseContext = !needsDatabaseLookup
|
|
? { status: 'success', projectRef, databasesByIdentifier }
|
|
: isLoadingDatabases
|
|
? { status: 'loading', projectRef }
|
|
: isDatabaseError
|
|
? { status: 'error', projectRef }
|
|
: { status: 'success', projectRef, databasesByIdentifier }
|
|
|
|
const summary = summarizeNotebookDiff(entries, mode)
|
|
const visibleEntries = isShowingAllEntries ? entries : entries.slice(0, VISIBLE_ENTRY_LIMIT)
|
|
const hiddenCount = entries.length - visibleEntries.length
|
|
const hasResults = results !== undefined
|
|
|
|
const isExpanded = (entry: NotebookCellDiffEntry) =>
|
|
expandedOverrides[getEntryKey(entry)] === true
|
|
|
|
return (
|
|
<div className={cn('flex w-full min-w-0 max-w-6xl mx-auto flex-col', className)}>
|
|
<ExplorerToolbar aria-label="Notebook toolbar">
|
|
<ExplorerToolbarIcon>
|
|
<NotebookText size={16} strokeWidth={2} />
|
|
</ExplorerToolbarIcon>
|
|
<ExplorerToolbarTitle>{title ?? FALLBACK_TITLE[mode]}</ExplorerToolbarTitle>
|
|
<ExplorerToolbarActions>
|
|
<span className="shrink-0 text-sm text-muted-foreground">
|
|
{formatNotebookDiffSummary(summary)}
|
|
</span>
|
|
</ExplorerToolbarActions>
|
|
</ExplorerToolbar>
|
|
<div className="p-2">
|
|
<div
|
|
className={cn(
|
|
hasResults ? 'flex flex-col gap-2' : 'overflow-hidden rounded-md border bg-surface-100'
|
|
)}
|
|
>
|
|
<div className={cn(hasResults ? 'contents' : 'divide-y divide-border')}>
|
|
{visibleEntries.map((entry) => {
|
|
const key = getEntryKey(entry)
|
|
return (
|
|
<div
|
|
key={key}
|
|
className={cn(hasResults && 'overflow-hidden rounded-md border bg-surface-100')}
|
|
>
|
|
<AssistantNotebookPreviewCell
|
|
entry={entry}
|
|
mode={mode}
|
|
result={results?.[key]}
|
|
isExpanded={isExpanded(entry)}
|
|
databaseContext={databaseContext}
|
|
onExpandedChange={(open) =>
|
|
setExpandedOverrides((prev) => ({ ...prev, [key]: open }))
|
|
}
|
|
/>
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
{hiddenCount > 0 && (
|
|
<Button
|
|
variant="text"
|
|
size="tiny"
|
|
className={cn(
|
|
'w-full text-foreground-light',
|
|
!hasResults && 'rounded-none border-0 border-t border-default'
|
|
)}
|
|
onClick={() => setIsShowingAllEntries(true)}
|
|
>
|
|
Show {hiddenCount} more cell{hiddenCount === 1 ? '' : 's'}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|