mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 12:14:26 +08:00
* chore: cleanup packages - Avoid circular imports - Export API-types as types - pg-format without depending on Node internal Buffer (not browser-compatible) - Avoid importing from barrel files in ui dir * chore: avoid barrel file imports in studio (#27771) * chore: avoid barrel file imports - Removes some unused imports - Avoids barrel file import for faster builds + less memory * add eslint rule * type fixes * delete layouts barrel * delete components/grid barrel file * delete components/grid/utils barrel file * delete components/grid/components/common barrel file * delete components/grid/components/editor barrel file * delete components/grid/components/formatter barrel file * delete components/grid/components/grid barrel file * delete components/grid/components/header/filter barrel file * remote components/grid/store barrel file * remove components/interfaces/Auth/Policies barrel file * delete components/interfaces/Settings/Logs barrel file * delete components/ui/CodeEditor barrel file * delete components/ui/Forms barrel file * delete components/ui/Shimmers barrel file * delete data/analytics barrel file * delete hooks barrel file * cleanup lib/common/fetch barrel file * final * barral files cleanup * global react-data-grid styles * remove console.log --------- Co-authored-by: Kevin Grüneberg <k.grueneberg1994@gmail.com> * fix build --------- Co-authored-by: Kevin Grüneberg <k.grueneberg1994@gmail.com>
99 lines
2.7 KiB
TypeScript
99 lines
2.7 KiB
TypeScript
import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query'
|
|
import { toast } from 'react-hot-toast'
|
|
|
|
import { Query } from 'components/grid/query/Query'
|
|
import type { SupaTable } from 'components/grid/types'
|
|
import { executeSql } from 'data/sql/execute-sql-query'
|
|
import { sqlKeys } from 'data/sql/keys'
|
|
import { ImpersonationRole, wrapWithRoleImpersonation } from 'lib/role-impersonation'
|
|
import { isRoleImpersonationEnabled } from 'state/role-impersonation-state'
|
|
import type { ResponseError } from 'types'
|
|
|
|
export type TableRowUpdateVariables = {
|
|
projectRef: string
|
|
connectionString?: string
|
|
table: SupaTable
|
|
configuration: { identifiers: any }
|
|
payload: any
|
|
enumArrayColumns: string[]
|
|
returning?: boolean
|
|
impersonatedRole?: ImpersonationRole
|
|
}
|
|
|
|
export function getTableRowUpdateSql({
|
|
table,
|
|
configuration,
|
|
payload,
|
|
returning = false,
|
|
enumArrayColumns,
|
|
}: Pick<
|
|
TableRowUpdateVariables,
|
|
'table' | 'payload' | 'configuration' | 'enumArrayColumns' | 'returning'
|
|
>) {
|
|
return new Query()
|
|
.from(table.name, table.schema ?? undefined)
|
|
.update(payload, { returning, enumArrayColumns })
|
|
.match(configuration.identifiers)
|
|
.toSql()
|
|
}
|
|
|
|
export async function updateTableRow({
|
|
projectRef,
|
|
connectionString,
|
|
table,
|
|
payload,
|
|
configuration,
|
|
enumArrayColumns,
|
|
returning,
|
|
impersonatedRole,
|
|
}: TableRowUpdateVariables) {
|
|
const sql = wrapWithRoleImpersonation(
|
|
getTableRowUpdateSql({ table, configuration, payload, enumArrayColumns, returning }),
|
|
{
|
|
projectRef,
|
|
role: impersonatedRole,
|
|
}
|
|
)
|
|
|
|
const { result } = await executeSql({
|
|
projectRef,
|
|
connectionString,
|
|
sql,
|
|
isRoleImpersonationEnabled: isRoleImpersonationEnabled(impersonatedRole),
|
|
})
|
|
|
|
return result
|
|
}
|
|
|
|
type TableRowUpdateData = Awaited<ReturnType<typeof updateTableRow>>
|
|
|
|
export const useTableRowUpdateMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseMutationOptions<TableRowUpdateData, ResponseError, TableRowUpdateVariables>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
const queryClient = useQueryClient()
|
|
|
|
return useMutation<TableRowUpdateData, ResponseError, TableRowUpdateVariables>(
|
|
(vars) => updateTableRow(vars),
|
|
{
|
|
async onSuccess(data, variables, context) {
|
|
const { projectRef, table } = variables
|
|
await queryClient.invalidateQueries(sqlKeys.query(projectRef, [table.schema, table.name]))
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to update table row: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
}
|
|
)
|
|
}
|