|
|
--- |
|
|
title: How to preview content with Draft Mode in Next.js |
|
|
nav_title: Draft Mode |
|
|
description: Next.js has draft mode to toggle between static and dynamic pages. You can learn how it works with App Router here. |
|
|
related: |
|
|
title: Next Steps |
|
|
description: See the API reference for more information on how to use Draft Mode. |
|
|
links: |
|
|
- app/api-reference/functions/draft-mode |
|
|
--- |
|
|
|
|
|
**Draft Mode** allows you to preview draft content from your headless CMS in your Next.js application. This is useful for static pages that are generated at build time as it allows you to switch to [dynamic rendering](/docs/app/getting-started/partial-prerendering#dynamic-rendering) and see the draft changes without having to rebuild your entire site. |
|
|
|
|
|
This page walks through how to enable and use Draft Mode. |
|
|
|
|
|
## Step 1: Create a Route Handler |
|
|
|
|
|
Create a [Route Handler](/docs/app/api-reference/file-conventions/route). It can have any name, for example, `app/api/draft/route.ts`. |
|
|
|
|
|
```ts filename="app/api/draft/route.ts" switcher |
|
|
export async function GET(request: Request) { |
|
|
return new Response('') |
|
|
} |
|
|
``` |
|
|
|
|
|
```js filename="app/api/draft/route.js" switcher |
|
|
export async function GET() { |
|
|
return new Response('') |
|
|
} |
|
|
``` |
|
|
|
|
|
Then, import the [`draftMode`](/docs/app/api-reference/functions/draft-mode) function and call the `enable()` method. |
|
|
|
|
|
```ts filename="app/api/draft/route.ts" switcher |
|
|
import { draftMode } from 'next/headers' |
|
|
|
|
|
export async function GET(request: Request) { |
|
|
const draft = await draftMode() |
|
|
draft.enable() |
|
|
return new Response('Draft mode is enabled') |
|
|
} |
|
|
``` |
|
|
|
|
|
```js filename="app/api/draft/route.js" switcher |
|
|
import { draftMode } from 'next/headers' |
|
|
|
|
|
export async function GET(request) { |
|
|
const draft = await draftMode() |
|
|
draft.enable() |
|
|
return new Response('Draft mode is enabled') |
|
|
} |
|
|
``` |
|
|
|
|
|
This will set a **cookie** to enable draft mode. Subsequent requests containing this cookie will trigger draft mode and change the behavior of statically generated pages. |
|
|
|
|
|
You can test this manually by visiting `/api/draft` and looking at your browser’s developer tools. Notice the `Set-Cookie` response header with a cookie named `__prerender_bypass`. |
|
|
|
|
|
## Step 2: Access the Route Handler from your Headless CMS |
|
|
|
|
|
> These steps assume that the headless CMS you’re using supports setting **custom draft URLs**. If it doesn’t, you can still use this method to secure your draft URLs, but you’ll need to construct and access the draft URL manually. The specific steps will vary depending on which headless CMS you’re using. |
|
|
|
|
|
To securely access the Route Handler from your headless CMS: |
|
|
|
|
|
1. Create a **secret token string** using a token generator of your choice. This secret will only be known by your Next.js app and your headless CMS. |
|
|
2. If your headless CMS supports setting custom draft URLs, specify a draft URL (this assumes that your Route Handler is located at `app/api/draft/route.ts`). For example: |
|
|
|
|
|
```bash filename="Terminal" |
|
|
https: |
|
|
``` |
|
|
|
|
|
> - `<your-site>` should be your deployment domain. |
|
|
> - `<token>` should be replaced with the secret token you generated. |
|
|
> - `<path>` should be the path for the page that you want to view. If you want to view `/posts/one`, then you should use `&slug=/posts/one`. |
|
|
> |
|
|
> Your headless CMS might allow you to include a variable in the draft URL so that `<path>` can be set dynamically based on the CMS’s data like so: `&slug=/posts/{entry.fields.slug}` |
|
|
|
|
|
3. In your Route Handler, check that the secret matches and that the `slug` parameter exists (if not, the request should fail), call `draftMode.enable()` to set the cookie. Then, redirect the browser to the path specified by `slug`: |
|
|
|
|
|
```ts filename="app/api/draft/route.ts" switcher |
|
|
import { draftMode } from 'next/headers' |
|
|
import { redirect } from 'next/navigation' |
|
|
|
|
|
export async function GET(request: Request) { |
|
|
|
|
|
const { searchParams } = new URL(request.url) |
|
|
const secret = searchParams.get('secret') |
|
|
const slug = searchParams.get('slug') |
|
|
|
|
|
|
|
|
|
|
|
if (secret !== 'MY_SECRET_TOKEN' || !slug) { |
|
|
return new Response('Invalid token', { status: 401 }) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const post = await getPostBySlug(slug) |
|
|
|
|
|
|
|
|
if (!post) { |
|
|
return new Response('Invalid slug', { status: 401 }) |
|
|
} |
|
|
|
|
|
|
|
|
const draft = await draftMode() |
|
|
draft.enable() |
|
|
|
|
|
|
|
|
|
|
|
redirect(post.slug) |
|
|
} |
|
|
``` |
|
|
|
|
|
```js filename="app/api/draft/route.js" switcher |
|
|
import { draftMode } from 'next/headers' |
|
|
import { redirect } from 'next/navigation' |
|
|
|
|
|
export async function GET(request) { |
|
|
|
|
|
const { searchParams } = new URL(request.url) |
|
|
const secret = searchParams.get('secret') |
|
|
const slug = searchParams.get('slug') |
|
|
|
|
|
|
|
|
|
|
|
if (secret !== 'MY_SECRET_TOKEN' || !slug) { |
|
|
return new Response('Invalid token', { status: 401 }) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const post = await getPostBySlug(slug) |
|
|
|
|
|
|
|
|
if (!post) { |
|
|
return new Response('Invalid slug', { status: 401 }) |
|
|
} |
|
|
|
|
|
|
|
|
const draft = await draftMode() |
|
|
draft.enable() |
|
|
|
|
|
|
|
|
|
|
|
redirect(post.slug) |
|
|
} |
|
|
``` |
|
|
|
|
|
If it succeeds, then the browser will be redirected to the path you want to view with the draft mode cookie. |
|
|
|
|
|
## Step 3: Preview the Draft Content |
|
|
|
|
|
The next step is to update your page to check the value of `draftMode().isEnabled`. |
|
|
|
|
|
If you request a page which has the cookie set, then data will be fetched at **request time** (instead of at build time). |
|
|
|
|
|
Furthermore, the value of `isEnabled` will be `true`. |
|
|
|
|
|
```tsx filename="app/page.tsx" switcher |
|
|
|
|
|
import { draftMode } from 'next/headers' |
|
|
|
|
|
async function getData() { |
|
|
const { isEnabled } = await draftMode() |
|
|
|
|
|
const url = isEnabled |
|
|
? 'https://draft.example.com' |
|
|
: 'https://production.example.com' |
|
|
|
|
|
const res = await fetch(url) |
|
|
|
|
|
return res.json() |
|
|
} |
|
|
|
|
|
export default async function Page() { |
|
|
const { title, desc } = await getData() |
|
|
|
|
|
return ( |
|
|
<main> |
|
|
<h1>{title}</h1> |
|
|
<p>{desc}</p> |
|
|
</main> |
|
|
) |
|
|
} |
|
|
``` |
|
|
|
|
|
```jsx filename="app/page.js" switcher |
|
|
|
|
|
import { draftMode } from 'next/headers' |
|
|
|
|
|
async function getData() { |
|
|
const { isEnabled } = await draftMode() |
|
|
|
|
|
const url = isEnabled |
|
|
? 'https://draft.example.com' |
|
|
: 'https://production.example.com' |
|
|
|
|
|
const res = await fetch(url) |
|
|
|
|
|
return res.json() |
|
|
} |
|
|
|
|
|
export default async function Page() { |
|
|
const { title, desc } = await getData() |
|
|
|
|
|
return ( |
|
|
<main> |
|
|
<h1>{title}</h1> |
|
|
<p>{desc}</p> |
|
|
</main> |
|
|
) |
|
|
} |
|
|
``` |
|
|
|
|
|
If you access the draft Route Handler (with `secret` and `slug`) from your headless CMS or manually using the URL, you should now be able to see the draft content. And, if you update your draft without publishing, you should be able to view the draft. |
|
|
|