Removes PayloadRequestWithData in favour of just PayloadRequest with
optional types for `data` and `locale`
`addDataAndFileToRequest` and `addLocalesToRequestFromData` now takes in
a single argument instead of an object
```ts
// before
await addDataAndFileToRequest({ request: req })
addLocalesToRequestFromData({ request: req })
// current
await addDataAndFileToRequest(req)
addLocalesToRequestFromData(req)
```
---------
Co-authored-by: Paul Popus <paul@nouance.io>
30 lines
796 B
TypeScript
30 lines
796 B
TypeScript
import type { CreateGlobalArgs, PayloadRequest } from 'payload'
|
|
|
|
import toSnakeCase from 'to-snake-case'
|
|
|
|
import type { PostgresAdapter } from './types.js'
|
|
|
|
import { upsertRow } from './upsertRow/index.js'
|
|
|
|
export async function createGlobal<T extends Record<string, unknown>>(
|
|
this: PostgresAdapter,
|
|
{ slug, data, req = {} as PayloadRequest }: CreateGlobalArgs,
|
|
): Promise<T> {
|
|
const db = this.sessions[req.transactionID]?.db || this.drizzle
|
|
const globalConfig = this.payload.globals.config.find((config) => config.slug === slug)
|
|
|
|
const tableName = this.tableNameMap.get(toSnakeCase(globalConfig.slug))
|
|
|
|
const result = await upsertRow<T>({
|
|
adapter: this,
|
|
data,
|
|
db,
|
|
fields: globalConfig.fields,
|
|
operation: 'create',
|
|
req,
|
|
tableName,
|
|
})
|
|
|
|
return result
|
|
}
|