Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

🚀 A React Framework for building extensible drag and drop page editors

License

NotificationsYou must be signed in to change notification settings

prevwong/craft.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Live Demo

Page editors are a great way to provide an excellent user experience. However, to build one is often a pretty dreadful task.

There're existing libraries that come with a fully working page editor out of the box with a user interface and editable components. However, if you wish to make customisations such as modifying the user interface and its behavior, it will most definitely involve modifying the library itself.

Craft.js solves this problem by modularising the building blocks of a page editor. It ships with a drag-n-drop system and handles the way user components should be rendered, updated and moved - among other things. With this, you'll be able to build your own page editor exactly how you want it to look and behave.

Docs

Examples

These examples should give you an idea on the flexibility of Craft.js.

Both these examples look very different from each other, with very different UI. But they are both built with Craft.js! 🤯

Features 🔥

It's just React

No need for complicated plugin systems. Design your editor from top to bottom the same way as you would design any other frontend application in React.

A simple user component can easily be defined as such:

import{useNode}from"@craftjs/core";constTextComponent=({ text})=>{const{connectors:{ connect, drag},}=useNode();return(<divref={(ref)=>connect(drag(ref))}><h2>{text}</h2></div>);};

Heck, the entire UI of your page editor is built using just React.

importReactfrom"react";import{Editor,Frame,Element}from"@craftjs/core";constApp=()=>{return(<div><header>Some fancy header or whatever</header><Editor>        // Editable area starts here<Frameresolver={{ TextComponent, Container}}><Elementcanvasis={TextComponent}text="I'm already rendered here"/></Frame></Editor></div>);};

Control how your components are edited

An obvious requirement for page editors is that they need to allow users to edit components. With Craft.js, you control the process of which these components should be edited.

In the following example, when the user clicks on a component, we'll display a modal that requires the user to input a value for thetext prop. As the input value changes, the component will be re-rendered with updated prop.

import{useNode}from"@craftjs/core";constTextComponent=({ text})=>{const{connectors:{ connect, drag},    isClicked,actions:{ setProp},}=useNode((state)=>({isClicked:state.events.selected,}));return(<divref={(dom)=>connect(drag(dom))}><h2>{text}</h2>{isClicked ?(<Modal><inputtype="text"value={text}onChange={(e)=>setProp(e.target.value)}/></Modal>) :null}</div>);};

With this, you could easily implement content editable text or drag-to-resize components, just as any modern page editor would have.

User components with droppable regions

Let's say we need a "Container" component which users can drop into the editor. Additionally, we would also like them to be able to drag and drop other components into the Container.

In Craft.js, it's as simple as calling the<Canvas />

import{useNode}from"@craftjs/core";constContainer=()=>{const{connectors:{drag}}=useNode();return(<divref={drag}><Canvasid="drop_section">         // Now users will be able to drag/drop components into this section<TextComponent/></Canvas></div>)}

Extensible

Craft.js provides an expressive API which allows you to easily read and manipulate the editor state. Let's say you would like to implement a copy function for a component:

import{useEditor,useNode}from"@craftjs/core";constContainer=()=>{const{actions:{add},query:{ createNode, node}}=useEditor();const{ id,connectors:{drag, connect}}=useNode();return(<divref={dom=>connect(drag(dom))}>      ...<aonClick={()=>{const{data:{type, props}}=node(id).get();add(createNode(React.createElement(type,props)););}}>        Make a copy of me</a></div>)}

Serializable state

The editor's state can be serialized into JSON which you can then apply a compression technique of your choice for storage.

constSaveButton=()=>{const{ query}=useEditor();return<aonClick={()=>console.log(query.serialize())}>Get JSON</a>}

Of course, Craft.js will also able to recreate the entire state from the JSON string.

constApp=()=>{constjsonString=/* retrieve JSON from server */return(<Editor><Framejson={jsonString}>        ...</Frame></Editor>)}

Who is this for? 🤔

You should use this if:

  • ✅ You want to design your page editor according to your own UI specifications. With Craft.js, you control almost every aspect of the look and feel of your page editor.
  • ✅ You like the React ecosystem. Being a React framework, not only do you get to build your user interface declaratively, but you will also be able to extend upon thousands of existing React components for your page editor.
  • ✅ You're the coolest kid in class 😎

You should not use this if:

  • ❌ You need a page editor that works out of the box. Craft.js is an abstraction where you implement your own page editor upon. For example, it does not come with a ready-made user interface.
    • However, you could still consider using theexamples as a starting point.

Additional Packages 🎉

Acknowledgements 🙌

  • react-dnd The React drag-n-drop library.Although it is not actually used here, many aspects of Craft.js are written with react-dnd as a reference along with some utilities and functions being borrowed.
  • Grape.js The HTML web builder framework. This has served as an inspiration for Craft.js. The element positioning logic used in Craft.js is borrowed from Grape.js
  • use-methods A super handy hook when dealing with reducers. Craft.js uses a slightly modified version ofuse-methods to better fit our API.

Getting Help 👋

If you have questions or there's something you'd like to discuss (eg: contributing), please head over to ourDiscord server.

Sponsor 💟

Craft.js is released under theMIT license and is built with 100% love. If you found it useful and would like to ensure its continued development, please consider becoming a backer/sponsor or making a one-time donation viaGithub Sponsor,Open Collective orKo-fi.

Sponsors

Backers


[8]ページ先頭

©2009-2025 Movatter.jp