4.2 KiB
Previous:
Defining Custom Block Nodes
Applying Custom Formatting
In the previous guide we learned how to create custom block types that render chunks of text inside different containers. But Slate allows for more than just "blocks".
In this guide, we'll show you how to add custom formatting options, like bold, italic, code
or strikethrough.
So we start with our app from earlier:
class App extends React.Component {
state = {
state: initialState,
schema: {
nodes: {
code: CodeNode
}
}
}
render() {
return (
<Editor
state={this.state.state}
schema={this.state.schema}
onChange={state => this.setState({ state })}
onKeyDown={e, data, state => this.onKeyDown(e, data, state)}
/>
)
}
onKeyDown(event, data, state) {
if (event.which != 192 || !event.metaKey) return
const isCode = state.blocks.some(block => block.type == 'code')
return state
.transform()
.setBlock(isCode ? 'paragraph' : 'code')
.apply()
}
}
}
And now, we'll edit the onKeyDown
handler to make it so that when you press ⌘-B
, it will add a "bold" mark to the currently selected text:
class App extends React.Component {
state = {
state: initialState,
schema: {
nodes: {
code: CodeNode
}
}
}
render() {
return (
<Editor
schema={this.state.schema}
state={this.state.state}
onChange={state => this.setState({ state })}
onKeyDown={(e, data, state) => this.onKeyDown(e, data, state)}
/>
)
}
onKeyDown(event, data, state) {
if (!event.metaKey) return
// Decide what to do based on the key code...
switch (event.which) {
// When "B" is pressed, add a "bold" mark to the text.
case 66: {
return state
.transform()
.addMark('bold')
.apply()
}
// When "`" is pressed, keep our existing code block logic.
case 192: {
const isCode = state.blocks.some(block => block.type == 'code')
return state
.transform()
.setBlock(isCode ? 'paragraph' : 'code')
.apply()
}
}
}
}
Okay, so we've got the hotkey handler setup... but! If you happen to now try selecting text and hitting ⌘-B
, you'll get an error in your console. That's because we haven't told Slate how to render a "bold" mark.
For every mark type you want to add to your schema, you need to give Slate a "renderer" for that mark, just like nodes. So let's define our bold
mark:
// Define a React component to render bold text with.
function BoldMark(props) {
return <strong>{props.children}</strong>
}
Pretty simple, right?
And now, let's tell Slate about that mark. To do that, we'll add it to the schema
object under a marks
property, like so:
function BoldMark(props) {
return <strong>{props.children}</strong>
}
class App extends React.Component {
state = {
state: initialState,
schema: {
nodes: {
code: CodeNode
},
// Add our "bold" mark to the schema...
marks: {
bold: BoldMark
}
}
}
// Add the `renderMark` handler to the editor.
render() {
return (
<Editor
schema={this.state.schema}
state={this.state.state}
onChange={state => this.setState({ state })}
onKeyDown={(e, data, state) => this.onKeyDown(e, data, state)}
/>
)
}
onKeyDown(event, data, state) {
if (!event.metaKey) return
switch (event.which) {
case 66: {
return state
.transform()
.toggleMark('bold')
.apply()
}
case 192: {
const isCode = state.blocks.some(block => block.type == 'code')
return state
.transform()
.setBlock(isCode ? 'paragraph' : 'code')
.apply()
}
}
}
}
Now, if you try selecting a piece of text and hitting ⌘-B
you should see it turn bold! Magic!
Next:
Using Plugins