Skip to content

Commit d2fd308

Browse files
committed
docs(inline-toolbar): update stories
1 parent 7132bdf commit d2fd308

File tree

3 files changed

+33
-27
lines changed
  • draft-js-inline-toolbar-plugin/src/components/Toolbar
  • stories
    • inline-toolbar-custom-buttons/src
    • inline-toolbar-with-anchor-plugin/src

3 files changed

+33
-27
lines changed

draft-js-inline-toolbar-plugin/src/components/Toolbar/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export default class Toolbar extends React.Component {
134134
>
135135
{OverrideContent
136136
? <OverrideContent {...childrenProps} />
137-
: this.props.children({...childrenProps})}
137+
: this.props.children(childrenProps)}
138138
</div>
139139
);
140140
}

stories/inline-toolbar-custom-buttons/src/App.js

+20-17
Original file line numberDiff line numberDiff line change
@@ -76,22 +76,7 @@ class HeadlinesButton extends Component {
7676
}
7777
}
7878

79-
const inlineToolbarPlugin = createInlineToolbarPlugin({
80-
structure: [
81-
BoldButton,
82-
ItalicButton,
83-
UnderlineButton,
84-
SubButton,
85-
SupButton,
86-
CodeButton,
87-
Separator,
88-
HeadlinesButton,
89-
UnorderedListButton,
90-
OrderedListButton,
91-
BlockquoteButton,
92-
CodeBlockButton,
93-
],
94-
});
79+
const inlineToolbarPlugin = createInlineToolbarPlugin();
9580
const { InlineToolbar } = inlineToolbarPlugin;
9681
const plugins = [inlineToolbarPlugin];
9782
const text =
@@ -123,7 +108,25 @@ export default class CustomInlineToolbarEditor extends Component {
123108
this.editor = element;
124109
}}
125110
/>
126-
<InlineToolbar />
111+
<InlineToolbar>{
112+
// may be use React.Fragment instead of div to improve perfomance after React 16
113+
(externalProps) => (
114+
<div>
115+
<BoldButton {...externalProps} />
116+
<ItalicButton {...externalProps} />
117+
<UnderlineButton {...externalProps} />
118+
<SubButton {...externalProps} />
119+
<SupButton {...externalProps} />
120+
<CodeButton {...externalProps} />
121+
<Separator {...externalProps} />
122+
<HeadlinesButton {...externalProps} />
123+
<UnorderedListButton {...externalProps} />
124+
<OrderedListButton {...externalProps} />
125+
<BlockquoteButton {...externalProps} />
126+
<CodeBlockButton {...externalProps} />
127+
</div>
128+
)
129+
}</InlineToolbar>
127130
</div>
128131
);
129132
}

stories/inline-toolbar-with-anchor-plugin/src/App.js

+12-9
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,7 @@ import { ItalicButton, BoldButton, UnderlineButton } from 'draft-js-buttons';
66
import editorStyles from './editorStyles.css';
77

88
const linkPlugin = createLinkPlugin();
9-
const inlineToolbarPlugin = createInlineToolbarPlugin({
10-
structure: [
11-
BoldButton,
12-
ItalicButton,
13-
UnderlineButton,
14-
linkPlugin.LinkButton
15-
]
16-
});
9+
const inlineToolbarPlugin = createInlineToolbarPlugin();
1710
const { InlineToolbar } = inlineToolbarPlugin;
1811
const plugins = [inlineToolbarPlugin, linkPlugin];
1912
const text = 'Try selecting a part of this text and click on the link button in the toolbar that appears …';
@@ -38,7 +31,17 @@ export default class SimpleLinkPluginEditor extends Component {
3831
plugins={plugins}
3932
ref={(element) => { this.editor = element; }}
4033
/>
41-
<InlineToolbar />
34+
<InlineToolbar>{
35+
// may be use React.Fragment instead of div to improve perfomance after React 16
36+
(externalProps) => (
37+
<div>
38+
<BoldButton {...externalProps} />
39+
<ItalicButton {...externalProps} />
40+
<UnderlineButton {...externalProps} />
41+
<linkPlugin.LinkButton {...externalProps} />
42+
</div>
43+
)
44+
}</InlineToolbar>
4245
</div>
4346
);
4447
}

0 commit comments

Comments
 (0)