forked from livingdocsIO/editable.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
selection.js
377 lines (330 loc) · 10.7 KB
/
selection.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
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
import Cursor from './cursor.js'
import * as content from './content.js'
import * as parser from './parser.js'
import * as block from './block.js'
import config from './config.js'
import highlightSupport from './highlight-support.js'
import highlightText from './highlight-text.js'
import {
toCharacterRange,
rangeToHtml,
findStartExcludingWhitespace,
findEndExcludingWhitespace
} from './util/dom.js'
/**
* The Selection module provides a cross-browser abstraction layer for range
* and selection.
*
* @module core
* @submodule selection
*/
/**
* Class that represents a selection and provides functionality to access or
* modify the selection.
*
* @class Selection
* @constructor
*/
export default class Selection extends Cursor {
constructor () {
super(...arguments)
delete this.isCursor
this.isSelection = true
}
// Get the text inside the selection.
text () {
return this.range.toString()
}
// Get the html inside the selection.
html () {
return rangeToHtml(this.range)
}
isAllSelected () {
return parser.isBeginningOfHost(
this.host,
this.range.startContainer,
this.range.startOffset
) && parser.isTextEndOfHost(
this.host,
this.range.endContainer,
this.range.endOffset
)
}
getTextRange () {
return toCharacterRange(this.range, this.host)
}
// Return a plain string of the current selection content.
toString () {
return this.range.toString()
}
// Return true if the selection can be wrapped, i.e. all open nodes
// are closed within this selection.
isWrappable () {
return content.isWrappable(this.range)
}
// Get the ClientRects of this selection.
// Use this if you want more precision than getBoundingClientRect can give.
getRects () {
// consider: translate into absolute positions
// just like Cursor#getCoordinates()
return this.range.getClientRects()
}
link (href, attrs = {}) {
if (href) attrs.href = href
const link = this.createElement(config.linkMarkup.name, config.linkMarkup.attribs)
for (const key in attrs) {
const value = attrs[key]
if (value === undefined) continue
if (value === null) {
link.removeAttribute(key)
} else {
link.setAttribute(key, value)
}
}
if (config.linkMarkup.trim) this.trimRange()
this.forceWrap(link)
}
// trims whitespaces on the left and right of a selection, i.e. what you want in case of links
trimRange () {
const textToTrim = this.range.toString()
const whitespacesOnTheLeft = textToTrim.search(/\S|$/)
const lastNonWhitespace = textToTrim.search(/\S[\s]+$/)
const whitespacesOnTheRight = lastNonWhitespace === -1
? 0
: textToTrim.length - (lastNonWhitespace + 1)
const [startContainer, startOffset] = findStartExcludingWhitespace({
root: this.range.commonAncestorContainer,
startContainer: this.range.startContainer,
startOffset: this.range.startOffset,
whitespacesOnTheLeft
})
this.range.setStart(startContainer, startOffset)
const [endContainer, endOffset] = findEndExcludingWhitespace({
root: this.range.commonAncestorContainer,
endContainer: this.range.endContainer,
endOffset: this.range.endOffset,
whitespacesOnTheRight
})
this.range.setEnd(endContainer, endOffset)
}
unlink () {
this.removeFormatting(config.linkMarkup.name)
}
toggleLink (href, attrs) {
const links = this.getTagsByName(config.linkMarkup.name)
if (links.length >= 1) {
const firstLink = links[0]
if (this.isExactSelection(firstLink, 'visible')) {
this.unlink()
} else {
this.expandTo(firstLink)
}
} else {
this.link(href, attrs)
}
}
highlightComment ({highlightId, textRange}) {
highlightSupport.highlightRange(
this.host,
highlightId,
textRange.text,
textRange.start,
textRange.end,
undefined, // dispatcher
'comment'
)
}
// Manually add a highlight
// Note: the current code does not work with newlines (LP)
highlight ({highlightId}) {
const textBefore = this.textBefore()
const currentTextContent = this.text()
const marker = '<span class="highlight-comment"></span>'
const markerNode = highlightSupport.createMarkerNode(marker, this.win)
markerNode.setAttribute('data-match', currentTextContent)
const match = {
startIndex: textBefore.length,
endIndex: textBefore.length + currentTextContent.length,
match: currentTextContent,
marker: markerNode
}
// Note: highlighting won't retain the selection
highlightText.highlightMatches(this.host, [match])
}
// e.g. toggle('<em>')
toggle (elem) {
if (block.isPlainTextBlock(this.host)) return
if (this.range.collapsed) return
elem = this.adoptElement(elem)
this.range = content.toggleTag(this.host, this.range, elem)
this.setVisibleSelection()
}
toggleCustom ({tagName, attributes, trim = false}) {
const customElem = this.createElement(tagName, attributes)
if (trim) this.trimRange()
this.toggle(customElem)
}
makeCustom ({tagName, attributes, trim = false}) {
const customElem = this.createElement(tagName, attributes)
if (trim) this.trimRange()
this.forceWrap(customElem)
}
makeBold () {
const bold = this.createElement(config.boldMarkup.name, config.boldMarkup.attribs)
if (config.boldMarkup.trim) this.trimRange()
this.forceWrap(bold)
}
toggleBold () {
const bold = this.createElement(config.boldMarkup.name, config.boldMarkup.attribs)
if (config.boldMarkup.trim) this.trimRange()
this.toggle(bold)
}
giveEmphasis () {
const em = this.createElement(config.italicMarkup.name, config.italicMarkup.attribs)
if (config.italicMarkup.trim) this.trimRange()
this.forceWrap(em)
}
toggleEmphasis () {
const em = this.createElement(config.italicMarkup.name, config.italicMarkup.attribs)
if (config.italicMarkup.trim) this.trimRange()
this.toggle(em)
}
makeUnderline () {
const u = this.createElement(config.underlineMarkup.name, config.underlineMarkup.attribs)
if (config.underlineMarkup.trim) this.trimRange()
this.forceWrap(u)
}
toggleUnderline () {
const u = this.createElement(config.underlineMarkup.name, config.underlineMarkup.attribs)
if (config.underlineMarkup.trim) this.trimRange()
this.toggle(u)
}
insertCharacter (character) {
const cursor = this.deleteContent()
const textNode = cursor.createTextNode(character)
cursor.insertBefore(textNode)
cursor.setVisibleSelection()
return cursor
}
// Surround the selection with characters like quotes.
//
// @param {String} E.g. '«'
// @param {String} E.g. '»'
surround (startCharacter, endCharacter) {
this.range = content.surround(this.host, this.range, startCharacter, endCharacter)
this.setVisibleSelection()
}
removeSurround (startCharacter, endCharacter) {
this.range = content.deleteCharacter(this.host, this.range, startCharacter)
this.range = content.deleteCharacter(this.host, this.range, endCharacter)
this.setVisibleSelection()
}
removeChars (chars = []) {
for (let i = 0; i < chars.length; i++) {
const char = chars[i]
this.range = content.deleteCharacter(this.host, this.range, char)
}
this.setVisibleSelection()
}
toggleSurround (startCharacter, endCharacter) {
if (this.containsString(startCharacter) &&
this.containsString(endCharacter)) {
this.removeSurround(startCharacter, endCharacter)
} else {
this.surround(startCharacter, endCharacter)
}
}
// @param {String} selector. An element selector, e.g. 'a' or 'span.some-class'
// that represents elements to be removed; if undefined,
// remove all.
removeFormatting (selector) {
this.range = content.removeFormatting(this.host, this.range, selector)
this.setVisibleSelection()
}
// Delete the farest ancestor that is an exact selection
//
// @return Selection instance
deleteExactSurroundingTags () {
const ancestorTags = this.getAncestorTags().reverse()
for (const ancestorTag of ancestorTags) {
if (this.isExactSelection(ancestorTag)) {
ancestorTag.remove()
break
}
}
return new Selection(this.host, this.range)
}
// Delete all the tags whose text is completely within the current selection.
//
// @return Selection instance
deleteContainedTags () {
const containedTags = this.getContainedTags()
containedTags.forEach(containedTag => containedTag.remove())
return new Selection(this.host, this.range)
}
// Delete the contents inside the range and exact surrounding markups.
// After that the selection will be a cursor.
//
// @return Cursor instance
deleteContent () {
this.range.deleteContents()
return new Cursor(this.host, this.range)
}
// Expand the current selection.
//
// @param {DOM Node}
expandTo (elem) {
this.range = content.expandTo(this.host, this.range, elem)
this.setVisibleSelection()
}
// Collapse the selection at the beginning of the selection
//
// @return Cursor instance
collapseAtBeginning (elem) {
this.range.collapse(true)
this.setVisibleSelection()
return new Cursor(this.host, this.range)
}
// Collapse the selection at the end of the selection
//
// @return Cursor instance
collapseAtEnd (elem) {
this.range.collapse(false)
this.setVisibleSelection()
return new Cursor(this.host, this.range)
}
// Wrap the selection with the specified tag. If any other tag with
// the same tagName is affecting the selection this tag will be
// remove first.
forceWrap (elem) {
if (block.isPlainTextBlock(this.host)) return
if (this.range.collapsed) return
elem = this.adoptElement(elem)
this.range = content.forceWrap(this.host, this.range, elem)
this.setVisibleSelection()
}
// Check if the selection is the same as the elements contents.
//
// @method isExactSelection
// @param {DOM Node}
// @param {flag: undefined or 'visible'} if 'visible' is passed
// whitespaces at the beginning or end of the selection will
// be ignored.
// @return {Boolean}
isExactSelection (elem, onlyVisible) {
return content.isExactSelection(this.range, elem, onlyVisible)
}
// Check if the selection contains the passed string.
//
// @method containsString
// @return {Boolean}
containsString (str) {
return content.containsString(this.range, str)
}
// Delete all occurrences of the specified character from the
// selection.
deleteCharacter (character) {
this.range = content.deleteCharacter(this.host, this.range, character)
this.setVisibleSelection()
}
}