forked from steemit/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinline.js
130 lines (101 loc) · 2.14 KB
/
inline.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
/**
* Prevent circuit.
*/
import './block'
import './document'
/**
* Dependencies.
*/
import Block from './block'
import Data from './data'
import Node from './node'
import Text from './text'
import generateKey from '../utils/generate-key'
import { List, Map, Record } from 'immutable'
/**
* Record.
*/
const DEFAULTS = {
data: new Map(),
isVoid: false,
key: null,
nodes: new List(),
type: null
}
/**
* Inline.
*/
class Inline extends new Record(DEFAULTS) {
/**
* Create a new `Inline` with `properties`.
*
* @param {Object} properties
* @return {Inline} 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 an inline `type`.')
properties.key = properties.key || generateKey()
properties.data = Data.create(properties.data)
properties.isVoid = !!properties.isVoid
properties.nodes = Inline.createList(properties.nodes)
if (properties.nodes.size == 0) {
properties.nodes = properties.nodes.push(Text.create())
}
return new Inline(properties)
}
/**
* Create a list of `Inlines` from an array.
*
* @param {Array} elements
* @return {List} map
*/
static createList(elements = []) {
if (List.isList(elements)) return elements
return new List(elements.map(Inline.create))
}
/**
* Get the node's kind.
*
* @return {String} kind
*/
get kind() {
return 'inline'
}
/**
* 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.getText()
}
}
/**
* Mix in `Node` methods.
*/
for (const method in Node) {
Inline.prototype[method] = Node[method]
}
/**
* Export.
*/
export default Inline