forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplain.js
63 lines (55 loc) · 1.01 KB
/
plain.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import Raw from '../serializers/raw'
/**
* Deserialize a plain text `string` to a state.
*
* @param {String} string
* @param {Object} options
* @property {Boolean} toRaw
* @return {State}
*/
function deserialize(string, options = {}) {
const raw = {
kind: 'state',
document: {
kind: 'document',
nodes: string.split('\n').map((line) => {
return {
kind: 'block',
type: 'line',
nodes: [
{
kind: 'text',
ranges: [
{
text: line,
marks: [],
}
]
}
]
}
}),
}
}
return options.toRaw ? raw : Raw.deserialize(raw)
}
/**
* Serialize a `state` to plain text.
*
* @param {State} state
* @return {String}
*/
function serialize(state) {
return state.document.nodes
.map(block => block.text)
.join('\n')
}
/**
* Export.
*
* @type {Object}
*/
export default {
deserialize,
serialize
}