npm install @draft-js-plugins/editor
npm install @draft-js-plugins/inline-toolbar
// It is important to import the Editor which accepts plugins.
import Editor from '@draft-js-plugins/editor';
import createInlineToolbarPlugin from '@draft-js-plugins/inline-toolbar';
import React from 'react';
// Creates an Instance. At this step, a configuration object can be passed in
// as an argument.
const inlineToolbarPlugin = createInlineToolbarPlugin();
// The Editor accepts an array of plugins. In this case, only the inlineToolbarPlugin
// is passed in, although it is possible to pass in multiple plugins.
const MyEditor = ({ editorState, onChange }) => (
<Editor
editorState={editorState}
onChange={onChange}
plugins={[inlineToolbarPlugin]}
/>
);
export default MyEditor;
The plugin ships with a default styling available at this location in the installed package: node_modules/@draft-js-plugins/inline-toolbar/lib/plugin.css
npm i style-loader css-loader --save-dev
module.exports = {
module: {
loaders: [
{
test: /plugin\.css$/,
loaders: ['style-loader', 'css'],
},
],
},
};
import '@draft-js-plugins/inline-toolbar/lib/plugin.css';
import React, {
ReactElement,
useEffect,
useMemo,
useRef,
useState,
} from 'react';
import { EditorState } from 'draft-js';
import Editor, { createEditorStateWithText } from '@draft-js-plugins/editor';
import createInlineToolbarPlugin from '@draft-js-plugins/inline-toolbar';
import editorStyles from './editorStyles.module.css';
const text =
'In this editor a toolbar shows up once you select part of the text …';
const SimpleInlineToolbarEditor = (): ReactElement => {
const [plugins, InlineToolbar] = useMemo(() => {
const inlineToolbarPlugin = createInlineToolbarPlugin();
return [[inlineToolbarPlugin], inlineToolbarPlugin.InlineToolbar];
}, []);
const [editorState, setEditorState] = useState(() =>
createEditorStateWithText('')
);
useEffect(() => {
// fixing issue with SSR https://github.com/facebook/draft-js/issues/2332#issuecomment-761573306
setEditorState(createEditorStateWithText(text));
}, []);
const editor = useRef<Editor | null>(null);
const onChange = (value: EditorState): void => {
setEditorState(value);
};
const focus = (): void => {
editor.current?.focus();
};
return (
<div className={editorStyles.editor} onClick={focus}>
<Editor
editorKey="SimpleInlineToolbarEditor"
editorState={editorState}
onChange={onChange}
plugins={plugins}
ref={(element) => {
editor.current = element;
}}
/>
<InlineToolbar />
</div>
);
};
export default SimpleInlineToolbarEditor;
.editor {
box-sizing: border-box;
border: 1px solid #ddd;
cursor: text;
padding: 16px;
border-radius: 2px;
margin-bottom: 2em;
box-shadow: inset 0px 1px 8px -3px #ABABAB;
background: #fefefe;
}
.editor :global(.public-DraftEditor-content) {
min-height: 140px;
}
/* eslint-disable react/no-multi-comp */
import React, { Component } from 'react';
import Editor, { createEditorStateWithText } from '@draft-js-plugins/editor';
import createInlineToolbarPlugin, {
Separator,
} from '@draft-js-plugins/inline-toolbar';
import {
ItalicButton,
BoldButton,
UnderlineButton,
CodeButton,
HeadlineOneButton,
HeadlineTwoButton,
HeadlineThreeButton,
UnorderedListButton,
OrderedListButton,
BlockquoteButton,
CodeBlockButton,
} from '@draft-js-plugins/buttons';
import editorStyles from './editorStyles.module.css';
class HeadlinesPicker extends Component {
componentDidMount() {
setTimeout(() => {
window.addEventListener('click', this.onWindowClick);
});
}
componentWillUnmount() {
window.removeEventListener('click', this.onWindowClick);
}
onWindowClick = () =>
// Call `onOverrideContent` again with `undefined`
// so the toolbar can show its regular content again.
this.props.onOverrideContent(undefined);
render() {
const buttons = [HeadlineOneButton, HeadlineTwoButton, HeadlineThreeButton];
return (
<div>
{buttons.map((Button, i) => (
// eslint-disable-next-line react/no-array-index-key
<Button key={i} {...this.props} />
))}
</div>
);
}
}
class HeadlinesButton extends Component {
// When using a click event inside overridden content, mouse down
// events needs to be prevented so the focus stays in the editor
// and the toolbar remains visible onMouseDown = (event) => event.preventDefault()
onMouseDown = (event) => event.preventDefault();
onClick = () =>
// A button can call `onOverrideContent` to replace the content
// of the toolbar. This can be useful for displaying sub
// menus or requesting additional information from the user.
this.props.onOverrideContent(HeadlinesPicker);
render() {
return (
<div
onMouseDown={this.onMouseDown}
className={editorStyles.headlineButtonWrapper}
>
<button onClick={this.onClick} className={editorStyles.headlineButton}>
H
</button>
</div>
);
}
}
const inlineToolbarPlugin = createInlineToolbarPlugin();
const { InlineToolbar } = inlineToolbarPlugin;
const plugins = [inlineToolbarPlugin];
const text =
'In this editor a toolbar shows up once you select part of the text …';
export default class CustomInlineToolbarEditor extends Component {
state = {
editorState: createEditorStateWithText(text),
};
componentDidMount() {
// fixing issue with SSR https://github.com/facebook/draft-js/issues/2332#issuecomment-761573306
// eslint-disable-next-line react/no-did-mount-set-state
this.setState({
editorState: createEditorStateWithText(text),
});
}
onChange = (editorState) => {
this.setState({
editorState,
});
};
focus = () => {
this.editor.focus();
};
render() {
return (
<div className={editorStyles.editor} onClick={this.focus}>
<Editor
editorKey="CustomInlineToolbarEditor"
editorState={this.state.editorState}
onChange={this.onChange}
plugins={plugins}
ref={(element) => {
this.editor = element;
}}
/>
<InlineToolbar>
{
// may be use React.Fragment instead of div to improve perfomance after React 16
(externalProps) => (
<div>
<BoldButton {...externalProps} />
<ItalicButton {...externalProps} />
<UnderlineButton {...externalProps} />
<CodeButton {...externalProps} />
<Separator {...externalProps} />
<HeadlinesButton {...externalProps} />
<UnorderedListButton {...externalProps} />
<OrderedListButton {...externalProps} />
<BlockquoteButton {...externalProps} />
<CodeBlockButton {...externalProps} />
</div>
)
}
</InlineToolbar>
</div>
);
}
}
.editor {
box-sizing: border-box;
border: 1px solid #ddd;
cursor: text;
padding: 16px;
border-radius: 2px;
margin-bottom: 2em;
box-shadow: inset 0px 1px 8px -3px #ABABAB;
background: #fefefe;
}
.editor :global(.public-DraftEditor-content) {
min-height: 140px;
}
.headlineButtonWrapper {
display: inline-block;
}
.headlineButton {
background: #fbfbfb;
color: #888;
font-size: 18px;
border: 0;
padding-top: 5px;
vertical-align: bottom;
height: 34px;
width: 36px;
}
.headlineButton:hover,
.headlineButton:focus {
background: #f3f3f3;
}
import React, { Component } from 'react';
import Editor, { createEditorStateWithText } from '@draft-js-plugins/editor';
import createInlineToolbarPlugin from '@draft-js-plugins/inline-toolbar';
import editorStyles from './editorStyles.module.css';
import buttonStyles from './buttonStyles.module.css';
import toolbarStyles from './toolbarStyles.module.css';
const inlineToolbarPlugin = createInlineToolbarPlugin({
theme: { buttonStyles, toolbarStyles },
});
const { InlineToolbar } = inlineToolbarPlugin;
const plugins = [inlineToolbarPlugin];
const text =
'In this editor a toolbar with a lot more options shows up once you select part of the text …';
export default class ThemedInlineToolbarEditor extends Component {
state = {
editorState: createEditorStateWithText(text),
};
onChange = (editorState) => {
this.setState({
editorState,
});
};
componentDidMount() {
// fixing issue with SSR https://github.com/facebook/draft-js/issues/2332#issuecomment-761573306
// eslint-disable-next-line react/no-did-mount-set-state
this.setState({
editorState: createEditorStateWithText(text),
});
}
focus = () => {
this.editor.focus();
};
render() {
return (
<div className={editorStyles.editor} onClick={this.focus}>
<Editor
editorState={this.state.editorState}
onChange={this.onChange}
plugins={plugins}
ref={(element) => {
this.editor = element;
}}
/>
<InlineToolbar />
</div>
);
}
}
.editor {
box-sizing: border-box;
border: 1px solid #ddd;
cursor: text;
padding: 16px;
border-radius: 2px;
margin-bottom: 2em;
box-shadow: inset 0px 1px 8px -3px #ABABAB;
background: #fefefe;
}
.editor :global(.public-DraftEditor-content) {
min-height: 140px;
}