forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormalize.js
More file actions
218 lines (178 loc) · 5.05 KB
/
normalize.js
File metadata and controls
218 lines (178 loc) · 5.05 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
import Block from '../models/block'
import Document from '../models/document'
import Inline from '../models/inline'
import Data from '../models/data'
import Mark from '../models/mark'
import Selection from '../models/selection'
import Text from '../models/text'
import warn from './warn'
import typeOf from 'type-of'
/**
* Normalize a block argument `value`.
*
* @param {Block|String|Object} value
* @return {Block}
*/
function block(value) {
if (value instanceof Block) return value
switch (typeOf(value)) {
case 'string':
case 'object':
return Block.create(nodeProperties(value))
default:
throw new Error(`Invalid \`block\` argument! It must be a block, an object, or a string. You passed: "${value}".`)
}
}
/**
* Normalize an inline argument `value`.
*
* @param {Inline|String|Object} value
* @return {Inline}
*/
function inline(value) {
if (value instanceof Inline) return value
switch (typeOf(value)) {
case 'string':
case 'object':
return Inline.create(nodeProperties(value))
default:
throw new Error(`Invalid \`inline\` argument! It must be an inline, an object, or a string. You passed: "${value}".`)
}
}
/**
* Normalize a key argument `value`.
*
* @param {String|Node} value
* @return {String}
*/
function key(value) {
if (typeOf(value) == 'string') return value
warn('An object was passed to a Node method instead of a `key` string. This was previously supported, but is being deprecated because it can have a negative impact on performance. The object in question was:', value)
if (value instanceof Block) return value.key
if (value instanceof Document) return value.key
if (value instanceof Inline) return value.key
if (value instanceof Text) return value.key
throw new Error(`Invalid \`key\` argument! It must be either a block, an inline, a text, or a string. You passed: "${value}".`)
}
/**
* Normalize a mark argument `value`.
*
* @param {Mark|String|Object} value
* @return {Mark}
*/
function mark(value) {
if (value instanceof Mark) return value
switch (typeOf(value)) {
case 'string':
case 'object':
return Mark.create(markProperties(value))
default:
throw new Error(`Invalid \`mark\` argument! It must be a mark, an object, or a string. You passed: "${value}".`)
}
}
/**
* Normalize a mark properties argument `value`.
*
* @param {String|Object|Mark} value
* @return {Object}
*/
function markProperties(value = {}) {
const ret = {}
switch (typeOf(value)) {
case 'string':
ret.type = value
break
case 'object':
for (const k in value) {
if (k == 'data') {
if (value[k] !== undefined) ret[k] = Data.create(value[k])
} else {
ret[k] = value[k]
}
}
break
default:
throw new Error(`Invalid mark \`properties\` argument! It must be an object, a string or a mark. You passed: "${value}".`)
}
return ret
}
/**
* Normalize a node properties argument `value`.
*
* @param {String|Object|Node} value
* @return {Object}
*/
function nodeProperties(value = {}) {
const ret = {}
switch (typeOf(value)) {
case 'string':
ret.type = value
break
case 'object':
if (value.isVoid !== undefined) ret.isVoid = !!value.isVoid
for (const k in value) {
if (k == 'data') {
if (value[k] !== undefined) ret[k] = Data.create(value[k])
} else {
ret[k] = value[k]
}
}
break
default:
throw new Error(`Invalid node \`properties\` argument! It must be an object, a string or a node. You passed: "${value}".`)
}
return ret
}
/**
* Normalize a selection argument `value`.
*
* @param {Selection|Object} value
* @return {Selection}
*/
function selection(value) {
if (value instanceof Selection) return value
switch (typeOf(value)) {
case 'object':
return Selection.create(value)
default:
throw new Error(`Invalid \`selection\` argument! It must be a selection or an object. You passed: "${value}".`)
}
}
/**
* Normalize a selection properties argument `value`.
*
* @param {Object|Selection} value
* @return {Object}
*/
function selectionProperties(value = {}) {
const ret = {}
switch (typeOf(value)) {
case 'object':
if (value.anchorKey !== undefined) ret.anchorKey = value.anchorKey
if (value.anchorOffset !== undefined) ret.anchorOffset = value.anchorOffset
if (value.focusKey !== undefined) ret.focusKey = value.focusKey
if (value.focusOffset !== undefined) ret.focusOffset = value.focusOffset
if (value.isBackward !== undefined) ret.isBackward = !!value.isBackward
if (value.isFocused !== undefined) ret.isFocused = !!value.isFocused
if (value.marks !== undefined) ret.marks = value.marks
break
default:
throw new Error(`Invalid selection \`properties\` argument! It must be an object or a selection. You passed: "${value}".`)
}
return ret
}
/**
* Export.
*
* @type {Object}
*/
export default {
block,
inline,
key,
mark,
markProperties,
nodeProperties,
selection,
selectionProperties,
}