forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.js
More file actions
307 lines (261 loc) · 7.33 KB
/
core.js
File metadata and controls
307 lines (261 loc) · 7.33 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
import Schema from '../models/schema'
import Text from '../models/text'
import { List } from 'immutable'
/**
* Options object with normalize set to `false`.
*
* @type {Object}
*/
const OPTS = { normalize: false }
/**
* Define the core schema rules, order-sensitive.
*
* @type {Array}
*/
const rules = [
/**
* Only allow block nodes in documents.
*
* @type {Object}
*/
{
match: (node) => {
return node.kind == 'document'
},
validate: (document) => {
const invalids = document.nodes.filter(n => n.kind != 'block')
return invalids.size ? invalids : null
},
normalize: (transform, document, invalids) => {
invalids.forEach((node) => {
transform.removeNodeByKey(node.key, OPTS)
})
}
},
/**
* Only allow block, inline and text nodes in blocks.
*
* @type {Object}
*/
{
match: (node) => {
return node.kind == 'block'
},
validate: (block) => {
const invalids = block.nodes.filter((n) => {
return n.kind != 'block' && n.kind != 'inline' && n.kind != 'text'
})
return invalids.size ? invalids : null
},
normalize: (transform, block, invalids) => {
invalids.forEach((node) => {
transform.removeNodeByKey(node.key, OPTS)
})
}
},
/**
* Only allow inline and text nodes in inlines.
*
* @type {Object}
*/
{
match: (object) => {
return object.kind == 'inline'
},
validate: (inline) => {
const invalids = inline.nodes.filter(n => n.kind != 'inline' && n.kind != 'text')
return invalids.size ? invalids : null
},
normalize: (transform, inline, invalids) => {
invalids.forEach((node) => {
transform.removeNodeByKey(node.key, OPTS)
})
}
},
/**
* Ensure that block and inline nodes have at least one text child.
*
* @type {Object}
*/
{
match: (object) => {
return object.kind == 'block' || object.kind == 'inline'
},
validate: (node) => {
return node.nodes.size == 0
},
normalize: (transform, node) => {
const text = Text.create()
transform.insertNodeByKey(node.key, 0, text, OPTS)
}
},
/**
* Ensure that void nodes contain a text node with a single space of text.
*
* @type {Object}
*/
{
match: (object) => {
return (
(object.kind == 'inline' || object.kind == 'block') &&
(object.isVoid)
)
},
validate: (node) => {
return node.text !== ' ' || node.nodes.size !== 1
},
normalize: (transform, node, result) => {
const text = Text.createFromString(' ')
const index = node.nodes.size
transform.insertNodeByKey(node.key, index, text, OPTS)
node.nodes.forEach((child) => {
transform.removeNodeByKey(child.key, OPTS)
})
}
},
/**
* Ensure that inline nodes are never empty.
*
* This rule is applied to all blocks, because when they contain an empty
* inline, we need to remove the inline from that parent block. If `validate`
* was to be memoized, it should be against the parent node, not the inline
* themselves.
*
* @type {Object}
*/
{
match: (object) => {
return object.kind == 'block'
},
validate: (block) => {
const invalids = block.nodes.filter(n => n.kind == 'inline' && n.text == '')
return invalids.size ? invalids : null
},
normalize: (transform, block, invalids) => {
// If all of the block's nodes are invalid, insert an empty text node so
// that the selection will be preserved when they are all removed.
if (block.nodes.size == invalids.size) {
const text = Text.create()
transform.insertNodeByKey(block.key, 1, text, OPTS)
}
invalids.forEach((node) => {
transform.removeNodeByKey(node.key, OPTS)
})
}
},
/**
* Ensure that inline void nodes are surrounded by text nodes, by adding extra
* blank text nodes if necessary.
*
* @type {Object}
*/
{
match: (object) => {
return object.kind == 'block' || object.kind == 'inline'
},
validate: (node) => {
const invalids = node.nodes.reduce((list, child, index) => {
if (child.kind !== 'inline') return list
const prev = index > 0 ? node.nodes.get(index - 1) : null
const next = node.nodes.get(index + 1)
// We don't test if "prev" is inline, since it has already been processed in the loop
const insertBefore = !prev
const insertAfter = !next || (next.kind == 'inline')
if (insertAfter || insertBefore) {
list = list.push({ insertAfter, insertBefore, index })
}
return list
}, new List())
return invalids.size ? invalids : null
},
normalize: (transform, block, invalids) => {
// Shift for every text node inserted previously.
let shift = 0
invalids.forEach(({ index, insertAfter, insertBefore }) => {
if (insertBefore) {
transform.insertNodeByKey(block.key, shift + index, Text.create(), OPTS)
shift++
}
if (insertAfter) {
transform.insertNodeByKey(block.key, shift + index + 1, Text.create(), OPTS)
shift++
}
})
}
},
/**
* Join adjacent text nodes.
*
* @type {Object}
*/
{
match: (object) => {
return object.kind == 'block' || object.kind == 'inline'
},
validate: (node) => {
const invalids = node.nodes
.map((child, i) => {
const next = node.nodes.get(i + 1)
if (child.kind != 'text') return
if (!next || next.kind != 'text') return
return [child, next]
})
.filter(Boolean)
return invalids.size ? invalids : null
},
normalize: (transform, node, pairs) => {
// We reverse the list to handle consecutive joins, since the earlier nodes
// will always exist after each join.
pairs.reverse().forEach((pair) => {
const [ first, second ] = pair
return transform.joinNodeByKey(second.key, first.key, OPTS)
})
}
},
/**
* Prevent extra empty text nodes, except when adjacent to inline void nodes.
*
* @type {Object}
*/
{
match: (object) => {
return object.kind == 'block' || object.kind == 'inline'
},
validate: (node) => {
const { nodes } = node
if (nodes.size <= 1) return
const invalids = nodes.filter((desc, i) => {
if (desc.kind != 'text') return
if (desc.length > 0) return
const prev = i > 0 ? nodes.get(i - 1) : null
const next = nodes.get(i + 1)
// If it's the first node, and the next is a void, preserve it.
if (!prev && next.kind == 'inline') return
// It it's the last node, and the previous is an inline, preserve it.
if (!next && prev.kind == 'inline') return
// If it's surrounded by inlines, preserve it.
if (next && prev && next.kind == 'inline' && prev.kind == 'inline') return
// Otherwise, remove it.
return true
})
return invalids.size ? invalids : null
},
normalize: (transform, node, invalids) => {
invalids.forEach((text) => {
transform.removeNodeByKey(text.key, OPTS)
})
}
}
]
/**
* Create the core schema.
*
* @type {Schema}
*/
const SCHEMA = Schema.create({ rules })
/**
* Export.
*
* @type {Schema}
*/
export default SCHEMA