@portabletext/editor 1.33.2 → 1.33.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/_chunks-cjs/behavior.core.cjs +11 -204
- package/lib/_chunks-cjs/behavior.core.cjs.map +1 -1
- package/lib/_chunks-cjs/behavior.markdown.cjs +7 -7
- package/lib/_chunks-cjs/behavior.markdown.cjs.map +1 -1
- package/lib/_chunks-cjs/plugin.event-listener.cjs +208 -33
- package/lib/_chunks-cjs/plugin.event-listener.cjs.map +1 -1
- package/lib/_chunks-cjs/selector.get-text-before.cjs +3 -3
- package/lib/_chunks-cjs/selector.get-text-before.cjs.map +1 -1
- package/lib/_chunks-cjs/selector.is-active-style.cjs +246 -0
- package/lib/_chunks-cjs/selector.is-active-style.cjs.map +1 -0
- package/lib/_chunks-cjs/selector.is-at-the-start-of-block.cjs +31 -200
- package/lib/_chunks-cjs/selector.is-at-the-start-of-block.cjs.map +1 -1
- package/lib/_chunks-cjs/util.block-offsets-to-selection.cjs +7 -5
- package/lib/_chunks-cjs/util.block-offsets-to-selection.cjs.map +1 -1
- package/lib/_chunks-cjs/util.reverse-selection.cjs +0 -116
- package/lib/_chunks-cjs/util.reverse-selection.cjs.map +1 -1
- package/lib/_chunks-cjs/util.slice-blocks.cjs +138 -1
- package/lib/_chunks-cjs/util.slice-blocks.cjs.map +1 -1
- package/lib/_chunks-es/behavior.core.js +9 -202
- package/lib/_chunks-es/behavior.core.js.map +1 -1
- package/lib/_chunks-es/behavior.markdown.js +1 -1
- package/lib/_chunks-es/plugin.event-listener.js +205 -31
- package/lib/_chunks-es/plugin.event-listener.js.map +1 -1
- package/lib/_chunks-es/selector.get-text-before.js +2 -1
- package/lib/_chunks-es/selector.get-text-before.js.map +1 -1
- package/lib/_chunks-es/selector.is-active-style.js +249 -0
- package/lib/_chunks-es/selector.is-active-style.js.map +1 -0
- package/lib/_chunks-es/selector.is-at-the-start-of-block.js +20 -189
- package/lib/_chunks-es/selector.is-at-the-start-of-block.js.map +1 -1
- package/lib/_chunks-es/util.block-offsets-to-selection.js +5 -3
- package/lib/_chunks-es/util.block-offsets-to-selection.js.map +1 -1
- package/lib/_chunks-es/util.reverse-selection.js +1 -117
- package/lib/_chunks-es/util.reverse-selection.js.map +1 -1
- package/lib/_chunks-es/util.slice-blocks.js +140 -3
- package/lib/_chunks-es/util.slice-blocks.js.map +1 -1
- package/lib/index.d.cts +1 -115
- package/lib/index.d.ts +1 -115
- package/lib/plugins/index.cjs +19 -15
- package/lib/plugins/index.cjs.map +1 -1
- package/lib/plugins/index.d.cts +1 -115
- package/lib/plugins/index.d.ts +1 -115
- package/lib/plugins/index.js +9 -5
- package/lib/plugins/index.js.map +1 -1
- package/lib/selectors/index.cjs +16 -21
- package/lib/selectors/index.cjs.map +1 -1
- package/lib/selectors/index.d.cts +2 -0
- package/lib/selectors/index.d.ts +2 -0
- package/lib/selectors/index.js +7 -11
- package/lib/selectors/index.js.map +1 -1
- package/lib/utils/index.cjs +13 -13
- package/lib/utils/index.cjs.map +1 -1
- package/lib/utils/index.d.cts +2 -0
- package/lib/utils/index.d.ts +2 -0
- package/lib/utils/index.js +3 -3
- package/package.json +2 -2
- package/src/behaviors/behavior.core.annotations.ts +0 -24
- package/src/behaviors/behavior.core.decorators.ts +0 -19
- package/src/behaviors/behavior.core.insert-break.ts +4 -4
- package/src/behaviors/behavior.core.lists.ts +0 -30
- package/src/behaviors/behavior.core.ts +2 -17
- package/src/behaviors/behavior.default.ts +198 -0
- package/src/behaviors/behavior.foundational.ts +12 -12
- package/src/behaviors/behavior.markdown-emphasis.ts +4 -0
- package/src/converters/converter.text-html.serialize.test.ts +1 -1
- package/src/editor/PortableTextEditor.tsx +1 -1
- package/src/editor/editor-machine.ts +8 -8
- package/src/plugins/plugin.event-listener.tsx +1 -1
- package/src/selectors/selector.get-caret-word-selection.ts +9 -0
- package/src/selectors/selector.get-selection-text.test.ts +383 -36
- package/src/selectors/selector.get-selection-text.ts +13 -73
- package/src/utils/util.block-offset.test.ts +312 -0
- package/src/utils/util.block-offset.ts +39 -7
- package/src/utils/util.block-offsets-to-selection.ts +2 -0
- package/src/utils/util.slice-blocks.ts +12 -1
- package/lib/_chunks-cjs/selector.get-trimmed-selection.cjs +0 -97
- package/lib/_chunks-cjs/selector.get-trimmed-selection.cjs.map +0 -1
- package/lib/_chunks-es/selector.get-trimmed-selection.js +0 -100
- package/lib/_chunks-es/selector.get-trimmed-selection.js.map +0 -1
- package/src/behaviors/behavior.core.deserialize.ts +0 -60
- package/src/behaviors/behavior.core.serialize.ts +0 -44
- package/src/behaviors/behavior.core.style.ts +0 -19
|
@@ -65,6 +65,98 @@ test(blockOffsetToSpanSelectionPoint.name, () => {
|
|
|
65
65
|
},
|
|
66
66
|
]
|
|
67
67
|
|
|
68
|
+
expect(
|
|
69
|
+
blockOffsetToSpanSelectionPoint({
|
|
70
|
+
value: [
|
|
71
|
+
{
|
|
72
|
+
_key: 'b0',
|
|
73
|
+
_type: 'block',
|
|
74
|
+
children: [
|
|
75
|
+
{_key: 's0', _type: 'span', text: 'b'},
|
|
76
|
+
{_key: 's1', _type: 'span', text: 'a'},
|
|
77
|
+
{_key: 's2', _type: 'span', text: 'r'},
|
|
78
|
+
],
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
blockOffset: {
|
|
82
|
+
path: [{_key: 'b0'}],
|
|
83
|
+
offset: 3,
|
|
84
|
+
},
|
|
85
|
+
direction: 'backward',
|
|
86
|
+
}),
|
|
87
|
+
).toEqual({
|
|
88
|
+
path: [{_key: 'b0'}, 'children', {_key: 's2'}],
|
|
89
|
+
offset: 1,
|
|
90
|
+
})
|
|
91
|
+
expect(
|
|
92
|
+
blockOffsetToSpanSelectionPoint({
|
|
93
|
+
value: [
|
|
94
|
+
{
|
|
95
|
+
_key: 'b0',
|
|
96
|
+
_type: 'block',
|
|
97
|
+
children: [
|
|
98
|
+
{_key: 's0', _type: 'span', text: 'b'},
|
|
99
|
+
{_key: 's1', _type: 'span', text: 'a'},
|
|
100
|
+
{_key: 's2', _type: 'span', text: 'r'},
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
],
|
|
104
|
+
blockOffset: {
|
|
105
|
+
path: [{_key: 'b0'}],
|
|
106
|
+
offset: 0,
|
|
107
|
+
},
|
|
108
|
+
direction: 'backward',
|
|
109
|
+
}),
|
|
110
|
+
).toEqual({
|
|
111
|
+
path: [{_key: 'b0'}, 'children', {_key: 's0'}],
|
|
112
|
+
offset: 0,
|
|
113
|
+
})
|
|
114
|
+
expect(
|
|
115
|
+
blockOffsetToSpanSelectionPoint({
|
|
116
|
+
value: [
|
|
117
|
+
{
|
|
118
|
+
_key: 'b0',
|
|
119
|
+
_type: 'block',
|
|
120
|
+
children: [
|
|
121
|
+
{_key: 's0', _type: 'span', text: 'b'},
|
|
122
|
+
{_key: 's1', _type: 'span', text: 'a'},
|
|
123
|
+
{_key: 's2', _type: 'span', text: 'r'},
|
|
124
|
+
],
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
blockOffset: {
|
|
128
|
+
path: [{_key: 'b0'}],
|
|
129
|
+
offset: 0,
|
|
130
|
+
},
|
|
131
|
+
direction: 'forward',
|
|
132
|
+
}),
|
|
133
|
+
).toEqual({
|
|
134
|
+
path: [{_key: 'b0'}, 'children', {_key: 's0'}],
|
|
135
|
+
offset: 0,
|
|
136
|
+
})
|
|
137
|
+
expect(
|
|
138
|
+
blockOffsetToSpanSelectionPoint({
|
|
139
|
+
value: [
|
|
140
|
+
{
|
|
141
|
+
_key: 'b0',
|
|
142
|
+
_type: 'block',
|
|
143
|
+
children: [
|
|
144
|
+
{_key: 's0', _type: 'span', text: 'b'},
|
|
145
|
+
{_key: 's1', _type: 'span', text: 'a'},
|
|
146
|
+
{_key: 's2', _type: 'span', text: 'r'},
|
|
147
|
+
],
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
blockOffset: {
|
|
151
|
+
path: [{_key: 'b0'}],
|
|
152
|
+
offset: 3,
|
|
153
|
+
},
|
|
154
|
+
direction: 'forward',
|
|
155
|
+
}),
|
|
156
|
+
).toEqual({
|
|
157
|
+
path: [{_key: 'b0'}, 'children', {_key: 's2'}],
|
|
158
|
+
offset: 1,
|
|
159
|
+
})
|
|
68
160
|
expect(
|
|
69
161
|
blockOffsetToSpanSelectionPoint({
|
|
70
162
|
value,
|
|
@@ -72,6 +164,7 @@ test(blockOffsetToSpanSelectionPoint.name, () => {
|
|
|
72
164
|
path: [{_key: 'b1'}],
|
|
73
165
|
offset: 0,
|
|
74
166
|
},
|
|
167
|
+
direction: 'forward',
|
|
75
168
|
}),
|
|
76
169
|
).toBeUndefined()
|
|
77
170
|
expect(
|
|
@@ -81,6 +174,7 @@ test(blockOffsetToSpanSelectionPoint.name, () => {
|
|
|
81
174
|
path: [{_key: 'b2'}],
|
|
82
175
|
offset: 9,
|
|
83
176
|
},
|
|
177
|
+
direction: 'forward',
|
|
84
178
|
}),
|
|
85
179
|
).toEqual({
|
|
86
180
|
path: [{_key: 'b2'}, 'children', {_key: 's2'}],
|
|
@@ -93,6 +187,7 @@ test(blockOffsetToSpanSelectionPoint.name, () => {
|
|
|
93
187
|
path: [{_key: 'b3'}],
|
|
94
188
|
offset: 9,
|
|
95
189
|
},
|
|
190
|
+
direction: 'forward',
|
|
96
191
|
}),
|
|
97
192
|
).toEqual({
|
|
98
193
|
path: [{_key: 'b3'}, 'children', {_key: 's3'}],
|
|
@@ -105,11 +200,225 @@ test(blockOffsetToSpanSelectionPoint.name, () => {
|
|
|
105
200
|
path: [{_key: 'b3'}],
|
|
106
201
|
offset: 10,
|
|
107
202
|
},
|
|
203
|
+
direction: 'forward',
|
|
108
204
|
}),
|
|
109
205
|
).toEqual({
|
|
110
206
|
path: [{_key: 'b3'}, 'children', {_key: 's3'}],
|
|
111
207
|
offset: 10,
|
|
112
208
|
})
|
|
209
|
+
expect(
|
|
210
|
+
blockOffsetToSpanSelectionPoint({
|
|
211
|
+
value: [
|
|
212
|
+
{
|
|
213
|
+
_key: 'b0',
|
|
214
|
+
_type: 'block',
|
|
215
|
+
children: [
|
|
216
|
+
{_key: 's0', _type: 'span', text: ''},
|
|
217
|
+
{_key: 's1', _type: 'stock-ticker'},
|
|
218
|
+
{_key: 's2', _type: 'span', text: 'foo'},
|
|
219
|
+
{_key: 's3', _type: 'stock-ticker'},
|
|
220
|
+
{_key: 's4', _type: 'span', text: ''},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
],
|
|
224
|
+
blockOffset: {
|
|
225
|
+
path: [{_key: 'b0'}],
|
|
226
|
+
offset: 0,
|
|
227
|
+
},
|
|
228
|
+
direction: 'forward',
|
|
229
|
+
}),
|
|
230
|
+
).toEqual({
|
|
231
|
+
path: [{_key: 'b0'}, 'children', {_key: 's0'}],
|
|
232
|
+
offset: 0,
|
|
233
|
+
})
|
|
234
|
+
expect(
|
|
235
|
+
blockOffsetToSpanSelectionPoint({
|
|
236
|
+
value: [
|
|
237
|
+
{
|
|
238
|
+
_key: 'b0',
|
|
239
|
+
_type: 'block',
|
|
240
|
+
children: [
|
|
241
|
+
{_key: 's0', _type: 'span', text: ''},
|
|
242
|
+
{_key: 's1', _type: 'stock-ticker'},
|
|
243
|
+
{_key: 's2', _type: 'span', text: 'foo'},
|
|
244
|
+
{_key: 's3', _type: 'stock-ticker'},
|
|
245
|
+
{_key: 's4', _type: 'span', text: ''},
|
|
246
|
+
],
|
|
247
|
+
},
|
|
248
|
+
],
|
|
249
|
+
blockOffset: {
|
|
250
|
+
path: [{_key: 'b0'}],
|
|
251
|
+
offset: 1,
|
|
252
|
+
},
|
|
253
|
+
direction: 'forward',
|
|
254
|
+
}),
|
|
255
|
+
).toEqual({
|
|
256
|
+
path: [{_key: 'b0'}, 'children', {_key: 's2'}],
|
|
257
|
+
offset: 1,
|
|
258
|
+
})
|
|
259
|
+
expect(
|
|
260
|
+
blockOffsetToSpanSelectionPoint({
|
|
261
|
+
value: [
|
|
262
|
+
{
|
|
263
|
+
_key: 'b0',
|
|
264
|
+
_type: 'block',
|
|
265
|
+
children: [
|
|
266
|
+
{_key: 's0', _type: 'span', text: ''},
|
|
267
|
+
{_key: 's1', _type: 'stock-ticker'},
|
|
268
|
+
{_key: 's2', _type: 'span', text: 'foo'},
|
|
269
|
+
{_key: 's3', _type: 'stock-ticker'},
|
|
270
|
+
{_key: 's4', _type: 'span', text: ''},
|
|
271
|
+
],
|
|
272
|
+
},
|
|
273
|
+
],
|
|
274
|
+
blockOffset: {
|
|
275
|
+
path: [{_key: 'b0'}],
|
|
276
|
+
offset: 0,
|
|
277
|
+
},
|
|
278
|
+
direction: 'backward',
|
|
279
|
+
}),
|
|
280
|
+
).toEqual({
|
|
281
|
+
path: [{_key: 'b0'}, 'children', {_key: 's2'}],
|
|
282
|
+
offset: 0,
|
|
283
|
+
})
|
|
284
|
+
expect(
|
|
285
|
+
blockOffsetToSpanSelectionPoint({
|
|
286
|
+
value: [
|
|
287
|
+
{
|
|
288
|
+
_key: 'b0',
|
|
289
|
+
_type: 'block',
|
|
290
|
+
children: [
|
|
291
|
+
{_key: 's0', _type: 'span', text: ''},
|
|
292
|
+
{_key: 's1', _type: 'stock-ticker'},
|
|
293
|
+
{_key: 's2', _type: 'span', text: 'foo'},
|
|
294
|
+
{_key: 's3', _type: 'stock-ticker'},
|
|
295
|
+
{_key: 's4', _type: 'span', text: ''},
|
|
296
|
+
],
|
|
297
|
+
},
|
|
298
|
+
],
|
|
299
|
+
blockOffset: {
|
|
300
|
+
path: [{_key: 'b0'}],
|
|
301
|
+
offset: 1,
|
|
302
|
+
},
|
|
303
|
+
direction: 'backward',
|
|
304
|
+
}),
|
|
305
|
+
).toEqual({
|
|
306
|
+
path: [{_key: 'b0'}, 'children', {_key: 's2'}],
|
|
307
|
+
offset: 1,
|
|
308
|
+
})
|
|
309
|
+
expect(
|
|
310
|
+
blockOffsetToSpanSelectionPoint({
|
|
311
|
+
value: [
|
|
312
|
+
{
|
|
313
|
+
_key: 'b0',
|
|
314
|
+
_type: 'block',
|
|
315
|
+
children: [
|
|
316
|
+
{_key: 's0', _type: 'span', text: ''},
|
|
317
|
+
{_key: 's1', _type: 'stock-ticker'},
|
|
318
|
+
{_key: 's2', _type: 'span', text: 'foo'},
|
|
319
|
+
{_key: 's3', _type: 'stock-ticker'},
|
|
320
|
+
{_key: 's4', _type: 'span', text: ''},
|
|
321
|
+
],
|
|
322
|
+
},
|
|
323
|
+
],
|
|
324
|
+
blockOffset: {
|
|
325
|
+
path: [{_key: 'b0'}],
|
|
326
|
+
offset: 3,
|
|
327
|
+
},
|
|
328
|
+
direction: 'forward',
|
|
329
|
+
}),
|
|
330
|
+
).toEqual({
|
|
331
|
+
path: [{_key: 'b0'}, 'children', {_key: 's2'}],
|
|
332
|
+
offset: 3,
|
|
333
|
+
})
|
|
334
|
+
expect(
|
|
335
|
+
blockOffsetToSpanSelectionPoint({
|
|
336
|
+
value: [
|
|
337
|
+
{
|
|
338
|
+
_key: 'b0',
|
|
339
|
+
_type: 'block',
|
|
340
|
+
children: [
|
|
341
|
+
{_key: 's0', _type: 'span', text: ''},
|
|
342
|
+
{_key: 's1', _type: 'stock-ticker'},
|
|
343
|
+
{_key: 's2', _type: 'span', text: 'foo'},
|
|
344
|
+
{_key: 's3', _type: 'stock-ticker'},
|
|
345
|
+
{_key: 's4', _type: 'span', text: ''},
|
|
346
|
+
],
|
|
347
|
+
},
|
|
348
|
+
],
|
|
349
|
+
blockOffset: {
|
|
350
|
+
path: [{_key: 'b0'}],
|
|
351
|
+
offset: 2,
|
|
352
|
+
},
|
|
353
|
+
direction: 'forward',
|
|
354
|
+
}),
|
|
355
|
+
).toEqual({
|
|
356
|
+
path: [{_key: 'b0'}, 'children', {_key: 's2'}],
|
|
357
|
+
offset: 2,
|
|
358
|
+
})
|
|
359
|
+
expect(
|
|
360
|
+
blockOffsetToSpanSelectionPoint({
|
|
361
|
+
value: [
|
|
362
|
+
{
|
|
363
|
+
_key: 'b0',
|
|
364
|
+
_type: 'block',
|
|
365
|
+
children: [
|
|
366
|
+
{_key: 's0', _type: 'span', text: ''},
|
|
367
|
+
{_key: 's1', _type: 'stock-ticker'},
|
|
368
|
+
{_key: 's2', _type: 'span', text: 'foo'},
|
|
369
|
+
{_key: 's3', _type: 'stock-ticker'},
|
|
370
|
+
{_key: 's4', _type: 'span', text: ''},
|
|
371
|
+
],
|
|
372
|
+
},
|
|
373
|
+
],
|
|
374
|
+
blockOffset: {
|
|
375
|
+
path: [{_key: 'b0'}],
|
|
376
|
+
offset: 3,
|
|
377
|
+
},
|
|
378
|
+
direction: 'backward',
|
|
379
|
+
}),
|
|
380
|
+
).toEqual({
|
|
381
|
+
path: [{_key: 'b0'}, 'children', {_key: 's4'}],
|
|
382
|
+
offset: 0,
|
|
383
|
+
})
|
|
384
|
+
expect(
|
|
385
|
+
blockOffsetToSpanSelectionPoint({
|
|
386
|
+
value: [
|
|
387
|
+
{
|
|
388
|
+
_key: 'b0',
|
|
389
|
+
_type: 'block',
|
|
390
|
+
children: [
|
|
391
|
+
{_key: 's0', _type: 'span', text: ''},
|
|
392
|
+
{_key: 's1', _type: 'stock-ticker'},
|
|
393
|
+
{_key: 's2', _type: 'span', text: 'foo'},
|
|
394
|
+
{_key: 's3', _type: 'stock-ticker'},
|
|
395
|
+
{_key: 's4', _type: 'span', text: ''},
|
|
396
|
+
],
|
|
397
|
+
},
|
|
398
|
+
],
|
|
399
|
+
blockOffset: {
|
|
400
|
+
path: [{_key: 'b0'}],
|
|
401
|
+
offset: 2,
|
|
402
|
+
},
|
|
403
|
+
direction: 'backward',
|
|
404
|
+
}),
|
|
405
|
+
).toEqual({
|
|
406
|
+
path: [{_key: 'b0'}, 'children', {_key: 's2'}],
|
|
407
|
+
offset: 2,
|
|
408
|
+
})
|
|
409
|
+
expect(
|
|
410
|
+
blockOffsetToSpanSelectionPoint({
|
|
411
|
+
value,
|
|
412
|
+
blockOffset: {
|
|
413
|
+
path: [{_key: 'b3'}],
|
|
414
|
+
offset: 10,
|
|
415
|
+
},
|
|
416
|
+
direction: 'backward',
|
|
417
|
+
}),
|
|
418
|
+
).toEqual({
|
|
419
|
+
path: [{_key: 'b3'}, 'children', {_key: 's5'}],
|
|
420
|
+
offset: 0,
|
|
421
|
+
})
|
|
113
422
|
expect(
|
|
114
423
|
blockOffsetToSpanSelectionPoint({
|
|
115
424
|
value,
|
|
@@ -117,6 +426,7 @@ test(blockOffsetToSpanSelectionPoint.name, () => {
|
|
|
117
426
|
path: [{_key: 'b3'}],
|
|
118
427
|
offset: 11,
|
|
119
428
|
},
|
|
429
|
+
direction: 'forward',
|
|
120
430
|
}),
|
|
121
431
|
).toEqual({
|
|
122
432
|
path: [{_key: 'b3'}, 'children', {_key: 's5'}],
|
|
@@ -129,6 +439,7 @@ test(blockOffsetToSpanSelectionPoint.name, () => {
|
|
|
129
439
|
path: [{_key: 'b4'}],
|
|
130
440
|
offset: 0,
|
|
131
441
|
},
|
|
442
|
+
direction: 'forward',
|
|
132
443
|
}),
|
|
133
444
|
).toBeUndefined()
|
|
134
445
|
expect(
|
|
@@ -138,6 +449,7 @@ test(blockOffsetToSpanSelectionPoint.name, () => {
|
|
|
138
449
|
path: [{_key: 'b4'}],
|
|
139
450
|
offset: 1,
|
|
140
451
|
},
|
|
452
|
+
direction: 'forward',
|
|
141
453
|
}),
|
|
142
454
|
).toBeUndefined()
|
|
143
455
|
})
|
|
@@ -14,14 +14,17 @@ import {isKeyedSegment} from './util.is-keyed-segment'
|
|
|
14
14
|
export function blockOffsetToSpanSelectionPoint({
|
|
15
15
|
value,
|
|
16
16
|
blockOffset,
|
|
17
|
+
direction,
|
|
17
18
|
}: {
|
|
18
19
|
value: Array<PortableTextBlock>
|
|
19
20
|
blockOffset: BlockOffset
|
|
21
|
+
direction: 'forward' | 'backward'
|
|
20
22
|
}) {
|
|
21
23
|
let offsetLeft = blockOffset.offset
|
|
22
24
|
let selectionPoint:
|
|
23
25
|
| {path: [KeyedSegment, 'children', KeyedSegment]; offset: number}
|
|
24
26
|
| undefined
|
|
27
|
+
let skippedInlineObject = false
|
|
25
28
|
|
|
26
29
|
for (const block of value) {
|
|
27
30
|
if (block._key !== blockOffset.path[0]._key) {
|
|
@@ -33,27 +36,56 @@ export function blockOffsetToSpanSelectionPoint({
|
|
|
33
36
|
}
|
|
34
37
|
|
|
35
38
|
for (const child of block.children) {
|
|
39
|
+
if (direction === 'forward') {
|
|
40
|
+
if (!isPortableTextSpan(child)) {
|
|
41
|
+
continue
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
if (offsetLeft <= child.text.length) {
|
|
45
|
+
selectionPoint = {
|
|
46
|
+
path: [...blockOffset.path, 'children', {_key: child._key}],
|
|
47
|
+
offset: offsetLeft,
|
|
48
|
+
}
|
|
49
|
+
break
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
offsetLeft -= child.text.length
|
|
53
|
+
|
|
54
|
+
continue
|
|
55
|
+
}
|
|
56
|
+
|
|
36
57
|
if (!isPortableTextSpan(child)) {
|
|
58
|
+
skippedInlineObject = true
|
|
37
59
|
continue
|
|
38
60
|
}
|
|
39
61
|
|
|
40
|
-
if (offsetLeft === 0) {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
62
|
+
if (offsetLeft === 0 && selectionPoint && !skippedInlineObject) {
|
|
63
|
+
if (skippedInlineObject) {
|
|
64
|
+
selectionPoint = {
|
|
65
|
+
path: [...blockOffset.path, 'children', {_key: child._key}],
|
|
66
|
+
offset: 0,
|
|
67
|
+
}
|
|
44
68
|
}
|
|
45
69
|
break
|
|
46
70
|
}
|
|
47
71
|
|
|
72
|
+
if (offsetLeft > child.text.length) {
|
|
73
|
+
offsetLeft -= child.text.length
|
|
74
|
+
continue
|
|
75
|
+
}
|
|
76
|
+
|
|
48
77
|
if (offsetLeft <= child.text.length) {
|
|
49
78
|
selectionPoint = {
|
|
50
79
|
path: [...blockOffset.path, 'children', {_key: child._key}],
|
|
51
80
|
offset: offsetLeft,
|
|
52
81
|
}
|
|
53
|
-
break
|
|
54
|
-
}
|
|
55
82
|
|
|
56
|
-
|
|
83
|
+
offsetLeft -= child.text.length
|
|
84
|
+
|
|
85
|
+
if (offsetLeft !== 0) {
|
|
86
|
+
break
|
|
87
|
+
}
|
|
88
|
+
}
|
|
57
89
|
}
|
|
58
90
|
}
|
|
59
91
|
|
|
@@ -18,10 +18,12 @@ export function blockOffsetsToSelection({
|
|
|
18
18
|
const anchor = blockOffsetToSpanSelectionPoint({
|
|
19
19
|
value,
|
|
20
20
|
blockOffset: offsets.anchor,
|
|
21
|
+
direction: backward ? 'backward' : 'forward',
|
|
21
22
|
})
|
|
22
23
|
const focus = blockOffsetToSpanSelectionPoint({
|
|
23
24
|
value,
|
|
24
25
|
blockOffset: offsets.focus,
|
|
26
|
+
direction: backward ? 'forward' : 'backward',
|
|
25
27
|
})
|
|
26
28
|
|
|
27
29
|
if (!anchor || !focus) {
|
|
@@ -92,7 +92,18 @@ export function sliceBlocks({
|
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
if (startBlock && isPortableTextTextBlock(startBlock)) {
|
|
95
|
-
|
|
95
|
+
if (
|
|
96
|
+
endChildKey &&
|
|
97
|
+
child._key === endChildKey &&
|
|
98
|
+
isPortableTextSpan(child)
|
|
99
|
+
) {
|
|
100
|
+
startBlock.children.push({
|
|
101
|
+
...child,
|
|
102
|
+
text: child.text.slice(0, endPoint.offset),
|
|
103
|
+
})
|
|
104
|
+
} else {
|
|
105
|
+
startBlock.children.push(child)
|
|
106
|
+
}
|
|
96
107
|
|
|
97
108
|
if (
|
|
98
109
|
block._key === endBlockKey &&
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var types = require("@sanity/types"), util_reverseSelection = require("./util.reverse-selection.cjs"), selector_isAtTheStartOfBlock = require("./selector.is-at-the-start-of-block.cjs");
|
|
3
|
-
const getTrimmedSelection = ({
|
|
4
|
-
context
|
|
5
|
-
}) => {
|
|
6
|
-
if (!context.selection)
|
|
7
|
-
return context.selection;
|
|
8
|
-
const startPoint = selector_isAtTheStartOfBlock.getSelectionStartPoint({
|
|
9
|
-
context
|
|
10
|
-
}), endPoint = selector_isAtTheStartOfBlock.getSelectionEndPoint({
|
|
11
|
-
context
|
|
12
|
-
});
|
|
13
|
-
if (!startPoint || !endPoint)
|
|
14
|
-
return context.selection;
|
|
15
|
-
const startBlockKey = util_reverseSelection.isKeyedSegment(startPoint.path[0]) ? startPoint.path[0]._key : null, startChildKey = util_reverseSelection.isKeyedSegment(startPoint.path[2]) ? startPoint.path[2]._key : null, endBlockKey = util_reverseSelection.isKeyedSegment(endPoint.path[0]) ? endPoint.path[0]._key : null, endChildKey = util_reverseSelection.isKeyedSegment(endPoint.path[2]) ? endPoint.path[2]._key : null;
|
|
16
|
-
if (!startBlockKey || !endBlockKey)
|
|
17
|
-
return context.selection;
|
|
18
|
-
let startBlockFound = !1, adjustedStartPoint, trimStartPoint = !1, adjustedEndPoint, trimEndPoint = !1, previousPotentialEndpoint;
|
|
19
|
-
for (const block of context.value)
|
|
20
|
-
if (!(block._key === startBlockKey && (startBlockFound = !0, types.isPortableTextTextBlock(block) && util_reverseSelection.isEmptyTextBlock(block))) && startBlockFound && types.isPortableTextTextBlock(block)) {
|
|
21
|
-
if (block._key === endBlockKey && util_reverseSelection.isEmptyTextBlock(block))
|
|
22
|
-
break;
|
|
23
|
-
for (const child of block.children) {
|
|
24
|
-
if (child._key === endChildKey && (!types.isPortableTextSpan(child) || endPoint.offset === 0)) {
|
|
25
|
-
adjustedEndPoint = previousPotentialEndpoint ? {
|
|
26
|
-
path: [{
|
|
27
|
-
_key: previousPotentialEndpoint.blockKey
|
|
28
|
-
}, "children", {
|
|
29
|
-
_key: previousPotentialEndpoint.span._key
|
|
30
|
-
}],
|
|
31
|
-
offset: previousPotentialEndpoint.span.text.length
|
|
32
|
-
} : void 0, trimEndPoint = !0;
|
|
33
|
-
break;
|
|
34
|
-
}
|
|
35
|
-
if (trimStartPoint) {
|
|
36
|
-
const lonelySpan = types.isPortableTextSpan(child) && block.children.length === 1;
|
|
37
|
-
(types.isPortableTextSpan(child) && child.text.length > 0 || lonelySpan) && (adjustedStartPoint = {
|
|
38
|
-
path: [{
|
|
39
|
-
_key: block._key
|
|
40
|
-
}, "children", {
|
|
41
|
-
_key: child._key
|
|
42
|
-
}],
|
|
43
|
-
offset: 0
|
|
44
|
-
}, previousPotentialEndpoint = {
|
|
45
|
-
blockKey: block._key,
|
|
46
|
-
span: child
|
|
47
|
-
}, trimStartPoint = !1);
|
|
48
|
-
continue;
|
|
49
|
-
}
|
|
50
|
-
if (child._key === startChildKey) {
|
|
51
|
-
if (!types.isPortableTextSpan(child)) {
|
|
52
|
-
trimStartPoint = !0;
|
|
53
|
-
continue;
|
|
54
|
-
}
|
|
55
|
-
if (startPoint.offset === child.text.length) {
|
|
56
|
-
trimStartPoint = !0, previousPotentialEndpoint = child.text.length > 0 ? {
|
|
57
|
-
blockKey: block._key,
|
|
58
|
-
span: child
|
|
59
|
-
} : previousPotentialEndpoint;
|
|
60
|
-
continue;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
previousPotentialEndpoint = types.isPortableTextSpan(child) && child.text.length > 0 ? {
|
|
64
|
-
blockKey: block._key,
|
|
65
|
-
span: child
|
|
66
|
-
} : previousPotentialEndpoint;
|
|
67
|
-
}
|
|
68
|
-
if (block._key === endBlockKey)
|
|
69
|
-
break;
|
|
70
|
-
}
|
|
71
|
-
const trimmedSelection = context.selection.backward ? {
|
|
72
|
-
anchor: trimEndPoint && adjustedEndPoint ? adjustedEndPoint : endPoint,
|
|
73
|
-
focus: adjustedStartPoint ?? startPoint,
|
|
74
|
-
backward: !0
|
|
75
|
-
} : {
|
|
76
|
-
anchor: adjustedStartPoint ?? startPoint,
|
|
77
|
-
focus: trimEndPoint && adjustedEndPoint ? adjustedEndPoint : endPoint
|
|
78
|
-
};
|
|
79
|
-
if (selector_isAtTheStartOfBlock.isSelectionCollapsed({
|
|
80
|
-
context: {
|
|
81
|
-
...context,
|
|
82
|
-
selection: trimmedSelection
|
|
83
|
-
}
|
|
84
|
-
})) {
|
|
85
|
-
const focusTextBlock = selector_isAtTheStartOfBlock.getFocusTextBlock({
|
|
86
|
-
context: {
|
|
87
|
-
...context,
|
|
88
|
-
selection: trimmedSelection
|
|
89
|
-
}
|
|
90
|
-
});
|
|
91
|
-
if (focusTextBlock && !util_reverseSelection.isEmptyTextBlock(focusTextBlock.node))
|
|
92
|
-
return null;
|
|
93
|
-
}
|
|
94
|
-
return trimmedSelection;
|
|
95
|
-
};
|
|
96
|
-
exports.getTrimmedSelection = getTrimmedSelection;
|
|
97
|
-
//# sourceMappingURL=selector.get-trimmed-selection.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"selector.get-trimmed-selection.cjs","sources":["../../src/selectors/selector.get-trimmed-selection.ts"],"sourcesContent":["import {\n isPortableTextSpan,\n isPortableTextTextBlock,\n type PortableTextSpan,\n} from '@sanity/types'\nimport type {EditorSelector} from '../editor/editor-selector'\nimport type {EditorSelection, EditorSelectionPoint} from '../types/editor'\nimport {isEmptyTextBlock, isKeyedSegment} from '../utils'\nimport {getSelectionEndPoint} from './selector.get-selection-end-point'\nimport {getSelectionStartPoint} from './selector.get-selection-start-point'\nimport {isSelectionCollapsed} from './selector.is-selection-collapsed'\nimport {getFocusTextBlock} from './selectors'\n\n/**\n * @public\n */\nexport const getTrimmedSelection: EditorSelector<EditorSelection> = ({\n context,\n}) => {\n if (!context.selection) {\n return context.selection\n }\n\n const startPoint = getSelectionStartPoint({context})\n const endPoint = getSelectionEndPoint({context})\n\n if (!startPoint || !endPoint) {\n return context.selection\n }\n\n const startBlockKey = isKeyedSegment(startPoint.path[0])\n ? startPoint.path[0]._key\n : null\n const startChildKey = isKeyedSegment(startPoint.path[2])\n ? startPoint.path[2]._key\n : null\n const endBlockKey = isKeyedSegment(endPoint.path[0])\n ? endPoint.path[0]._key\n : null\n const endChildKey = isKeyedSegment(endPoint.path[2])\n ? endPoint.path[2]._key\n : null\n\n if (!startBlockKey || !endBlockKey) {\n return context.selection\n }\n\n let startBlockFound = false\n let adjustedStartPoint: EditorSelectionPoint | undefined\n let trimStartPoint = false\n let adjustedEndPoint: EditorSelectionPoint | undefined\n let trimEndPoint = false\n let previousPotentialEndpoint:\n | {blockKey: string; span: PortableTextSpan}\n | undefined\n\n for (const block of context.value) {\n if (block._key === startBlockKey) {\n startBlockFound = true\n\n if (isPortableTextTextBlock(block) && isEmptyTextBlock(block)) {\n continue\n }\n }\n\n if (!startBlockFound) {\n continue\n }\n\n if (!isPortableTextTextBlock(block)) {\n continue\n }\n\n if (block._key === endBlockKey && isEmptyTextBlock(block)) {\n break\n }\n\n for (const child of block.children) {\n if (child._key === endChildKey) {\n if (!isPortableTextSpan(child) || endPoint.offset === 0) {\n adjustedEndPoint = previousPotentialEndpoint\n ? {\n path: [\n {_key: previousPotentialEndpoint.blockKey},\n 'children',\n {_key: previousPotentialEndpoint.span._key},\n ],\n offset: previousPotentialEndpoint.span.text.length,\n }\n : undefined\n\n trimEndPoint = true\n break\n }\n }\n\n if (trimStartPoint) {\n const lonelySpan =\n isPortableTextSpan(child) && block.children.length === 1\n\n if (\n (isPortableTextSpan(child) && child.text.length > 0) ||\n lonelySpan\n ) {\n adjustedStartPoint = {\n path: [{_key: block._key}, 'children', {_key: child._key}],\n offset: 0,\n }\n previousPotentialEndpoint = {blockKey: block._key, span: child}\n trimStartPoint = false\n }\n\n continue\n }\n\n if (child._key === startChildKey) {\n if (!isPortableTextSpan(child)) {\n trimStartPoint = true\n continue\n }\n\n if (startPoint.offset === child.text.length) {\n trimStartPoint = true\n previousPotentialEndpoint =\n child.text.length > 0\n ? {blockKey: block._key, span: child}\n : previousPotentialEndpoint\n continue\n }\n }\n\n previousPotentialEndpoint =\n isPortableTextSpan(child) && child.text.length > 0\n ? {blockKey: block._key, span: child}\n : previousPotentialEndpoint\n }\n\n if (block._key === endBlockKey) {\n break\n }\n }\n\n const trimmedSelection = context.selection.backward\n ? {\n anchor: trimEndPoint && adjustedEndPoint ? adjustedEndPoint : endPoint,\n focus: adjustedStartPoint ?? startPoint,\n backward: true,\n }\n : {\n anchor: adjustedStartPoint ?? startPoint,\n focus: trimEndPoint && adjustedEndPoint ? adjustedEndPoint : endPoint,\n }\n\n if (\n isSelectionCollapsed({\n context: {\n ...context,\n selection: trimmedSelection,\n },\n })\n ) {\n const focusTextBlock = getFocusTextBlock({\n context: {\n ...context,\n selection: trimmedSelection,\n },\n })\n\n if (focusTextBlock && !isEmptyTextBlock(focusTextBlock.node)) {\n return null\n }\n }\n\n return trimmedSelection\n}\n"],"names":["getTrimmedSelection","context","selection","startPoint","getSelectionStartPoint","endPoint","getSelectionEndPoint","startBlockKey","isKeyedSegment","path","_key","startChildKey","endBlockKey","endChildKey","startBlockFound","adjustedStartPoint","trimStartPoint","adjustedEndPoint","trimEndPoint","previousPotentialEndpoint","block","value","isPortableTextTextBlock","isEmptyTextBlock","child","children","isPortableTextSpan","offset","blockKey","span","text","length","undefined","lonelySpan","trimmedSelection","backward","anchor","focus","isSelectionCollapsed","focusTextBlock","getFocusTextBlock","node"],"mappings":"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"}
|