forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.js
128 lines (100 loc) · 2.08 KB
/
block.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
/**
* Prevent circuit.
*/
import './document'
import './inline'
/**
* Dependencies.
*/
import Data from './data'
import Inline from './inline'
import Node from './node'
import Text from './text'
import uid from '../utils/uid'
import Immutable, { Map, List, Record } from 'immutable'
/**
* Default properties.
*/
const DEFAULTS = {
data: new Map(),
isVoid: false,
key: null,
nodes: new List(),
type: null
}
/**
* Block.
*/
class Block extends new Record(DEFAULTS) {
/**
* Create a new `Block` with `properties`.
*
* @param {Object} properties
* @return {Block} element
*/
static create(properties = {}) {
if (properties instanceof Block) return properties
if (properties instanceof Inline) return properties
if (properties instanceof Text) return properties
if (!properties.type) throw new Error('You must pass a block `type`.')
properties.key = properties.key || uid(4)
properties.data = Data.create(properties.data)
properties.isVoid = !!properties.isVoid
properties.nodes = Block.createList(properties.nodes)
return new Block(properties).normalize()
}
/**
* Create a list of `Blocks` from an array.
*
* @param {Array} elements
* @return {List} list
*/
static createList(elements = []) {
if (List.isList(elements)) return elements
return new List(elements.map(Block.create))
}
/**
* Get the node's kind.
*
* @return {String} kind
*/
get kind() {
return 'block'
}
/**
* Is the node empty?
*
* @return {Boolean} isEmpty
*/
get isEmpty() {
return this.text == ''
}
/**
* Get the length of the concatenated text of the node.
*
* @return {Number} length
*/
get length() {
return this.text.length
}
/**
* Get the concatenated text `string` of all child nodes.
*
* @return {String} text
*/
get text() {
return this.nodes
.map(node => node.text)
.join('')
}
}
/**
* Mix in `Node` methods.
*/
for (const method in Node) {
Block.prototype[method] = Node[method]
}
/**
* Export.
*/
export default Block