index.cjs 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808
  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. this.removeChangeIds([changeId])
  138. }
  139. removeChangeIds(ids) {
  140. if (ids == null || ids.length === 0) {
  141. return
  142. }
  143. const idSet = new Set(ids)
  144. const remainingChanges = []
  145. for (const change of this.changes) {
  146. if (idSet.has(change.id)) {
  147. this._markAsDirty(change, 'change', 'removed')
  148. } else {
  149. remainingChanges.push(change)
  150. }
  151. }
  152. this.changes = remainingChanges
  153. }
  154. validate(text) {
  155. let content
  156. for (const change of this.changes) {
  157. if (change.op.i != null) {
  158. content = text.slice(change.op.p, change.op.p + change.op.i.length)
  159. if (content !== change.op.i) {
  160. throw new Error('insertion does not match text in document')
  161. }
  162. }
  163. }
  164. for (const comment of this.comments) {
  165. content = text.slice(comment.op.p, comment.op.p + comment.op.c.length)
  166. if (content !== comment.op.c) {
  167. throw new Error('comment does not match text in document')
  168. }
  169. }
  170. }
  171. applyOp(op, metadata) {
  172. if (metadata == null) {
  173. metadata = {}
  174. }
  175. if (metadata.ts == null) {
  176. metadata.ts = new Date()
  177. }
  178. // Apply an op that has been applied to the document to our changes to keep them up to date
  179. if (op.i != null) {
  180. this.applyInsertToChanges(op, metadata)
  181. this.applyInsertToComments(op)
  182. } else if (op.d != null) {
  183. this.applyDeleteToChanges(op, metadata)
  184. this.applyDeleteToComments(op)
  185. } else if (op.c != null) {
  186. this.addComment(op, metadata)
  187. } else {
  188. throw new Error('unknown op type')
  189. }
  190. }
  191. applyOps(ops, metadata) {
  192. if (metadata == null) {
  193. metadata = {}
  194. }
  195. for (const op of ops) {
  196. this.applyOp(op, metadata)
  197. }
  198. }
  199. addComment(op, metadata) {
  200. const existing = this.getComment(op.t)
  201. if (existing != null) {
  202. this.moveCommentId(op.t, op.p, op.c)
  203. } else {
  204. let comment
  205. this.comments.push(
  206. (comment = {
  207. id: op.t || this.newId(),
  208. op: {
  209. // Copy because we'll modify in place
  210. c: op.c,
  211. p: op.p,
  212. t: op.t,
  213. },
  214. metadata,
  215. })
  216. )
  217. this._markAsDirty(comment, 'comment', 'added')
  218. }
  219. }
  220. applyInsertToComments(op) {
  221. for (const comment of this.comments) {
  222. if (op.p <= comment.op.p) {
  223. comment.op.p += op.i.length
  224. this._markAsDirty(comment, 'comment', 'moved')
  225. } else if (op.p < comment.op.p + comment.op.c.length) {
  226. const offset = op.p - comment.op.p
  227. comment.op.c =
  228. comment.op.c.slice(0, +(offset - 1) + 1 || undefined) +
  229. op.i +
  230. comment.op.c.slice(offset)
  231. this._markAsDirty(comment, 'comment', 'moved')
  232. }
  233. }
  234. }
  235. applyDeleteToComments(op) {
  236. const opStart = op.p
  237. const opLength = op.d.length
  238. const opEnd = op.p + opLength
  239. for (const comment of this.comments) {
  240. const commentStart = comment.op.p
  241. const commentEnd = comment.op.p + comment.op.c.length
  242. const commentLength = commentEnd - commentStart
  243. if (opEnd <= commentStart) {
  244. // delete is fully before comment
  245. comment.op.p -= opLength
  246. this._markAsDirty(comment, 'comment', 'moved')
  247. } else if (opStart >= commentEnd) {
  248. // delete is fully after comment, nothing to do
  249. } else {
  250. // delete and comment overlap
  251. let remainingAfter, remainingBefore
  252. if (opStart <= commentStart) {
  253. remainingBefore = ''
  254. } else {
  255. remainingBefore = comment.op.c.slice(0, opStart - commentStart)
  256. }
  257. if (opEnd >= commentEnd) {
  258. remainingAfter = ''
  259. } else {
  260. remainingAfter = comment.op.c.slice(opEnd - commentStart)
  261. }
  262. // Check deleted content matches delete op
  263. const deletedComment = comment.op.c.slice(
  264. remainingBefore.length,
  265. commentLength - remainingAfter.length
  266. )
  267. const offset = Math.max(0, commentStart - opStart)
  268. const deletedOpContent = op.d
  269. .slice(offset)
  270. .slice(0, deletedComment.length)
  271. if (deletedComment !== deletedOpContent) {
  272. throw new Error('deleted content does not match comment content')
  273. }
  274. comment.op.p = Math.min(commentStart, opStart)
  275. comment.op.c = remainingBefore + remainingAfter
  276. this._markAsDirty(comment, 'comment', 'moved')
  277. }
  278. }
  279. }
  280. applyInsertToChanges(op, metadata) {
  281. let change
  282. const opStart = op.p
  283. const opLength = op.i.length
  284. const opEnd = op.p + opLength
  285. const undoing = !!op.u
  286. let alreadyMerged = false
  287. let previousChange = null
  288. const movedChanges = []
  289. const removeChanges = []
  290. const newChanges = []
  291. const trackedDeletesAtOpPosition = []
  292. for (let i = 0; i < this.changes.length; i++) {
  293. change = this.changes[i]
  294. const changeStart = change.op.p
  295. if (change.op.d != null) {
  296. // Shift any deletes after this along by the length of this insert
  297. if (opStart < changeStart) {
  298. change.op.p += opLength
  299. movedChanges.push(change)
  300. } else if (opStart === changeStart) {
  301. if (
  302. !alreadyMerged &&
  303. undoing &&
  304. change.op.d.length >= op.i.length &&
  305. change.op.d.slice(0, op.i.length) === op.i
  306. ) {
  307. // If we are undoing, then we want to reject any existing tracked delete if we can.
  308. // Check if the insert matches the start of the delete, and just
  309. // remove it from the delete instead if so.
  310. change.op.d = change.op.d.slice(op.i.length)
  311. change.op.p += op.i.length
  312. if (change.op.d === '') {
  313. removeChanges.push(change)
  314. } else {
  315. movedChanges.push(change)
  316. }
  317. alreadyMerged = true
  318. // Any tracked delete that came before this tracked delete
  319. // rejection was moved after the incoming insert. Move them back
  320. // so that they appear before the tracked delete rejection.
  321. for (const trackedDelete of trackedDeletesAtOpPosition) {
  322. trackedDelete.op.p -= opLength
  323. }
  324. } else {
  325. // We're not rejecting that tracked delete. Move it after the
  326. // insert.
  327. change.op.p += opLength
  328. movedChanges.push(change)
  329. // Keep track of tracked deletes that are at the same position as the
  330. // insert. If we find a tracked delete to reject, we'll want to
  331. // reposition them.
  332. if (!alreadyMerged) {
  333. trackedDeletesAtOpPosition.push(change)
  334. }
  335. }
  336. }
  337. } else if (change.op.i != null) {
  338. let offset
  339. const changeEnd = changeStart + change.op.i.length
  340. const isChangeOverlapping =
  341. opStart >= changeStart && opStart <= changeEnd
  342. // Only merge inserts if they are from the same user
  343. const isSameUser = metadata.user_id === change.metadata.user_id
  344. // If we are undoing, then our changes will be removed from any delete ops just after. In that case, if there is also
  345. // an insert op just before, then we shouldn't append it to this insert, but instead only cancel the following delete.
  346. // E.g.
  347. // foo|<--- about to insert 'b' here
  348. // inserted 'foo' --^ ^-- deleted 'bar'
  349. // should become just 'foo' not 'foob' (with the delete marker becoming just 'ar'), .
  350. const nextChange = this.changes[i + 1]
  351. const isOpAdjacentToNextDelete =
  352. nextChange != null &&
  353. nextChange.op.d != null &&
  354. op.p === changeEnd &&
  355. nextChange.op.p === op.p
  356. const willOpCancelNextDelete =
  357. undoing &&
  358. isOpAdjacentToNextDelete &&
  359. nextChange.op.d.slice(0, op.i.length) === op.i
  360. // If there is a delete at the start of the insert, and we're inserting
  361. // at the start, we SHOULDN'T merge since the delete acts as a partition.
  362. // The previous op will be the delete, but it's already been shifted by this insert
  363. //
  364. // I.e.
  365. // Originally: |-- existing insert --|
  366. // | <- existing delete at same offset
  367. //
  368. // Now: |-- existing insert --| <- not shifted yet
  369. // |-- this insert --|| <- existing delete shifted along to end of this op
  370. //
  371. // After: |-- existing insert --|
  372. // |-- this insert --|| <- existing delete
  373. //
  374. // Without the delete, the inserts would be merged.
  375. const isInsertBlockedByDelete =
  376. previousChange != null &&
  377. previousChange.op.d != null &&
  378. previousChange.op.p === opEnd
  379. // If the insert is overlapping another insert, either at the beginning in the middle or touching the end,
  380. // then we merge them into one.
  381. if (
  382. this.track_changes &&
  383. isChangeOverlapping &&
  384. !isInsertBlockedByDelete &&
  385. !alreadyMerged &&
  386. !willOpCancelNextDelete &&
  387. isSameUser
  388. ) {
  389. offset = opStart - changeStart
  390. change.op.i =
  391. change.op.i.slice(0, offset) + op.i + change.op.i.slice(offset)
  392. change.metadata.ts = pickTimestamp(change.metadata, metadata)
  393. alreadyMerged = true
  394. movedChanges.push(change)
  395. } else if (opStart <= changeStart) {
  396. // If we're fully before the other insert we can just shift the other insert by our length.
  397. // If they are touching, and should have been merged, they will have been above.
  398. // 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
  399. change.op.p += opLength
  400. movedChanges.push(change)
  401. } else if (
  402. (!isSameUser || !this.track_changes) &&
  403. changeStart < opStart &&
  404. opStart < changeEnd
  405. ) {
  406. // This user is inserting inside a change by another user, so we need to split the
  407. // other user's change into one before and after this one.
  408. offset = opStart - changeStart
  409. const beforeContent = change.op.i.slice(0, offset)
  410. const afterContent = change.op.i.slice(offset)
  411. // The existing change can become the 'before' change
  412. change.op.i = beforeContent
  413. movedChanges.push(change)
  414. // Create a new op afterwards
  415. const afterChange = {
  416. op: {
  417. i: afterContent,
  418. p: changeStart + offset + opLength,
  419. },
  420. metadata: {},
  421. }
  422. for (const key in change.metadata) {
  423. const value = change.metadata[key]
  424. afterChange.metadata[key] = value
  425. }
  426. newChanges.push(afterChange)
  427. }
  428. }
  429. previousChange = change
  430. }
  431. if (this.track_changes && !alreadyMerged) {
  432. this._addOp(op, metadata)
  433. }
  434. for ({ op, metadata } of newChanges) {
  435. this._addOp(op, metadata)
  436. }
  437. for (change of removeChanges) {
  438. this._removeChange(change)
  439. }
  440. for (change of movedChanges) {
  441. this._markAsDirty(change, 'change', 'moved')
  442. }
  443. }
  444. applyDeleteToChanges(op, metadata) {
  445. const opStart = op.p
  446. const opLength = op.d.length
  447. const opEnd = op.p + opLength
  448. const removeChanges = []
  449. let movedChanges = []
  450. // We might end up modifying our delete op if it merges with existing deletes, or cancels out
  451. // with an existing insert. Since we might do multiple modifications, we record them and do
  452. // all the modifications after looping through the existing changes, so as not to mess up the
  453. // offset indexes as we go.
  454. const opModifications = []
  455. for (const change of this.changes) {
  456. let changeStart
  457. if (change.op.i != null) {
  458. changeStart = change.op.p
  459. const changeEnd = changeStart + change.op.i.length
  460. if (opEnd <= changeStart) {
  461. // Shift ops after us back by our length
  462. change.op.p -= opLength
  463. movedChanges.push(change)
  464. } else if (opStart >= changeEnd) {
  465. // Delete is after insert, nothing to do
  466. } else {
  467. // When the new delete overlaps an insert, we should remove the part of the insert that
  468. // is now deleted, and also remove the part of the new delete that overlapped. I.e.
  469. // the two cancel out where they overlap.
  470. let deleteRemainingAfter,
  471. deleteRemainingBefore,
  472. insertRemainingAfter,
  473. insertRemainingBefore
  474. if (opStart >= changeStart) {
  475. // |-- existing insert --|
  476. // insertRemainingBefore -> |.....||-- new delete --|
  477. deleteRemainingBefore = ''
  478. insertRemainingBefore = change.op.i.slice(0, opStart - changeStart)
  479. } else {
  480. // deleteRemainingBefore -> |.....||-- existing insert --|
  481. // |-- new delete --|
  482. deleteRemainingBefore = op.d.slice(0, changeStart - opStart)
  483. insertRemainingBefore = ''
  484. }
  485. if (opEnd <= changeEnd) {
  486. // |-- existing insert --|
  487. // |-- new delete --||.....| <- insertRemainingAfter
  488. deleteRemainingAfter = ''
  489. insertRemainingAfter = change.op.i.slice(opEnd - changeStart)
  490. } else {
  491. // |-- existing insert --||.....| <- deleteRemainingAfter
  492. // |-- new delete --|
  493. deleteRemainingAfter = op.d.slice(changeEnd - opStart)
  494. insertRemainingAfter = ''
  495. }
  496. const insertRemaining = insertRemainingBefore + insertRemainingAfter
  497. if (insertRemaining.length > 0) {
  498. change.op.i = insertRemaining
  499. change.op.p = Math.min(changeStart, opStart)
  500. movedChanges.push(change)
  501. } else {
  502. removeChanges.push(change)
  503. }
  504. // We know what we want to preserve of our delete op before (deleteRemainingBefore) and what we want to preserve
  505. // afterwards (deleteRemainingBefore). Now we need to turn that into a modification which deletes the
  506. // chunk in the middle not covered by these.
  507. const deleteRemovedLength =
  508. op.d.length -
  509. deleteRemainingBefore.length -
  510. deleteRemainingAfter.length
  511. const deleteRemovedStart = deleteRemainingBefore.length
  512. const modification = {
  513. d: op.d.slice(
  514. deleteRemovedStart,
  515. deleteRemovedStart + deleteRemovedLength
  516. ),
  517. p: deleteRemovedStart,
  518. }
  519. if (modification.d.length > 0) {
  520. opModifications.push(modification)
  521. }
  522. }
  523. } else if (change.op.d != null) {
  524. changeStart = change.op.p
  525. if (
  526. opEnd < changeStart ||
  527. (!this.track_changes && opEnd === changeStart)
  528. ) {
  529. // Shift ops after us back by our length.
  530. // If we're tracking changes, it must be strictly before, since we'll merge
  531. // below if they are touching. Otherwise, touching is fine.
  532. change.op.p -= opLength
  533. movedChanges.push(change)
  534. } else if (opStart <= changeStart && changeStart <= opEnd) {
  535. if (this.track_changes) {
  536. // If we overlap a delete, add it in our content, and delete the existing change.
  537. // It's easier to do it this way, rather than modifying the existing delete in case
  538. // we overlap many deletes and we'd need to track that. We have a workaround to
  539. // update the delete in place if possible below.
  540. const offset = changeStart - opStart
  541. opModifications.push({ i: change.op.d, p: offset })
  542. removeChanges.push(change)
  543. } else {
  544. change.op.p = opStart
  545. movedChanges.push(change)
  546. }
  547. }
  548. }
  549. }
  550. // Copy rather than modify because we still need to apply it to comments
  551. op = {
  552. p: op.p,
  553. d: this._applyOpModifications(op.d, opModifications),
  554. }
  555. for (const change of removeChanges) {
  556. // This is a bit of hack to avoid removing one delete and replacing it with another.
  557. // If we don't do this, it causes the UI to flicker
  558. if (
  559. op.d.length > 0 &&
  560. change.op.d != null &&
  561. op.p <= change.op.p &&
  562. change.op.p <= op.p + op.d.length
  563. ) {
  564. change.op.p = op.p
  565. change.op.d = op.d
  566. change.metadata = metadata
  567. movedChanges.push(change)
  568. op.d = '' // stop it being added
  569. } else {
  570. this._removeChange(change)
  571. }
  572. }
  573. if (this.track_changes && op.d.length > 0) {
  574. this._addOp(op, metadata)
  575. } else {
  576. // It's possible that we deleted an insert between two other inserts. I.e.
  577. // If we delete 'user_2 insert' in:
  578. // |-- user_1 insert --||-- user_2 insert --||-- user_1 insert --|
  579. // it becomes:
  580. // |-- user_1 insert --||-- user_1 insert --|
  581. // We need to merge these together again
  582. const results = this._scanAndMergeAdjacentUpdates()
  583. movedChanges = movedChanges.concat(results.movedChanges)
  584. for (const change of results.removeChanges) {
  585. this._removeChange(change)
  586. movedChanges = movedChanges.filter(c => c !== change)
  587. }
  588. }
  589. for (const change of movedChanges) {
  590. this._markAsDirty(change, 'change', 'moved')
  591. }
  592. }
  593. _addOp(op, metadata) {
  594. // Don't take a reference to the existing op since we'll modify this in place with future changes
  595. op = this._clone(op)
  596. const change = {
  597. id: this.newId(),
  598. op,
  599. metadata: this._clone(metadata),
  600. }
  601. this.changes.push(change)
  602. // Keep ops in order of offset, with deletes before inserts
  603. this.changes.sort(function (c1, c2) {
  604. const result = c1.op.p - c2.op.p
  605. if (result !== 0) {
  606. return result
  607. } else if (c1.op.i != null && c2.op.d != null) {
  608. return 1
  609. } else if (c1.op.d != null && c2.op.i != null) {
  610. return -1
  611. } else {
  612. return 0
  613. }
  614. })
  615. this._markAsDirty(change, 'change', 'added')
  616. }
  617. _removeChange(change) {
  618. this.changes = this.changes.filter(c => c !== change)
  619. this._markAsDirty(change, 'change', 'removed')
  620. }
  621. _applyOpModifications(content, opModifications) {
  622. // Put in descending position order, with deleting first if at the same offset
  623. // (Inserting first would modify the content that the delete will delete)
  624. opModifications.sort(function (a, b) {
  625. const result = b.p - a.p
  626. if (result !== 0) {
  627. return result
  628. } else if (a.i != null && b.d != null) {
  629. return 1
  630. } else if (a.d != null && b.i != null) {
  631. return -1
  632. } else {
  633. return 0
  634. }
  635. })
  636. for (const modification of opModifications) {
  637. if (modification.i != null) {
  638. content =
  639. content.slice(0, modification.p) +
  640. modification.i +
  641. content.slice(modification.p)
  642. } else if (modification.d != null) {
  643. if (
  644. content.slice(
  645. modification.p,
  646. modification.p + modification.d.length
  647. ) !== modification.d
  648. ) {
  649. throw new Error('deletion does not match text in document')
  650. }
  651. content =
  652. content.slice(0, modification.p) +
  653. content.slice(modification.p + modification.d.length)
  654. }
  655. }
  656. return content
  657. }
  658. _scanAndMergeAdjacentUpdates() {
  659. // This should only need calling when deleting an update between two
  660. // other updates. There's no other way to get two adjacent updates from the
  661. // same user, since they would be merged on insert.
  662. let previousChange = null
  663. const removeChanges = []
  664. const movedChanges = []
  665. for (const change of this.changes) {
  666. if (previousChange?.op.i != null && change.op.i != null) {
  667. const previousChangeEnd =
  668. previousChange.op.p + previousChange.op.i.length
  669. const previousChangeUserId = previousChange.metadata.user_id
  670. const changeStart = change.op.p
  671. const changeUserId = change.metadata.user_id
  672. if (
  673. previousChangeEnd === changeStart &&
  674. previousChangeUserId === changeUserId
  675. ) {
  676. removeChanges.push(change)
  677. previousChange.op.i += change.op.i
  678. previousChange.metadata.ts = pickTimestamp(
  679. previousChange.metadata,
  680. change.metadata
  681. )
  682. movedChanges.push(previousChange)
  683. }
  684. } else if (
  685. previousChange?.op.d != null &&
  686. change.op.d != null &&
  687. previousChange?.op.p === change.op.p
  688. ) {
  689. // Merge adjacent deletes
  690. previousChange.op.d += change.op.d
  691. removeChanges.push(change)
  692. movedChanges.push(previousChange)
  693. } else {
  694. // Only update to the current change if we haven't removed it.
  695. previousChange = change
  696. }
  697. }
  698. return { movedChanges, removeChanges }
  699. }
  700. resetDirtyState() {
  701. this._dirtyState = {
  702. comment: {
  703. moved: {},
  704. removed: {},
  705. added: {},
  706. },
  707. change: {
  708. moved: {},
  709. removed: {},
  710. added: {},
  711. },
  712. }
  713. }
  714. getDirtyState() {
  715. return this._dirtyState
  716. }
  717. getTrackedDeletesLength() {
  718. let length = 0
  719. for (const change of this.changes) {
  720. if (change.op.d != null) {
  721. length += change.op.d.length
  722. }
  723. }
  724. return length
  725. }
  726. _markAsDirty(object, type, action) {
  727. this._dirtyState[type][action][object.id] = object
  728. }
  729. _clone(object) {
  730. const clone = {}
  731. for (const k in object) {
  732. const v = object[k]
  733. clone[k] = v
  734. }
  735. return clone
  736. }
  737. }
  738. function pickTimestamp(oldMetadata, newMetadata) {
  739. // Make sure null values don't get treated as 1970-01-01 dates in the
  740. // comparison below.
  741. if (oldMetadata.ts == null) return newMetadata.ts
  742. if (newMetadata.ts == null) return oldMetadata.ts
  743. return new Date(oldMetadata.ts) < new Date(newMetadata.ts)
  744. ? oldMetadata.ts
  745. : newMetadata.ts
  746. }
  747. module.exports = RangesTracker