forked from steemit/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.js
309 lines (268 loc) · 7.49 KB
/
schema.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
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
308
309
import Schema from '../models/schema'
import Text from '../models/text'
import { List } from 'immutable'
/*
* This module contains the default schema to normalize documents
*/
function isInlineVoid(node) {
return (node.kind == 'inline' && node.isVoid)
}
/**
* A default schema rule to only allow block nodes in documents.
*
* @type {Object}
*/
const DOCUMENT_CHILDREN_RULE = {
match: (node) => {
return node.kind == 'document'
},
validate: (document) => {
const { nodes } = document
const invalids = nodes.filter(n => n.kind != 'block')
return invalids.size ? invalids : null
},
normalize: (transform, document, invalids) => {
return invalids.reduce((t, n) => t.removeNodeByKey(n.key, { normalize: false }), transform)
}
}
/**
* A default schema rule to only allow block, inline and text nodes in blocks.
*
* @type {Object}
*/
const BLOCK_CHILDREN_RULE = {
match: (node) => {
return node.kind == 'block'
},
validate: (block) => {
const { nodes } = block
const invalids = nodes.filter(n => n.kind != 'block' && n.kind != 'inline' && n.kind != 'text')
return invalids.size ? invalids : null
},
normalize: (transform, block, invalids) => {
return invalids.reduce((t, n) => t.removeNodeByKey(n.key, { normalize: false }), transform)
}
}
/**
* A default schema rule to have at least one text node in blocks/inlines
*
* @type {Object}
*/
const MIN_TEXT_RULE = {
match: (object) => {
return object.kind == 'block' || object.kind == 'inline'
},
validate: (node) => {
const { nodes } = node
return nodes.size === 0 ? true : null
},
normalize: (transform, node) => {
return transform.insertNodeByKey(node.key, 0, Text.create(), { normalize: false })
}
}
/**
* A default schema rule to only allow inline and text nodes in inlines.
*
* @type {Object}
*/
const INLINE_CHILDREN_RULE = {
match: (object) => {
return object.kind == 'inline'
},
validate: (inline) => {
const { nodes } = inline
const invalids = nodes.filter(n => n.kind != 'inline' && n.kind != 'text')
return invalids.size ? invalids : null
},
normalize: (transform, inline, invalids) => {
return invalids.reduce((t, n) => t.removeNodeByKey(n.key, { normalize: false }), transform)
}
}
/**
* A default schema rule to ensure that inline nodes are not 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}
*/
const INLINE_NO_EMPTY = {
match: (object) => {
return object.kind == 'block'
},
validate: (block) => {
return block.nodes.some((child) => {
return child.kind == 'inline' && child.text == ''
})
},
normalize: (transform, block) => {
return block.nodes.reduce((tr, child, index) => {
if (child.kind == 'inline' && child.text == '') {
return transform
.removeNodeByKey(child.key, { normalize: false })
.insertNodeByKey(block.key, index, Text.createFromString(''), { normalize: false })
} else {
return tr
}
}, transform)
}
}
/**
* A default schema rule to ensure that void nodes contain a single space of content.
*
* @type {Object}
*/
const VOID_TEXT_RULE = {
match: (object) => {
return (object.kind == 'inline' || object.kind == 'block') && object.isVoid
},
validate: (node) => {
return node.text !== ' ' || node.nodes.size !== 1
},
normalize: (transform, node, result) => {
node.nodes.reduce((t, child) => {
return t.removeNodeByKey(child.key, { normalize: false })
}, transform)
return transform.insertNodeByKey(node.key, 0, Text.createFromString(' '), { normalize: false })
}
}
/**
* A default schema rule to ensure that inline void nodes are surrounded with text nodes
*
* @type {Object}
*/
const INLINE_VOID_TEXTS_AROUND_RULE = {
match: (object) => {
return object.kind == 'block' || object.kind == 'inline'
},
validate: (block) => {
const invalids = block.nodes.reduce((accu, child, index) => {
if (child.kind === 'block' || !child.isVoid) {
return accu
}
const prevNode = index > 0 ? block.nodes.get(index - 1) : null
const nextNode = block.nodes.get(index + 1)
const prev = !prevNode
const next = (!nextNode || isInlineVoid(nextNode))
if (next || prev) {
return accu.push({ next, prev, index })
} else {
return accu
}
}, new List())
return !invalids.isEmpty() ? invalids : null
},
normalize: (transform, block, invalids) => {
// Shift for every text node inserted previously
let shift = 0
return invalids.reduce((t, { index, next, prev }) => {
if (prev) {
t = t.insertNodeByKey(block.key, shift + index, Text.create(), { normalize: false })
shift = shift + 1
}
if (next) {
t = t.insertNodeByKey(block.key, shift + index + 1, Text.create(), { normalize: false })
shift = shift + 1
}
return t
}, transform)
}
}
/**
* Join adjacent text nodes.
*
* @type {Object}
*/
const NO_ADJACENT_TEXT_RULE = {
match: (object) => {
return object.kind == 'block' || object.kind == 'inline'
},
validate: (node) => {
const { nodes } = node
const invalids = nodes
.map((child, i) => {
const next = nodes.get(i + 1)
if (child.kind !== 'text' || !next || next.kind !== 'text') {
return
}
return [child, next]
})
.filter(Boolean)
return invalids.size ? invalids : null
},
normalize: (transform, node, pairs) => {
return pairs
// We reverse the list since we want to handle 3 consecutive text nodes
.reverse()
.reduce((t, pair) => {
const [ first, second ] = pair
return t.joinNodeByKey(second.key, first.key, { normalize: false })
}, transform)
}
}
/**
* Prevent extra empty text nodes.
*
* @type {Object}
*/
const NO_EMPTY_TEXT_RULE = {
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' || desc.length > 0) {
return
}
// Empty text nodes are only allowed near inline void node
const next = nodes.get(i + 1)
const prev = i > 0 ? nodes.get(i - 1) : null
// If last one and previous is an inline void, we need to preserve it
if (!next && isInlineVoid(prev)) {
return
}
// If first one and next one is an inline, we preserve it
if (!prev && isInlineVoid(next)) {
return
}
// If surrounded by inline void, we preserve it
if (next && prev && isInlineVoid(next) && isInlineVoid(prev)) {
return
}
// Otherwise we remove it
return true
})
return invalids.size ? invalids : null
},
normalize: (transform, node, invalids) => {
return invalids.reduce((t, text) => {
return t.removeNodeByKey(text.key, { normalize: false })
}, transform)
}
}
/**
* The default schema.
*
* @type {Object}
*/
const schema = Schema.create({
rules: [
DOCUMENT_CHILDREN_RULE,
BLOCK_CHILDREN_RULE,
INLINE_CHILDREN_RULE,
VOID_TEXT_RULE,
MIN_TEXT_RULE,
INLINE_NO_EMPTY,
INLINE_VOID_TEXTS_AROUND_RULE,
NO_ADJACENT_TEXT_RULE,
NO_EMPTY_TEXT_RULE
]
})
export default schema