Editmode for React
Editmode allows you to turn plain text in your React app into easily inline-editable bits of content that can be managed by anyone with no technical knowledge.
Installation
npm install editmode-reactyarn add editmode-reactUsage
Step 1:
Within your React app, navigate to the index file within your src directory. Import the Editmode wrapper and wrap your App within.
import { Editmode } from "editmode-react";
// 👉 `project_id` can be found in the URL:
// https://editmode.com/projects/{project_id}/chunks
ReactDOM.render(
<React>
<Editmode projectId={project_id}>
<App />
</Editmode>
</React>,
document.getElementById("root")
);import { Editmode } from "editmode-react";
// Branches are used to create separate "versions" of your content, which can
// be useful for staging, running a/b tests, or developing locally on teams.
// Branches are created within the content hub at https://app.editmode.com
// Specifying a branch id when initializing Editmode will load all content
// from that specific branch.
ReactDOM.render(
<React>
<Editmode projectId={project_id} branchId={branch_id}>
<App />
</Editmode>
</React>,
document.getElementById("root")
);Step 2:
Rendering a chunk:
If you have already created the chunk you would like to render on the Editmode CMS, you can simply pass the identifier as a prop and begin editing. You can provide default content as a fallback should anything go wrong trying to retrieve the data from the API:
Rendering a chunk collection:
Chunk collections are simply a way to group chunks and can be used to render repeatable content. Each collection can contain many properties and each property can hold different types of information.
A good use case example would be creating a "Team Member" collection. It may have Full Name, Title and Headshot properties. Within your React app, you may want to display the name, title and headshot of all your team members (i.e. all chunks within the Team Member collection). You can do this by passing the chunk collection identifier as a prop to the ChunkCollection component. For example...
ChunkCollection Attributes
Attribute
Type
Description
identifier
string
Takes the id of a collection you want to loop through
limit
int string
optional The number of collection items you want to display
tags
array
optional Filter collection items based on tags listed in this prop
className
string
optional Class name(s) that will be added along with “chunks-collection-wrapper” to the main collection <div> element
itemClass
string
optional Class name(s) that will be added along with “chunks-collection-item–wrapper” to all collection items
ChunkFieldValue Attributes
Attribute
Type
Description
identifier
string
Takes the identifier or field_name of a collection field
className
string
optional Class name(s) that will be added in the chunk em-span element
Variables
Variables that are created in the Editmode CMS are also supported by passing an object prop as variables.
With this, chunks such as Hello, {{name}}! will be parsed as Hello, John!
Image Transformations
Editmode is capable of performing all kinds of transformations on your images before they're rendered within your web app or web site
The transformation attribute is used to perform real-time image transformations to deliver perfect images to the end-users.
Using the Magic Editor
You can now edit and save all of the chunks in your React app from within the browser - just add editmode=1 as a query string parameter to the current URL to initialize the Magic Editor.
Last updated
Was this helpful?