| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- import * as Sentry from '@sentry/nextjs'
- import type { PGColumn } from '@supabase/pg-meta'
- import { useConstant } from 'common'
- import { createContext, PropsWithChildren, useContext } from 'react'
- import { proxy, useSnapshot } from 'valtio'
- import {
- NewQueuedOperation,
- QueuedOperationType,
- type OperationQueueState,
- type QueueStatus,
- } from './table-editor-operation-queue.types'
- import type { SupaRow } from '@/components/grid/types'
- import {
- resolveDeleteRowConflicts,
- resolveEditCellConflicts,
- upsertOperation,
- } from '@/components/grid/utils/queueConflictResolution'
- import { generateTableChangeKey } from '@/components/grid/utils/queueOperationUtils'
- import { ForeignKey } from '@/components/interfaces/TableGridEditor/SidePanelEditor/ForeignKeySelector/ForeignKeySelector.types'
- import type { EditValue } from '@/components/interfaces/TableGridEditor/SidePanelEditor/RowEditor/RowEditor.types'
- import type { TableField } from '@/components/interfaces/TableGridEditor/SidePanelEditor/TableEditor/TableEditor.types'
- import type { SafePostgresColumn } from '@/lib/postgres-types'
- import type { Dictionary } from '@/types'
- export const TABLE_EDITOR_DEFAULT_ROWS_PER_PAGE = 100
- type ForeignKeyState = {
- foreignKey: ForeignKey
- row: Dictionary<any>
- column: PGColumn
- }
- export type SidePanel =
- | { type: 'cell'; value?: { column: string; row: Dictionary<any> } }
- | { type: 'row'; row?: Dictionary<any> }
- | { type: 'column'; column?: SafePostgresColumn }
- | { type: 'table'; mode: 'new' | 'edit' | 'duplicate'; templateData?: Partial<TableField> }
- | { type: 'schema'; mode: 'new' | 'edit' }
- | { type: 'json'; jsonValue: EditValue }
- | {
- type: 'foreign-row-selector'
- foreignKey: ForeignKeyState
- }
- | { type: 'csv-import'; file?: File }
- | { type: 'operation-queue' }
- export type ConfirmationDialog =
- | { type: 'table'; isDeleteWithCascade: boolean }
- | { type: 'column'; column: SafePostgresColumn; isDeleteWithCascade: boolean }
- // [Joshen] Just FYI callback, numRows, allRowsSelected is a temp workaround so that
- // DeleteConfirmationDialog can trigger dispatch methods after the successful deletion of rows.
- // Once we deprecate react tracked and move things to valtio, we can remove this.
- | {
- type: 'row'
- rows: SupaRow[]
- numRows?: number
- allRowsSelected?: boolean
- callback?: () => void
- }
- export type UIState =
- | {
- open: 'none'
- }
- | {
- open: 'side-panel'
- sidePanel: SidePanel
- }
- | {
- open: 'confirmation-dialog'
- confirmationDialog: ConfirmationDialog
- }
- /**
- * Global table editor state for the table editor across multiple tables.
- * See ./table-editor-table.tsx for table specific state.
- */
- export const createTableEditorState = () => {
- const state = proxy({
- rowsPerPage: TABLE_EDITOR_DEFAULT_ROWS_PER_PAGE,
- setRowsPerPage: (rowsPerPage: number) => {
- state.rowsPerPage = rowsPerPage
- },
- ui: { open: 'none' } as UIState,
- get sidePanel() {
- return state.ui.open === 'side-panel' ? state.ui.sidePanel : undefined
- },
- get confirmationDialog() {
- return state.ui.open === 'confirmation-dialog' ? state.ui.confirmationDialog : undefined
- },
- closeSidePanel: () => {
- state.ui = { open: 'none' }
- },
- closeConfirmationDialog: () => {
- state.ui = { open: 'none' }
- },
- onAddSchema: () => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'schema', mode: 'new' },
- }
- },
- /* Tables */
- onAddTable: (templateData?: Partial<TableField>) => {
- // Record that the table creator was opened
- Sentry.startSpan({ name: 'table_creator.opened', op: 'ui.action' }, (span) => {
- span.setAttribute('table_creator.opened', 1)
- })
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'table', mode: 'new', templateData },
- }
- },
- onEditTable: () => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'table', mode: 'edit' },
- }
- },
- onDuplicateTable: () => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'table', mode: 'duplicate' },
- }
- },
- onDeleteTable: () => {
- state.ui = {
- open: 'confirmation-dialog',
- confirmationDialog: { type: 'table', isDeleteWithCascade: false },
- }
- },
- /* Columns */
- onAddColumn: () => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'column' },
- }
- },
- onEditColumn: (column: SafePostgresColumn) => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'column', column },
- }
- },
- onDeleteColumn: (column: SafePostgresColumn) => {
- state.ui = {
- open: 'confirmation-dialog',
- confirmationDialog: { type: 'column', column, isDeleteWithCascade: false },
- }
- },
- /* Rows */
- onAddRow: () => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'row' },
- }
- },
- onEditRow: (row: Dictionary<any>) => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'row', row },
- }
- },
- onDeleteRows: (
- rows: SupaRow[],
- meta: { numRows?: number; allRowsSelected: boolean; callback?: () => void } = {
- numRows: 0,
- allRowsSelected: false,
- callback: () => {},
- }
- ) => {
- const { numRows, allRowsSelected, callback } = meta
- state.ui = {
- open: 'confirmation-dialog',
- confirmationDialog: { type: 'row', rows, numRows, allRowsSelected, callback },
- }
- },
- /* Misc */
- onExpandJSONEditor: (jsonValue: EditValue) => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'json', jsonValue },
- }
- },
- onExpandTextEditor: (column: string, row: Dictionary<any>) => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'cell', value: { column, row } },
- }
- },
- onEditForeignKeyColumnValue: (foreignKey: ForeignKeyState) => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'foreign-row-selector', foreignKey },
- }
- },
- onImportData: (file?: File) => {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'csv-import', file },
- }
- },
- toggleViewOperationQueue: () => {
- if (state.ui.open === 'side-panel' && state.ui.sidePanel.type === 'operation-queue') {
- state.closeSidePanel()
- } else {
- state.ui = {
- open: 'side-panel',
- sidePanel: { type: 'operation-queue' },
- }
- }
- },
- /* Utils */
- toggleConfirmationIsWithCascade: (overrideIsDeleteWithCascade?: boolean) => {
- if (
- state.ui.open === 'confirmation-dialog' &&
- (state.ui.confirmationDialog.type === 'column' ||
- state.ui.confirmationDialog.type === 'table')
- ) {
- state.ui.confirmationDialog.isDeleteWithCascade =
- overrideIsDeleteWithCascade ?? !state.ui.confirmationDialog.isDeleteWithCascade
- }
- },
- // ========================================================================
- // Operation Queue
- // ========================================================================
- operationQueue: {
- operations: [],
- status: 'idle',
- } as OperationQueueState,
- /**
- * Queue a new operation for later processing.
- * If an operation with the same key already exists, it will be overwritten.
- * Handles conflict resolution:
- * - DELETE_ROW on a row: remove any pending EDIT_CELL ops for that row
- * - EDIT_CELL on a row pending deletion: reject (console.warn)
- * - EDIT_CELL on a newly added row: merge edit into ADD_ROW's rowData
- * - DELETE_ROW on a newly added row: cancel both operations
- */
- queueOperation: (operation: NewQueuedOperation) => {
- const updateQueueStatus = () => {
- if (state.operationQueue.operations.length === 0) {
- state.operationQueue.status = 'idle'
- } else if (state.operationQueue.status === 'idle') {
- state.operationQueue.status = 'pending'
- }
- }
- // Handle DELETE_ROW conflicts
- if (operation.type === QueuedOperationType.DELETE_ROW) {
- const result = resolveDeleteRowConflicts(state.operationQueue.operations, operation)
- state.operationQueue.operations = result.filteredOperations
- if (result.action === 'skip') {
- updateQueueStatus()
- return
- }
- }
- // Handle EDIT_CELL_CONTENT conflicts
- if (operation.type === QueuedOperationType.EDIT_CELL_CONTENT) {
- const result = resolveEditCellConflicts(state.operationQueue.operations, operation)
- if (result.action === 'reject') {
- console.warn(result.reason)
- return
- }
- if (result.action === 'merge') {
- state.operationQueue.operations = result.updatedOperations
- updateQueueStatus()
- return
- }
- }
- // Normal upsert
- const { operations } = upsertOperation(state.operationQueue.operations, operation)
- state.operationQueue.operations = operations
- updateQueueStatus()
- },
- /**
- * Clear all operations from the queue
- */
- clearQueue: () => {
- state.operationQueue.operations = []
- state.operationQueue.status = 'idle'
- },
- /**
- * Remove a specific operation from the queue
- */
- removeOperation: (operationId: string) => {
- state.operationQueue.operations = state.operationQueue.operations.filter(
- (op) => op.id !== operationId
- )
- if (state.operationQueue.operations.length === 0) {
- state.operationQueue.status = 'idle'
- }
- },
- /**
- * Undo the latest operation from the queue
- */
- undoLatestOperation: () => {
- state.operationQueue.operations = state.operationQueue.operations.slice(0, -1)
- if (state.operationQueue.operations.length === 0) {
- state.operationQueue.status = 'idle'
- }
- },
- /**
- * Update the queue status
- */
- setQueueStatus: (status: QueueStatus) => {
- state.operationQueue.status = status
- },
- /**
- * Check if there are any pending operations in the queue
- */
- get hasPendingOperations(): boolean {
- return state.operationQueue.operations.length > 0
- },
- hasPendingCellChange: (
- tableId: number,
- rowIdentifiers: Dictionary<unknown>,
- columnName: string
- ): boolean => {
- const key = generateTableChangeKey({
- type: QueuedOperationType.EDIT_CELL_CONTENT,
- tableId,
- payload: {
- columnName,
- rowIdentifiers,
- },
- })
- return state.operationQueue.operations.some((op) => op.id === key)
- },
- /**
- * Toggle the preflight check behaviour for each table
- */
- tablesToIgnorePreflightCheck: [] as number[],
- setTableToIgnorePreflightCheck: (id: number) => {
- const set = new Set<number>(state.tablesToIgnorePreflightCheck)
- set.add(id)
- state.tablesToIgnorePreflightCheck = [...set]
- },
- })
- return state
- }
- export type TableEditorState = ReturnType<typeof createTableEditorState>
- export const TableEditorStateContext = createContext<TableEditorState>(createTableEditorState())
- export const TableEditorStateContextProvider = ({ children }: PropsWithChildren<{}>) => {
- const state = useConstant(createTableEditorState)
- return (
- <TableEditorStateContext.Provider value={state}>{children}</TableEditorStateContext.Provider>
- )
- }
- export const useTableEditorStateSnapshot = (options?: Parameters<typeof useSnapshot>[1]) => {
- const state = useContext(TableEditorStateContext)
- return useSnapshot(state, options)
- }
|