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-react
yarn add editmode-react
Usage
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}/chunksReactDOM.render( <React> <EditmodeprojectId={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> <EditmodeprojectId={project_id} branchId={branch_id}> <App /> </Editmode> </React>,document.getElementById("root"));
import { Editmode } from"editmode-react";import { defaultChunks } from"./data/defaultChunks";// Editmode is smart about fetching and caching content to ensure that 1. Your// app/site always remains fast, and 2. Users always see the most recent content.// While Editmode is capable of loading content direct from our CDN, some // customers like to also bundle a resource file within their codebase that will // provide content in the event that the API fails. This can // be achieved by passing an object with default content to the Editmode provider// on initialization. The creation of this file can be automated via our API.// See https://snack.expo.io/@editmode/algolia-demo for an interactive demo// of this setupReactDOM.render( <React> <EditmodeprojectId={project_id} defaultChunks={defaultChunks} > <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:
import { Chunk } from"editmode-react";functionExample() {return ( <section> {/* Reference a standalone chunk using the chunk identifier */} <Chunkidentifier="cnk_7019e843b76e2d0395ab" /> {/* You can also reference a chunk using its content key */} <Chunkidentifier="company_name" /> {/* Provide default content when referencing a chunk */} {/* Default content is a precaution that will get rendered in the event that the content cannot be served from the Editmode API. */} <Chunkidentifier="company_name"> Our Company </Chunk> </section> );}
import { Chunk } from"editmode-react";functionExample() {return ( <section> {/* Editmode has two types of chunks - "standalone" and "hybrid". Standalone chunks can only store a single piece of content, whereas hybrid (or collection) chunks can have many fields. These fields are pre-specified in the Content Hub at https://app.editmode.com */} <Chunkidentifier="home_hero"field="Headline" /> <Chunkidentifier="home_hero"field="Tagline" /> <Chunkidentifier="home_hero"field="Description" /> </section> );}
import { Chunk } from"editmode-react";// By default, an editable chunk is rendered to the client as an unstyled <em-span />// This can cause unwanted behaviour from a styling perspective, so you can tell // Editmode to add a class to the wrapper.functionExample() {return ( <section> <Chunkidentifier="company_name"className="bg-white rounded shadow p-6" /> </section> );}
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...
import { ChunkCollection, ChunkFieldValue } from"editmode-react";functionExample() {return ( <sectionclassName="testimonials"> {/* Render content from a collection, with inline editing */} <ChunkCollectionidentifier="col_MFxBu6fiTyRM" > <ChunkFieldValueidentifier="fld_LscoanYMdCOy" /> <ChunkFieldValueidentifier="fld_Iq94B0LyQxGc" /> <ChunkFieldValueidentifier="fld_LyRI6y3v2D8ct" /> </ChunkCollection> {/* Use content keys for better readability */} <ChunkCollectionidentifier="testimonials" > <ChunkFieldValueidentifier="Name" /> <ChunkFieldValueidentifier="Role" /> <ChunkFieldValueidentifier="Comment" /> </ChunkCollection> {/* Only render collection items with certain tags */} <ChunkCollectionidentifier="testimonials"tags={["home_testimonials"]}> <ChunkFieldValueidentifier="Name" /> <ChunkFieldValueidentifier="Role" /> <ChunkFieldValueidentifier="Comment" /> </ChunkCollection> </section> );}
import { ChunkCollection, ChunkFieldValue, getChunk } from"editmode-react";// Often, when iterating through a collection of content, your UI will need // to access the raw values, instead of rendering inline-editable chunks. // For this we use getChunk(), along with ChunkCollection.functionExample() {return ( <sectionclassName="meet_the_team"> <ChunkCollectionidentifier="navigation_items"> {(getChunk, chunk) => {return (if (getChunk(chunk,"Title")) { {/* Render an editable inline field */} <ChunkFieldValue identifier="Title"/> {/* Render a link using the chunk field values*/} <a href={getChunk(chunk,"Url")}> {getChunk(chunk, "Title")} </a> } ) }} </ChunkCollection> </section> );}
ChunkCollection Attributes
ChunkFieldValue Attributes
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.
// This chunk should render an image with 200 x 200 dimension<Chunkidentifier='cnk_23123123'transformation="w-200 h-200" />// For image inside a collection<ChunkCollectionidentifier="col_123..."> <ChunkFieldValueidentifier='Avatar'transformation="w-200 h-200" /></ChunkCollection>
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.