index.cjs 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. /**
  2. * The purpose of this class is to track a set of inserts and deletes to a document, like
  3. * track changes in Word. We store these as a set of ShareJs style ranges:
  4. * {i: "foo", p: 42} # Insert 'foo' at offset 42
  5. * {d: "bar", p: 37} # Delete 'bar' at offset 37
  6. * We only track the inserts and deletes, not the whole document, but by being given all
  7. * updates that are applied to a document, we can update these appropriately.
  8. *
  9. * Note that the set of inserts and deletes we store applies to the document as-is at the moment.
  10. * So inserts correspond to text which is in the document, while deletes correspond to text which
  11. * is no longer there, so their lengths do not affect the position of later offsets.
  12. * E.g.
  13. * this is the current text of the document
  14. * |-----| |
  15. * {i: "current ", p:12} -^ ^- {d: "old ", p: 31}
  16. *
  17. * Track changes rules (should be consistent with Word):
  18. * * When text is inserted at a delete, the text goes to the left of the delete
  19. * I.e. "foo|bar" -> "foobaz|bar", where | is the delete, and 'baz' is inserted
  20. * * Deleting content flagged as 'inserted' does not create a new delete marker, it only
  21. * removes the insert marker. E.g.
  22. * * "abdefghijkl" -> "abfghijkl" when 'de' is deleted. No delete marker added
  23. * |---| <- inserted |-| <- inserted
  24. * * Deletes overlapping regular text and inserted text will insert a delete marker for the
  25. * regular text:
  26. * "abcdefghijkl" -> "abcdejkl" when 'fghi' is deleted
  27. * |----| |--||
  28. * ^- inserted 'bcdefg' \ ^- deleted 'hi'
  29. * \--inserted 'bcde'
  30. * * Deletes overlapping other deletes are merged. E.g.
  31. * "abcghijkl" -> "ahijkl" when 'bcg is deleted'
  32. * | <- delete 'def' | <- delete 'bcdefg'
  33. * * Deletes by another user will consume deletes by the first user
  34. * * Inserts by another user will not combine with inserts by the first user. If they are in the
  35. * middle of a previous insert by the first user, the original insert will be split into two.
  36. */
  37. class RangesTracker {
  38. constructor(changes, comments) {
  39. if (changes == null) {
  40. changes = []
  41. }
  42. this.changes = changes
  43. if (comments == null) {
  44. comments = []
  45. }
  46. this.comments = comments
  47. this.track_changes = false
  48. this.id_seed = RangesTracker.generateIdSeed()
  49. this.id_increment = 0
  50. this._dirtyState = {
  51. comment: {
  52. moved: {},
  53. removed: {},
  54. added: {},
  55. },
  56. change: {
  57. moved: {},
  58. removed: {},
  59. added: {},
  60. },
  61. }
  62. }
  63. getIdSeed() {
  64. return this.id_seed
  65. }
  66. setIdSeed(seed) {
  67. this.id_seed = seed
  68. this.id_increment = 0
  69. }
  70. static generateIdSeed() {
  71. // Generate a the first 18 characters of Mongo ObjectId, leaving 6 for the increment part
  72. // Reference: https://github.com/dreampulse/ObjectId.js/blob/master/src/main/javascript/Objectid.js
  73. const pid = Math.floor(Math.random() * 32767).toString(16)
  74. const machine = Math.floor(Math.random() * 16777216).toString(16)
  75. const timestamp = Math.floor(new Date().valueOf() / 1000).toString(16)
  76. return (
  77. '00000000'.substr(0, 8 - timestamp.length) +
  78. timestamp +
  79. '000000'.substr(0, 6 - machine.length) +
  80. machine +
  81. '0000'.substr(0, 4 - pid.length) +
  82. pid
  83. )
  84. }
  85. static generateId() {
  86. return this.generateIdSeed() + '000001'
  87. }
  88. newId() {
  89. this.id_increment++
  90. const increment = this.id_increment.toString(16)
  91. const id =
  92. this.id_seed + '000000'.substr(0, 6 - increment.length) + increment
  93. return id
  94. }
  95. getComment(commentId) {
  96. let comment = null
  97. for (const c of this.comments) {
  98. if (c.id === commentId) {
  99. comment = c
  100. break
  101. }
  102. }
  103. return comment
  104. }
  105. removeCommentId(commentId) {
  106. const comment = this.getComment(commentId)
  107. if (comment == null) {
  108. return
  109. }
  110. this.comments = this.comments.filter(c => c.id !== commentId)
  111. this._markAsDirty(comment, 'comment', 'removed')
  112. }
  113. moveCommentId(commentId, position, text) {
  114. for (const comment of this.comments) {
  115. if (comment.id === commentId) {
  116. comment.op.p = position
  117. comment.op.c = text
  118. this._markAsDirty(comment, 'comment', 'moved')
  119. }
  120. }
  121. }
  122. getChange(changeId) {
  123. let change = null
  124. for (const c of this.changes) {
  125. if (c.id === changeId) {
  126. change = c
  127. break
  128. }
  129. }
  130. return change
  131. }
  132. getChanges(ids) {
  133. const idSet = new Set(ids)
  134. return this.changes.filter(change => idSet.has(change.id))
  135. }
  136. removeChangeId(changeId) {
  137. const change = this.getChange(changeId)
  138. if (change == null) {
  139. return
  140. }
  141. this._removeChange(change)
  142. }
  143. removeChangeIds(ids) {
  144. if (ids == null || ids.length === 0) {
  145. return
  146. }
  147. const idSet = new Set(ids)
  148. const remainingChanges = []
  149. for (const change of this.changes) {
  150. if (idSet.has(change.id)) {
  151. this._markAsDirty(change, 'change', 'removed')
  152. } else {
  153. remainingChanges.push(change)
  154. }
  155. }
  156. this.changes = remainingChanges
  157. }
  158. validate(text) {
  159. let content
  160. for (const change of this.changes) {
  161. if (change.op.i != null) {
  162. content = text.slice(change.op.p, change.op.p + change.op.i.length)
  163. if (content !== change.op.i) {
  164. throw new Error('insertion does not match text in document')
  165. }
  166. }
  167. }
  168. for (const comment of this.comments) {
  169. content = text.slice(comment.op.p, comment.op.p + comment.op.c.length)
  170. if (content !== comment.op.c) {
  171. throw new Error('comment does not match text in document')
  172. }
  173. }
  174. }
  175. applyOp(op, metadata) {
  176. if (metadata == null) {
  177. metadata = {}
  178. }
  179. if (metadata.ts == null) {
  180. metadata.ts = new Date()
  181. }
  182. // Apply an op that has been applied to the document to our changes to keep them up to date
  183. if (op.i != null) {
  184. this.applyInsertToChanges(op, metadata)
  185. this.applyInsertToComments(op)
  186. } else if (op.d != null) {
  187. this.applyDeleteToChanges(op, metadata)
  188. this.applyDeleteToComments(op)
  189. } else if (op.c != null) {
  190. this.addComment(op, metadata)
  191. } else {
  192. throw new Error('unknown op type')
  193. }
  194. }
  195. applyOps(ops, metadata) {
  196. if (metadata == null) {
  197. metadata = {}
  198. }
  199. for (const op of ops) {
  200. this.applyOp(op, metadata)
  201. }
  202. }
  203. addComment(op, metadata) {
  204. const existing = this.getComment(op.t)
  205. if (existing != null) {
  206. this.moveCommentId(op.t, op.p, op.c)
  207. } else {
  208. let comment
  209. this.comments.push(
  210. (comment = {
  211. id: op.t || this.newId(),
  212. op: {
  213. // Copy because we'll modify in place
  214. c: op.c,
  215. p: op.p,
  216. t: op.t,
  217. },
  218. metadata,
  219. })
  220. )
  221. this._markAsDirty(comment, 'comment', 'added')
  222. }
  223. }
  224. applyInsertToComments(op) {
  225. for (const comment of this.comments) {
  226. if (op.p <= comment.op.p) {
  227. comment.op.p += op.i.length
  228. this._markAsDirty(comment, 'comment', 'moved')
  229. } else if (op.p < comment.op.p + comment.op.c.length) {
  230. const offset = op.p - comment.op.p
  231. comment.op.c =
  232. comment.op.c.slice(0, +(offset - 1) + 1 || undefined) +
  233. op.i +
  234. comment.op.c.slice(offset)
  235. this._markAsDirty(comment, 'comment', 'moved')
  236. }
  237. }
  238. }
  239. applyDeleteToComments(op) {
  240. const opStart = op.p
  241. const opLength = op.d.length
  242. const opEnd = op.p + opLength
  243. for (const comment of this.comments) {
  244. const commentStart = comment.op.p
  245. const commentEnd = comment.op.p + comment.op.c.length
  246. const commentLength = commentEnd - commentStart
  247. if (opEnd <= commentStart) {
  248. // delete is fully before comment
  249. comment.op.p -= opLength
  250. this._markAsDirty(comment, 'comment', 'moved')
  251. } else if (opStart >= commentEnd) {
  252. // delete is fully after comment, nothing to do
  253. } else {
  254. // delete and comment overlap
  255. let remainingAfter, remainingBefore
  256. if (opStart <= commentStart) {
  257. remainingBefore = ''
  258. } else {
  259. remainingBefore = comment.op.c.slice(0, opStart - commentStart)
  260. }
  261. if (opEnd >= commentEnd) {
  262. remainingAfter = ''
  263. } else {
  264. remainingAfter = comment.op.c.slice(opEnd - commentStart)
  265. }
  266. // Check deleted content matches delete op
  267. const deletedComment = comment.op.c.slice(
  268. remainingBefore.length,
  269. commentLength - remainingAfter.length
  270. )
  271. const offset = Math.max(0, commentStart - opStart)
  272. const deletedOpContent = op.d
  273. .slice(offset)
  274. .slice(0, deletedComment.length)
  275. if (deletedComment !== deletedOpContent) {
  276. throw new Error('deleted content does not match comment content')
  277. }
  278. comment.op.p = Math.min(commentStart, opStart)
  279. comment.op.c = remainingBefore + remainingAfter
  280. this._markAsDirty(comment, 'comment', 'moved')
  281. }
  282. }
  283. }
  284. applyInsertToChanges(op, metadata) {
  285. let change
  286. const opStart = op.p
  287. const opLength = op.i.length
  288. const opEnd = op.p + opLength
  289. const undoing = !!op.u
  290. let alreadyMerged = false
  291. let previousChange = null
  292. const movedChanges = []
  293. const removeChanges = []
  294. const newChanges = []
  295. for (let i = 0; i < this.changes.length; i++) {
  296. change = this.changes[i]
  297. const changeStart = change.op.p
  298. if (change.op.d != null) {
  299. // Shift any deletes after this along by the length of this insert
  300. if (opStart < changeStart) {
  301. change.op.p += opLength
  302. movedChanges.push(change)
  303. } else if (opStart === changeStart) {
  304. // If we are undoing, then we want to cancel any existing delete ranges if we can.
  305. // Check if the insert matches the start of the delete, and just remove it from the delete instead if so.
  306. if (
  307. undoing &&
  308. change.op.d.length >= op.i.length &&
  309. change.op.d.slice(0, op.i.length) === op.i
  310. ) {
  311. change.op.d = change.op.d.slice(op.i.length)
  312. change.op.p += op.i.length
  313. if (change.op.d === '') {
  314. removeChanges.push(change)
  315. } else {
  316. movedChanges.push(change)
  317. }
  318. alreadyMerged = true
  319. } else {
  320. change.op.p += opLength
  321. movedChanges.push(change)
  322. }
  323. }
  324. } else if (change.op.i != null) {
  325. let offset
  326. const changeEnd = changeStart + change.op.i.length
  327. const isChangeOverlapping =
  328. opStart >= changeStart && opStart <= changeEnd
  329. // Only merge inserts if they are from the same user
  330. const isSameUser = metadata.user_id === change.metadata.user_id
  331. // If we are undoing, then our changes will be removed from any delete ops just after. In that case, if there is also
  332. // an insert op just before, then we shouldn't append it to this insert, but instead only cancel the following delete.
  333. // E.g.
  334. // foo|<--- about to insert 'b' here
  335. // inserted 'foo' --^ ^-- deleted 'bar'
  336. // should become just 'foo' not 'foob' (with the delete marker becoming just 'ar'), .
  337. const nextChange = this.changes[i + 1]
  338. const isOpAdjacentToNextDelete =
  339. nextChange != null &&
  340. nextChange.op.d != null &&
  341. op.p === changeEnd &&
  342. nextChange.op.p === op.p
  343. const willOpCancelNextDelete =
  344. undoing &&
  345. isOpAdjacentToNextDelete &&
  346. nextChange.op.d.slice(0, op.i.length) === op.i
  347. // If there is a delete at the start of the insert, and we're inserting
  348. // at the start, we SHOULDN'T merge since the delete acts as a partition.
  349. // The previous op will be the delete, but it's already been shifted by this insert
  350. //
  351. // I.e.
  352. // Originally: |-- existing insert --|
  353. // | <- existing delete at same offset
  354. //
  355. // Now: |-- existing insert --| <- not shifted yet
  356. // |-- this insert --|| <- existing delete shifted along to end of this op
  357. //
  358. // After: |-- existing insert --|
  359. // |-- this insert --|| <- existing delete
  360. //
  361. // Without the delete, the inserts would be merged.
  362. const isInsertBlockedByDelete =
  363. previousChange != null &&
  364. previousChange.op.d != null &&
  365. previousChange.op.p === opEnd
  366. // If the insert is overlapping another insert, either at the beginning in the middle or touching the end,
  367. // then we merge them into one.
  368. if (
  369. this.track_changes &&
  370. isChangeOverlapping &&
  371. !isInsertBlockedByDelete &&
  372. !alreadyMerged &&
  373. !willOpCancelNextDelete &&
  374. isSameUser
  375. ) {
  376. offset = opStart - changeStart
  377. change.op.i =
  378. change.op.i.slice(0, offset) + op.i + change.op.i.slice(offset)
  379. change.metadata.ts = metadata.ts
  380. alreadyMerged = true
  381. movedChanges.push(change)
  382. } else if (opStart <= changeStart) {
  383. // If we're fully before the other insert we can just shift the other insert by our length.
  384. // If they are touching, and should have been merged, they will have been above.
  385. // If not merged above, then it must be blocked by a delete, and will be after this insert, so we shift it along as well
  386. change.op.p += opLength
  387. movedChanges.push(change)
  388. } else if (
  389. (!isSameUser || !this.track_changes) &&
  390. changeStart < opStart &&
  391. opStart < changeEnd
  392. ) {
  393. // This user is inserting inside a change by another user, so we need to split the
  394. // other user's change into one before and after this one.
  395. offset = opStart - changeStart
  396. const beforeContent = change.op.i.slice(0, offset)
  397. const afterContent = change.op.i.slice(offset)
  398. // The existing change can become the 'before' change
  399. change.op.i = beforeContent
  400. movedChanges.push(change)
  401. // Create a new op afterwards
  402. const afterChange = {
  403. op: {
  404. i: afterContent,
  405. p: changeStart + offset + opLength,
  406. },
  407. metadata: {},
  408. }
  409. for (const key in change.metadata) {
  410. const value = change.metadata[key]
  411. afterChange.metadata[key] = value
  412. }
  413. newChanges.push(afterChange)
  414. }
  415. }
  416. previousChange = change
  417. }
  418. if (this.track_changes && !alreadyMerged) {
  419. this._addOp(op, metadata)
  420. }
  421. for ({ op, metadata } of newChanges) {
  422. this._addOp(op, metadata)
  423. }
  424. for (change of removeChanges) {
  425. this._removeChange(change)
  426. }
  427. for (change of movedChanges) {
  428. this._markAsDirty(change, 'change', 'moved')
  429. }
  430. }
  431. applyDeleteToChanges(op, metadata) {
  432. const opStart = op.p
  433. const opLength = op.d.length
  434. const opEnd = op.p + opLength
  435. const removeChanges = []
  436. let movedChanges = []
  437. // We might end up modifying our delete op if it merges with existing deletes, or cancels out
  438. // with an existing insert. Since we might do multiple modifications, we record them and do
  439. // all the modifications after looping through the existing changes, so as not to mess up the
  440. // offset indexes as we go.
  441. const opModifications = []
  442. for (const change of this.changes) {
  443. let changeStart
  444. if (change.op.i != null) {
  445. changeStart = change.op.p
  446. const changeEnd = changeStart + change.op.i.length
  447. if (opEnd <= changeStart) {
  448. // Shift ops after us back by our length
  449. change.op.p -= opLength
  450. movedChanges.push(change)
  451. } else if (opStart >= changeEnd) {
  452. // Delete is after insert, nothing to do
  453. } else {
  454. // When the new delete overlaps an insert, we should remove the part of the insert that
  455. // is now deleted, and also remove the part of the new delete that overlapped. I.e.
  456. // the two cancel out where they overlap.
  457. let deleteRemainingAfter,
  458. deleteRemainingBefore,
  459. insertRemainingAfter,
  460. insertRemainingBefore
  461. if (opStart >= changeStart) {
  462. // |-- existing insert --|
  463. // insertRemainingBefore -> |.....||-- new delete --|
  464. deleteRemainingBefore = ''
  465. insertRemainingBefore = change.op.i.slice(0, opStart - changeStart)
  466. } else {
  467. // deleteRemainingBefore -> |.....||-- existing insert --|
  468. // |-- new delete --|
  469. deleteRemainingBefore = op.d.slice(0, changeStart - opStart)
  470. insertRemainingBefore = ''
  471. }
  472. if (opEnd <= changeEnd) {
  473. // |-- existing insert --|
  474. // |-- new delete --||.....| <- insertRemainingAfter
  475. deleteRemainingAfter = ''
  476. insertRemainingAfter = change.op.i.slice(opEnd - changeStart)
  477. } else {
  478. // |-- existing insert --||.....| <- deleteRemainingAfter
  479. // |-- new delete --|
  480. deleteRemainingAfter = op.d.slice(changeEnd - opStart)
  481. insertRemainingAfter = ''
  482. }
  483. const insertRemaining = insertRemainingBefore + insertRemainingAfter
  484. if (insertRemaining.length > 0) {
  485. change.op.i = insertRemaining
  486. change.op.p = Math.min(changeStart, opStart)
  487. movedChanges.push(change)
  488. } else {
  489. removeChanges.push(change)
  490. }
  491. // We know what we want to preserve of our delete op before (deleteRemainingBefore) and what we want to preserve
  492. // afterwards (deleteRemainingBefore). Now we need to turn that into a modification which deletes the
  493. // chunk in the middle not covered by these.
  494. const deleteRemovedLength =
  495. op.d.length -
  496. deleteRemainingBefore.length -
  497. deleteRemainingAfter.length
  498. const deleteRemovedStart = deleteRemainingBefore.length
  499. const modification = {
  500. d: op.d.slice(
  501. deleteRemovedStart,
  502. deleteRemovedStart + deleteRemovedLength
  503. ),
  504. p: deleteRemovedStart,
  505. }
  506. if (modification.d.length > 0) {
  507. opModifications.push(modification)
  508. }
  509. }
  510. } else if (change.op.d != null) {
  511. changeStart = change.op.p
  512. if (
  513. opEnd < changeStart ||
  514. (!this.track_changes && opEnd === changeStart)
  515. ) {
  516. // Shift ops after us back by our length.
  517. // If we're tracking changes, it must be strictly before, since we'll merge
  518. // below if they are touching. Otherwise, touching is fine.
  519. change.op.p -= opLength
  520. movedChanges.push(change)
  521. } else if (opStart <= changeStart && changeStart <= opEnd) {
  522. if (this.track_changes) {
  523. // If we overlap a delete, add it in our content, and delete the existing change.
  524. // It's easier to do it this way, rather than modifying the existing delete in case
  525. // we overlap many deletes and we'd need to track that. We have a workaround to
  526. // update the delete in place if possible below.
  527. const offset = changeStart - opStart
  528. opModifications.push({ i: change.op.d, p: offset })
  529. removeChanges.push(change)
  530. } else {
  531. change.op.p = opStart
  532. movedChanges.push(change)
  533. }
  534. }
  535. }
  536. }
  537. // Copy rather than modify because we still need to apply it to comments
  538. op = {
  539. p: op.p,
  540. d: this._applyOpModifications(op.d, opModifications),
  541. }
  542. for (const change of removeChanges) {
  543. // This is a bit of hack to avoid removing one delete and replacing it with another.
  544. // If we don't do this, it causes the UI to flicker
  545. if (
  546. op.d.length > 0 &&
  547. change.op.d != null &&
  548. op.p <= change.op.p &&
  549. change.op.p <= op.p + op.d.length
  550. ) {
  551. change.op.p = op.p
  552. change.op.d = op.d
  553. change.metadata = metadata
  554. movedChanges.push(change)
  555. op.d = '' // stop it being added
  556. } else {
  557. this._removeChange(change)
  558. }
  559. }
  560. if (this.track_changes && op.d.length > 0) {
  561. this._addOp(op, metadata)
  562. } else {
  563. // It's possible that we deleted an insert between two other inserts. I.e.
  564. // If we delete 'user_2 insert' in:
  565. // |-- user_1 insert --||-- user_2 insert --||-- user_1 insert --|
  566. // it becomes:
  567. // |-- user_1 insert --||-- user_1 insert --|
  568. // We need to merge these together again
  569. const results = this._scanAndMergeAdjacentUpdates()
  570. movedChanges = movedChanges.concat(results.movedChanges)
  571. for (const change of results.removeChanges) {
  572. this._removeChange(change)
  573. movedChanges = movedChanges.filter(c => c !== change)
  574. }
  575. }
  576. for (const change of movedChanges) {
  577. this._markAsDirty(change, 'change', 'moved')
  578. }
  579. }
  580. _addOp(op, metadata) {
  581. const change = {
  582. id: this.newId(),
  583. op: this._clone(op), // Don't take a reference to the existing op since we'll modify this in place with future changes
  584. metadata: this._clone(metadata),
  585. }
  586. this.changes.push(change)
  587. // Keep ops in order of offset, with deletes before inserts
  588. this.changes.sort(function (c1, c2) {
  589. const result = c1.op.p - c2.op.p
  590. if (result !== 0) {
  591. return result
  592. } else if (c1.op.i != null && c2.op.d != null) {
  593. return 1
  594. } else if (c1.op.d != null && c2.op.i != null) {
  595. return -1
  596. } else {
  597. return 0
  598. }
  599. })
  600. this._markAsDirty(change, 'change', 'added')
  601. }
  602. _removeChange(change) {
  603. this.changes = this.changes.filter(c => c.id !== change.id)
  604. this._markAsDirty(change, 'change', 'removed')
  605. }
  606. _applyOpModifications(content, opModifications) {
  607. // Put in descending position order, with deleting first if at the same offset
  608. // (Inserting first would modify the content that the delete will delete)
  609. opModifications.sort(function (a, b) {
  610. const result = b.p - a.p
  611. if (result !== 0) {
  612. return result
  613. } else if (a.i != null && b.d != null) {
  614. return 1
  615. } else if (a.d != null && b.i != null) {
  616. return -1
  617. } else {
  618. return 0
  619. }
  620. })
  621. for (const modification of opModifications) {
  622. if (modification.i != null) {
  623. content =
  624. content.slice(0, modification.p) +
  625. modification.i +
  626. content.slice(modification.p)
  627. } else if (modification.d != null) {
  628. if (
  629. content.slice(
  630. modification.p,
  631. modification.p + modification.d.length
  632. ) !== modification.d
  633. ) {
  634. throw new Error('deletion does not match text in document')
  635. }
  636. content =
  637. content.slice(0, modification.p) +
  638. content.slice(modification.p + modification.d.length)
  639. }
  640. }
  641. return content
  642. }
  643. _scanAndMergeAdjacentUpdates() {
  644. // This should only need calling when deleting an update between two
  645. // other updates. There's no other way to get two adjacent updates from the
  646. // same user, since they would be merged on insert.
  647. let previousChange = null
  648. const removeChanges = []
  649. const movedChanges = []
  650. for (const change of this.changes) {
  651. if (previousChange?.op.i != null && change.op.i != null) {
  652. const previousChangeEnd =
  653. previousChange.op.p + previousChange.op.i.length
  654. const previousChangeUserId = previousChange.metadata.user_id
  655. const changeStart = change.op.p
  656. const changeUserId = change.metadata.user_id
  657. if (
  658. previousChangeEnd === changeStart &&
  659. previousChangeUserId === changeUserId
  660. ) {
  661. removeChanges.push(change)
  662. previousChange.op.i += change.op.i
  663. movedChanges.push(previousChange)
  664. }
  665. } else if (
  666. previousChange?.op.d != null &&
  667. change.op.d != null &&
  668. previousChange?.op.p === change.op.p
  669. ) {
  670. // Merge adjacent deletes
  671. previousChange.op.d += change.op.d
  672. removeChanges.push(change)
  673. movedChanges.push(previousChange)
  674. } else {
  675. // Only update to the current change if we haven't removed it.
  676. previousChange = change
  677. }
  678. }
  679. return { movedChanges, removeChanges }
  680. }
  681. resetDirtyState() {
  682. this._dirtyState = {
  683. comment: {
  684. moved: {},
  685. removed: {},
  686. added: {},
  687. },
  688. change: {
  689. moved: {},
  690. removed: {},
  691. added: {},
  692. },
  693. }
  694. }
  695. getDirtyState() {
  696. return this._dirtyState
  697. }
  698. getTrackedDeletesLength() {
  699. let length = 0
  700. for (const change of this.changes) {
  701. if (change.op.d != null) {
  702. length += change.op.d.length
  703. }
  704. }
  705. return length
  706. }
  707. _markAsDirty(object, type, action) {
  708. this._dirtyState[type][action][object.id] = object
  709. }
  710. _clone(object) {
  711. const clone = {}
  712. for (const k in object) {
  713. const v = object[k]
  714. clone[k] = v
  715. }
  716. return clone
  717. }
  718. }
  719. module.exports = RangesTracker