32 lines
932 B
TypeScript
32 lines
932 B
TypeScript
import type { UpdateGlobalArgs } from 'payload/database'
|
|
import type { PayloadRequest, TypeWithID } from 'payload/types'
|
|
|
|
import toSnakeCase from 'to-snake-case'
|
|
|
|
import type { PostgresAdapter } from './types'
|
|
|
|
import { upsertRow } from './upsertRow'
|
|
|
|
export async function updateGlobal<T extends TypeWithID>(
|
|
this: PostgresAdapter,
|
|
{ data, req = {} as PayloadRequest, slug }: UpdateGlobalArgs,
|
|
): Promise<T> {
|
|
const db = this.sessions[req.transactionID]?.db || this.drizzle
|
|
const globalConfig = this.payload.globals.config.find((config) => config.slug === slug)
|
|
const tableName = toSnakeCase(slug)
|
|
|
|
const existingGlobal = await db.query[tableName].findFirst({})
|
|
|
|
const result = await upsertRow<T>({
|
|
...(existingGlobal ? { id: existingGlobal.id, operation: 'update' } : { operation: 'create' }),
|
|
adapter: this,
|
|
data,
|
|
db,
|
|
fields: globalConfig.fields,
|
|
tableName,
|
|
req,
|
|
})
|
|
|
|
return result
|
|
}
|