Files
payload/test/live-preview/utilities/formatLivePreviewURL.ts
James Mikrut 91a0f90649 fix(next): allows relative live preview urls (#11083)
We now properly allow relative live preview URLs which is handy if
you're deploying on a platform like Vercel and do not know what the
preview domain is going to end up being at build time.

This PR also removes some problematic code in the website template which
hard-codes the protocol to `https://` in production even if you're
running locally.

Fixes #11070
2025-02-10 18:20:34 +00:00

46 lines
1.3 KiB
TypeScript

import type { LivePreviewConfig } from 'payload'
export const formatLivePreviewURL: LivePreviewConfig['url'] = async ({
data,
collectionConfig,
req,
}) => {
let baseURL = `/live-preview`
// You can run async requests here, if needed
// For example, multi-tenant apps may need to lookup additional data
if (data.tenant) {
try {
const fullTenant = await req.payload
.find({
collection: 'tenants',
where: {
id: {
equals: data.tenant,
},
},
limit: 1,
depth: 0,
})
.then((res) => res?.docs?.[0])
if (fullTenant?.clientURL) {
// Note: appending a fully-qualified URL here won't work for preview deployments on Vercel
baseURL = `${fullTenant.clientURL}/live-preview`
}
} catch (e) {
console.error(e)
}
}
// Format the URL as needed, based on the document and data
// I.e. append '/posts' to the URL if the document is a post
// You can also do this on individual collection or global config, if preferred
const isPage = collectionConfig && collectionConfig.slug === 'pages'
const isHomePage = isPage && data?.slug === 'home'
return `${baseURL}${
!isPage && collectionConfig ? `/${collectionConfig.slug}` : ''
}${!isHomePage && data.slug ? `/${data.slug}` : ''}`
}