forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.js
More file actions
392 lines (323 loc) · 8.3 KB
/
Copy pathhtml.js
File metadata and controls
392 lines (323 loc) · 8.3 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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
import Raw from './raw'
import React from 'react'
import ReactDOMServer from 'react-dom/server'
import typeOf from 'type-of'
import { Record } from 'immutable'
/**
* String.
*
* @type {String}
*/
const String = new Record({
kind: 'string',
text: ''
})
/**
* A rule to (de)serialize text nodes. This is automatically added to the HTML
* serializer so that users don't have to worry about text-level serialization.
*
* @type {Object}
*/
const TEXT_RULE = {
deserialize(el) {
if (el.tagName == 'br') {
return {
kind: 'text',
text: '\n'
}
}
if (el.nodeName == '#text') {
if (el.value && el.value.match(/<!--.*?-->/)) return
return {
kind: 'text',
text: el.value || el.nodeValue
}
}
},
serialize(obj, children) {
if (obj.kind == 'string') {
return children
.split('\n')
.reduce((array, text, i) => {
if (i != 0) array.push(<br />)
array.push(text)
return array
}, [])
}
}
}
/**
* HTML serializer.
*
* @type {Html}
*/
class Html {
/**
* Create a new serializer with `rules`.
*
* @param {Object} options
* @property {Array} rules
* @property {String|Object} defaultBlockType
* @property {Function} parseHtml
*/
constructor(options = {}) {
this.rules = [
...(options.rules || []),
TEXT_RULE
]
this.defaultBlockType = options.defaultBlockType || 'paragraph'
// Set DOM parser function or fallback to native DOMParser if present.
if (typeof options.parseHtml === 'function') {
this.parseHtml = options.parseHtml
} else if (typeof DOMParser !== 'undefined') {
this.parseHtml = (html) => {
const parsed = new DOMParser().parseFromString(html, 'text/html')
// Unwrap from <html> and <body>
return parsed.childNodes[0].childNodes[1]
}
} else {
throw new Error(
'Native DOMParser is not present in this environment; you must supply a parse function via options.parseHtml'
)
}
}
/**
* Deserialize pasted HTML.
*
* @param {String} html
* @param {Object} options
* @property {Boolean} toRaw
* @return {State}
*/
deserialize = (html, options = {}) => {
const children = Array.from(this.parseHtml(html).childNodes)
let nodes = this.deserializeElements(children)
const { defaultBlockType } = this
const defaults = typeof defaultBlockType == 'string'
? { type: defaultBlockType }
: defaultBlockType
// HACK: ensure for now that all top-level inline are wrapped into a block.
nodes = nodes.reduce((memo, node, i, original) => {
if (node.kind == 'block') {
memo.push(node)
return memo
}
if (i > 0 && original[i - 1].kind != 'block') {
const block = memo[memo.length - 1]
block.nodes.push(node)
return memo
}
const block = {
kind: 'block',
nodes: [node],
...defaults
}
memo.push(block)
return memo
}, [])
if (nodes.length === 0) {
nodes = [{
kind: 'block',
nodes: [],
...defaults
}]
}
const raw = {
kind: 'state',
document: {
kind: 'document',
nodes,
}
}
if (options.toRaw) {
return raw
}
const state = Raw.deserialize(raw, { terse: true })
return state
}
/**
* Deserialize an array of DOM elements.
*
* @param {Array} elements
* @return {Array}
*/
deserializeElements = (elements = []) => {
let nodes = []
elements.filter(this.cruftNewline).forEach((element) => {
const node = this.deserializeElement(element)
switch (typeOf(node)) {
case 'array':
nodes = nodes.concat(node)
break
case 'object':
nodes.push(node)
break
}
})
return nodes
}
/**
* Deserialize a DOM element.
*
* @param {Object} element
* @return {Any}
*/
deserializeElement = (element) => {
let node
if (!element.tagName) {
element.tagName = ''
}
const next = (elements) => {
if (typeof NodeList !== 'undefined' && elements instanceof NodeList) {
elements = Array.from(elements)
}
switch (typeOf(elements)) {
case 'array':
return this.deserializeElements(elements)
case 'object':
return this.deserializeElement(elements)
case 'null':
case 'undefined':
return
default:
throw new Error(`The \`next\` argument was called with invalid children: "${elements}".`)
}
}
for (const rule of this.rules) {
if (!rule.deserialize) continue
const ret = rule.deserialize(element, next)
const type = typeOf(ret)
if (type != 'array' && type != 'object' && type != 'null' && type != 'undefined') {
throw new Error(`A rule returned an invalid deserialized representation: "${node}".`)
}
if (ret === undefined) continue
if (ret === null) return null
node = ret.kind == 'mark' ? this.deserializeMark(ret) : ret
break
}
return node || next(element.childNodes)
}
/**
* Deserialize a `mark` object.
*
* @param {Object} mark
* @return {Array}
*/
deserializeMark = (mark) => {
const { type, value } = mark
const applyMark = (node) => {
if (node.kind == 'mark') {
return this.deserializeMark(node)
}
else if (node.kind == 'text') {
if (!node.ranges) node.ranges = [{ text: node.text }]
node.ranges = node.ranges.map((range) => {
range.marks = range.marks || []
range.marks.push({ type, value })
return range
})
}
else {
node.nodes = node.nodes.map(applyMark)
}
return node
}
return mark.nodes.reduce((nodes, node) => {
const ret = applyMark(node)
if (Array.isArray(ret)) return nodes.concat(ret)
nodes.push(ret)
return nodes
}, [])
}
/**
* Serialize a `state` object into an HTML string.
*
* @param {State} state
* @param {Object} options
* @property {Boolean} render
* @return {String|Array}
*/
serialize = (state, options = {}) => {
const { document } = state
const elements = document.nodes.map(this.serializeNode)
if (options.render === false) return elements
const html = ReactDOMServer.renderToStaticMarkup(<body>{elements}</body>)
const inner = html.slice(6, -7)
return inner
}
/**
* Serialize a `node`.
*
* @param {Node} node
* @return {String}
*/
serializeNode = (node) => {
if (node.kind == 'text') {
const ranges = node.getRanges()
return ranges.map(this.serializeRange)
}
const children = node.nodes.map(this.serializeNode)
for (const rule of this.rules) {
if (!rule.serialize) continue
const ret = rule.serialize(node, children)
if (ret) return addKey(ret)
}
throw new Error(`No serializer defined for node of type "${node.type}".`)
}
/**
* Serialize a `range`.
*
* @param {Range} range
* @return {String}
*/
serializeRange = (range) => {
const string = new String({ text: range.text })
const text = this.serializeString(string)
return range.marks.reduce((children, mark) => {
for (const rule of this.rules) {
if (!rule.serialize) continue
const ret = rule.serialize(mark, children)
if (ret) return addKey(ret)
}
throw new Error(`No serializer defined for mark of type "${mark.type}".`)
}, text)
}
/**
* Serialize a `string`.
*
* @param {String} string
* @return {String}
*/
serializeString = (string) => {
for (const rule of this.rules) {
if (!rule.serialize) continue
const ret = rule.serialize(string, string.text)
if (ret) return ret
}
}
/**
* Filter out cruft newline nodes inserted by the DOM parser.
*
* @param {Object} element
* @return {Boolean}
*/
cruftNewline = (element) => {
return !(element.nodeName == '#text' && element.value == '\n')
}
}
/**
* Add a unique key to a React `element`.
*
* @param {Element} element
* @return {Element}
*/
let key = 0
function addKey(element) {
return React.cloneElement(element, { key: key++ })
}
/**
* Export.
*
* @type {Html}
*/
export default Html