mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-23 16:55:23 +01:00
88 lines
1.3 KiB
JavaScript
88 lines
1.3 KiB
JavaScript
|
|
import { Editor, Raw } from '../..'
|
|
import React from 'react'
|
|
import initialState from './state.json'
|
|
|
|
/**
|
|
* Define a schema.
|
|
*
|
|
* @type {Object}
|
|
*/
|
|
|
|
const schema = {
|
|
nodes: {
|
|
'block-quote': (props) => <blockquote {...props.attributes}>{props.children}</blockquote>,
|
|
}
|
|
}
|
|
|
|
/**
|
|
* The plain text example.
|
|
*
|
|
* @type {Component}
|
|
*/
|
|
|
|
class PlainText extends React.Component {
|
|
|
|
/**
|
|
* Deserialize the initial editor state.
|
|
*
|
|
* @type {Object}
|
|
*/
|
|
|
|
state = {
|
|
state: Raw.deserialize(initialState, { terse: true })
|
|
};
|
|
|
|
/**
|
|
* On change.
|
|
*
|
|
* @param {State} state
|
|
*/
|
|
|
|
onChange = (state) => {
|
|
this.setState({ state })
|
|
}
|
|
|
|
/**
|
|
* On key down, if it's <shift-enter> add a soft break.
|
|
*
|
|
* @param {Event} e
|
|
* @param {Object} data
|
|
* @param {State} state
|
|
*/
|
|
|
|
onKeyDown = (e, data, state) => {
|
|
if (data.key == 'enter' && data.isShift) {
|
|
return state
|
|
.transform()
|
|
.insertText('\n')
|
|
.apply()
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Render the editor.
|
|
*
|
|
* @return {Component} component
|
|
*/
|
|
|
|
render = () => {
|
|
return (
|
|
<Editor
|
|
placeholder={'Enter some plain text...'}
|
|
schema={schema}
|
|
state={this.state.state}
|
|
onChange={this.onChange}
|
|
onKeyDown={this.onKeyDown}
|
|
/>
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Export.
|
|
*/
|
|
|
|
export default PlainText
|