Adding a Visual Editor in React
Add live preview and click-to-edit to a React route that already renders Dyrected content, starting with the simplest supported preview flow.
Use this page when your React route already renders Dyrected content and you want editors to preview changes against the real frontend instead of guessing from raw form fields alone.
By the end, you should understand the minimum preview contract, the recommended first preview mode, and how Dyrected's click-to-edit helpers fit into a React page that already knows how to render its own content.
In the quick-start flow, this page turns a working content route into an editor-friendly preview route. After that, the next step is turning the same setup into a controlled custom-page workflow.
Start with the right mental model
In Dyrected, a visual editor is not a second website builder. It is your real frontend opened in a preview context while the admin keeps track of which document and field the editor is changing.
That means a working visual editor depends on three things:
- the collection knows which frontend URL to open
- the frontend can receive draft data
- rendered fields expose stable paths when you want click-to-edit behavior
Set previewUrl on the routable content type
Before you wire preview, make sure the content type has one real frontend route to open.
For most SPA quick starts, that means the pages content type should expose a route based on slug.
If the content has no reliable frontend route yet, finish the normal render path first.
Start with the default preview mode
The safest first quick-start path is the default postMessage flow. It works well when your frontend already fetches a document and can replace that document with draft data in the browser.
Use token-based preview later only when you need a separate token handoff instead of a live preview channel.
Add useLivePreview to the page component
Once the route can already render published content, let useLivePreview swap that content for draft updates while the preview is open:
import { DyrectedRichText, useLivePreview } from "@dyrected/react";
export function PreviewPage({ initialPage }: { initialPage: any }) {
const { data: page, isLive } = useLivePreview({
initialData: initialPage,
});
if (!page) return <p>Page not found.</p>;
return (
<article className="prose mx-auto">
{isLive ? <span className="preview-badge">Live preview</span> : null}
<h1>{page.title}</h1>
{page.content ? <DyrectedRichText content={page.content} /> : null}
</article>
);
}This keeps the first preview integration small: fetch the document normally, then let the hook receive draft updates when the preview pane is open.
Add click-to-edit where it matters
Click-to-edit only works reliably when the frontend renders fields through the path-aware helpers Dyrected already exposes.
For block content, that usually means rendering through Blocks and using useDyPath() inside the block component:
import { useDyPath } from "@dyrected/react";
export function HeroBlock({ heading, subheading }: { heading: string; subheading?: string }) {
const dyHeading = useDyPath("heading");
const dySubheading = useDyPath("subheading");
return (
<section>
<h1 {...dyHeading}>{heading}</h1>
{subheading ? <p {...dySubheading}>{subheading}</p> : null}
</section>
);
}Those paths are what let the preview surface map a click in the frontend back to the matching field in the editor.
Test one real preview route
Open the document from the admin, launch preview, and make one visible change while the page is open.
The success signal is simple:
- the correct frontend route opens
- draft edits appear there while you type
- clicking a supported element takes you back to the right field
Recommended path
Do the visual editor work in this order:
- make the normal page render work
- set the routable content's preview target
- wire the first route to
useLivePreview - add path-aware block rendering only where editors need click-to-edit
That order prevents the preview system from becoming the first place a page ever works.
Escape hatches
If you need broader background on preview semantics, keep this page as the quick-start integration step and use Displaying Content Overview for the rendering helpers.
Success check
You are ready for the next step when:
- a document opens the correct frontend route from the admin
- draft changes show up in that route during editing
- block-based areas keep their field paths stable enough for click-to-edit where needed
Once that is true, continue to Let Editors Build Custom Pages in React with Dyrected.
Displaying Content in React
Fetch Dyrected content in a React SPA, render common field types correctly, and prove one real route before moving into preview.
Let Editors Build Custom Pages in React with Dyrected
Set up Dyrected so your marketing and content team or clients can build new landing pages from approved reusable sections without waiting on a developer for every copy and layout change.