last-draft is a Draft.js editor inspired heavily by MegaDraft and draft-js-plugins
npm install last-draft --save
Check out this awesome 🌠🎉🏄 Last Draft example
To run the example simply git clone
, then run yarn install
and npm run dev
import React, { Component } from 'react'
import { render } from 'react-dom'
import {Editor, editorStateFromHtml, editorStateToHtml, editorStateFromRaw, editorStateToJSON} from 'last-draft'
/* init the state, either from raw or html */
import raw from './initialState/raw'
export default class ExampleEditor extends Component {
constructor(props) {
super(props)
const INITIAL_STATE = editorStateFromRaw(raw)
this.state = { value: INITIAL_STATE }
}
onChange(editorState) {
this.setState({ value: editorState })
console.log(editorStateToHtml(editorState))
console.log(editorStateToJSON(editorState))
}
render() {
return (
<Editor
editorState={this.state.value}
placeholder='Enter text...'
onChange={::this.onChange} />
)
}
}
Array of inline styles to use in the toolbar. Any of the following: bold
, italic
, strikethrough
, code
, dropcap
. By default all are included:
<Editor
editorState={this.state.value}
inline={['bold', 'italic', 'dropcap']}
onChange={::this.onChange} />
Array of block styles to use in the toolbar. Any of the following: ul
, ol
, h2
, blockquote
, quote
. By default all are included:
<Editor
editorState={this.state.value}
blocks={['blockquote', 'code']}
onChange={::this.onChange} />
Array of entities to use. Any of the following: link
, hashtag
. By default all are included:
<Editor
editorState={this.state.value}
entities={['link']}
onChange={::this.onChange} />
Plugins include custom functionality which can be activated from a button in the toolbar. By default the image
and video
plugins are included. However you can create your own plugins! Some examples are below:
- ld-audio - Adds an audio player with soundcloud support
- ld-color-picker - Adds Color picker functionality
- ld-emoji - Adds emoji functionality
- ld-html - Adds Edit html functionality
- ld-todo - Adds todo functionality
import audio from 'ld-audio'
import color from 'ld-color-picker'
import emoji from 'ld-emoji'
import html from 'ld-html'
import todo from 'ld-todo'
let plugins = [audio, color, emoji, html, todo]
<Editor
editorState={this.state.value}
plugins={plugins}
onChange={::this.onChange} />
To create and test your own plugin, I would advise to test it in this repo, by simply adding the plugin to the plugins folder and then import it in the index.js
e.g. import newplugin from './video/newplugin'
. Copy any of the above ld-
plugins as a starting point. Once it is working then create your new plugin repo npm run build
it, then publish it to npm.
A callback to parse the url for example uploading the file to S3 or a database and returning the url. Returns a promise which should return an object with a src property e.g. resolve({ src: 'http://imgur.com/yrwFoXT.jpg' })
. You can also return srcSet
prop for responsive images resolve({ src: 'x.jpg' srcSet: 'y.jpg' })
<Editor
editorState={this.state.value}
uploadImageCallBack={uploadImageCallBack}
onChange={::this.onChange} />
function uploadImageCallBack(file) {
return new Promise(
(resolve, reject) => {
/* simulating a 2 second call to parse file and return an img src... */
setTimeout( () => {
const src = 'http://imgur.com/yrwFoXT.jpg'
resolve({ src: src })
}, 2000)
}
)
}
Whether to focus the Editor on component mount. Default is false
Pass in a custom theme to override the base Last Draft styles. An object with the following properties:
let THEME = { backgroundColor: '#181818', color: '#66ff00', highlight: '#a80077' }
Last Draft uses styled-components 💅 for the base styling.
You need to include the base draft.css styles, similar to with any Draft.js Editor.
You can set a custom theme for the Last Draft Editor. As shown in the last draft example
let THEME = {
backgroundColor: '#181818',
color: '#66ff00',
highlight: '#a80077'
}
<Editor theme={THEME}
You can also add custom css to override the base styling with the following class names specified below:
It is simple to customize elements in the editor, as shown in the ld-theme-example.css.
Block styles
.ld-header {}
.ld-unordered-list {}
.ld-ordered-list {}
.ld-blockquote {}
.ld-align-wrapper {}
.ld-align-left {}
.ld-align-center {}
.ld-align-right {}
Entity styles
.ld-link {}
.ld-hashtag {}
Plugin Block styles
.ld-block-wrapper {}
.ld-block {}
.ld-block-actions-wrapper {}
.ld-block-actions {}
.ld-block-action {}
.ld-block-content {}
.ld-block-input-wrapper {}
.ld-block-input {}
.ld-image-block {}
.ld-image-placeholder-block {}
.ld-image-placeholder-block-loader {}
.ld-image-block-button {}
.ld-video-block-wrapper {}
.ld-video-block {}
.ld-video-block-button {}
.ld-emoji {}
.ld-emoji-modal {}
.ld-emoji-close-icon {}
.ld-emoji-block-button {}
Button styles
.ld-button-align-left {}
.ld-button-align-center {}
.ld-button-align-right {}
.ld-button-blockquote {}
.ld-button-bold {}
.ld-button-close {}
.ld-button-cross {}
.ld-button-emoji {}
.ld-button-error {}
.ld-button-header {}
.ld-button-image {}
.ld-button-italic {}
.ld-button-link {}
.ld-button-ordered-list {}
.ld-button-unordered-list {}
.ld-button-unlink {}
.ld-button-video {}
Inline Toolbar
.ld-toolbar-wrapper {}
.ld-toolbar {}
.ld-toolbar-error {}
.ld-toolbar-button-wrapper {}
.ld-toolbar-button {}
.ld-link-toolbar-button {}
.ld-link-toolbar-item {}
.ld-link-toolbar-input {}
Side Toolbar
.ld-sidebar {}
.ld-sidebar-menu-wrapper {}
.ld-sidemenu-wrapper {}
.ld-sidemenu {}
.ld-sidemenu-button {}
.ld-sidemenu-items {}
.ld-sidemenu-item {}
yarn install
npm run dev
open http://127.0.0.1:3000