Fixes https://github.com/payloadcms/payload/issues/13507 When enabling autosave on global multi-tenant documents, the page would not always render - more noticeably with smaller autosave intervals.
67 lines
1.9 KiB
TypeScript
67 lines
1.9 KiB
TypeScript
import { multiTenantPlugin } from '@payloadcms/plugin-multi-tenant'
|
|
import { fileURLToPath } from 'node:url'
|
|
import path from 'path'
|
|
const filename = fileURLToPath(import.meta.url)
|
|
const dirname = path.dirname(filename)
|
|
|
|
import type { Config as ConfigType } from './payload-types.js'
|
|
|
|
import { buildConfigWithDefaults } from '../buildConfigWithDefaults.js'
|
|
import { AutosaveGlobal } from './collections/AutosaveGlobal.js'
|
|
import { Menu } from './collections/Menu.js'
|
|
import { MenuItems } from './collections/MenuItems.js'
|
|
import { Tenants } from './collections/Tenants.js'
|
|
import { Users } from './collections/Users/index.js'
|
|
import { seed } from './seed/index.js'
|
|
import { autosaveGlobalSlug, menuItemsSlug, menuSlug } from './shared.js'
|
|
|
|
export default buildConfigWithDefaults({
|
|
collections: [Tenants, Users, MenuItems, Menu, AutosaveGlobal],
|
|
admin: {
|
|
autoLogin: false,
|
|
importMap: {
|
|
baseDir: path.resolve(dirname),
|
|
},
|
|
components: {
|
|
graphics: {
|
|
Logo: '/components/Logo/index.js#Logo',
|
|
Icon: '/components/Icon/index.js#Icon',
|
|
},
|
|
},
|
|
},
|
|
onInit: seed,
|
|
plugins: [
|
|
multiTenantPlugin<ConfigType>({
|
|
debug: true,
|
|
userHasAccessToAllTenants: (user) => Boolean(user.roles?.includes('admin')),
|
|
useTenantsCollectionAccess: false,
|
|
tenantField: {
|
|
access: {},
|
|
},
|
|
collections: {
|
|
[menuItemsSlug]: {
|
|
useTenantAccess: false,
|
|
},
|
|
[menuSlug]: {
|
|
isGlobal: true,
|
|
},
|
|
[autosaveGlobalSlug]: {
|
|
isGlobal: true,
|
|
},
|
|
},
|
|
i18n: {
|
|
translations: {
|
|
en: {
|
|
'field-assignedTenant-label': 'Currently Assigned Site',
|
|
'nav-tenantSelector-label': 'Filter By Site',
|
|
'confirm-modal-tenant-switch--heading': 'Confirm Site Change',
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
typescript: {
|
|
outputFile: path.resolve(dirname, 'payload-types.ts'),
|
|
},
|
|
})
|