@unwanted/matrix-sdk-mini 34.12.0-7 → 34.12.0-9

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.
Files changed (64) hide show
  1. package/git-revision.txt +1 -1
  2. package/lib/autodiscovery.js +3 -3
  3. package/lib/autodiscovery.js.map +1 -1
  4. package/lib/client.d.ts.map +1 -1
  5. package/lib/client.js +21 -21
  6. package/lib/client.js.map +1 -1
  7. package/lib/content-repo.js +2 -2
  8. package/lib/content-repo.js.map +1 -1
  9. package/lib/embedded.d.ts.map +1 -1
  10. package/lib/embedded.js +35 -2
  11. package/lib/embedded.js.map +1 -1
  12. package/lib/http-api/prefix.d.ts +6 -7
  13. package/lib/http-api/prefix.d.ts.map +1 -1
  14. package/lib/http-api/prefix.js +6 -7
  15. package/lib/http-api/prefix.js.map +1 -1
  16. package/lib/models/event-timeline-set.d.ts +6 -10
  17. package/lib/models/event-timeline-set.d.ts.map +1 -1
  18. package/lib/models/event-timeline-set.js +28 -36
  19. package/lib/models/event-timeline-set.js.map +1 -1
  20. package/lib/models/event-timeline.d.ts +7 -2
  21. package/lib/models/event-timeline.d.ts.map +1 -1
  22. package/lib/models/event-timeline.js +8 -9
  23. package/lib/models/event-timeline.js.map +1 -1
  24. package/lib/models/event.d.ts.map +1 -1
  25. package/lib/models/event.js +1 -1
  26. package/lib/models/event.js.map +1 -1
  27. package/lib/models/room-state.d.ts +2 -13
  28. package/lib/models/room-state.d.ts.map +1 -1
  29. package/lib/models/room-state.js +2 -30
  30. package/lib/models/room-state.js.map +1 -1
  31. package/lib/models/room.d.ts +2 -2
  32. package/lib/models/room.d.ts.map +1 -1
  33. package/lib/models/room.js +27 -14
  34. package/lib/models/room.js.map +1 -1
  35. package/lib/models/thread.d.ts.map +1 -1
  36. package/lib/models/thread.js +5 -3
  37. package/lib/models/thread.js.map +1 -1
  38. package/lib/sliding-sync-sdk.d.ts +1 -1
  39. package/lib/sliding-sync-sdk.d.ts.map +1 -1
  40. package/lib/sliding-sync-sdk.js +15 -13
  41. package/lib/sliding-sync-sdk.js.map +1 -1
  42. package/lib/sync-accumulator.d.ts +6 -4
  43. package/lib/sync-accumulator.d.ts.map +1 -1
  44. package/lib/sync-accumulator.js +23 -12
  45. package/lib/sync-accumulator.js.map +1 -1
  46. package/lib/sync.d.ts +10 -1
  47. package/lib/sync.d.ts.map +1 -1
  48. package/lib/sync.js +95 -44
  49. package/lib/sync.js.map +1 -1
  50. package/package.json +7 -7
  51. package/src/autodiscovery.ts +3 -3
  52. package/src/client.ts +20 -21
  53. package/src/content-repo.ts +2 -2
  54. package/src/embedded.ts +35 -2
  55. package/src/http-api/prefix.ts +6 -8
  56. package/src/models/event-timeline-set.ts +17 -38
  57. package/src/models/event-timeline.ts +10 -5
  58. package/src/models/event.ts +3 -1
  59. package/src/models/room-state.ts +2 -29
  60. package/src/models/room.ts +18 -6
  61. package/src/models/thread.ts +4 -2
  62. package/src/sliding-sync-sdk.ts +8 -11
  63. package/src/sync-accumulator.ts +33 -16
  64. package/src/sync.ts +113 -47
@@ -288,7 +288,7 @@ export class EventTimelineSet extends TypedEventEmitter {
288
288
  * Fires {@link RoomEvent.Timeline}
289
289
  *
290
290
  */
291
- addEventsToTimeline(events, toStartOfTimeline, timeline, paginationToken) {
291
+ addEventsToTimeline(events, toStartOfTimeline, addToState, timeline, paginationToken) {
292
292
  if (!timeline) {
293
293
  throw new Error("'timeline' not specified for EventTimelineSet.addEventsToTimeline");
294
294
  }
@@ -375,13 +375,14 @@ export class EventTimelineSet extends TypedEventEmitter {
375
375
 
376
376
  var didUpdate = false;
377
377
  var lastEventWasNew = false;
378
- for (var _event of events) {
379
- var eventId = _event.getId();
378
+ for (var event of events) {
379
+ var eventId = event.getId();
380
380
  var existingTimeline = this._eventIdToTimeline.get(eventId);
381
381
  if (!existingTimeline) {
382
382
  // we don't know about this event yet. Just add it to the timeline.
383
- this.addEventToTimeline(_event, timeline, {
384
- toStartOfTimeline
383
+ this.addEventToTimeline(event, timeline, {
384
+ toStartOfTimeline,
385
+ addToState
385
386
  });
386
387
  lastEventWasNew = true;
387
388
  didUpdate = true;
@@ -459,13 +460,14 @@ export class EventTimelineSet extends TypedEventEmitter {
459
460
  * @param event - Event to be added
460
461
  * @param options - addLiveEvent options
461
462
  */
462
- addLiveEvent(event) {
463
+ addLiveEvent(event, _ref) {
463
464
  var {
464
465
  duplicateStrategy,
465
466
  fromCache,
466
467
  roomState,
467
- timelineWasEmpty
468
- } = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
468
+ timelineWasEmpty,
469
+ addToState
470
+ } = _ref;
469
471
  if (this.filter) {
470
472
  var events = this.filter.filterRoomTimeline([event]);
471
473
  if (!events.length) {
@@ -499,7 +501,8 @@ export class EventTimelineSet extends TypedEventEmitter {
499
501
  toStartOfTimeline: false,
500
502
  fromCache,
501
503
  roomState,
502
- timelineWasEmpty
504
+ timelineWasEmpty,
505
+ addToState
503
506
  });
504
507
  }
505
508
 
@@ -516,28 +519,14 @@ export class EventTimelineSet extends TypedEventEmitter {
516
519
  * @remarks
517
520
  * Fires {@link RoomEvent.Timeline}
518
521
  */
519
-
520
- /**
521
- * @deprecated In favor of the overload with `IAddEventToTimelineOptions`
522
- */
523
-
524
- addEventToTimeline(event, timeline, toStartOfTimelineOrOpts) {
525
- var fromCache = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
526
- var roomState = arguments.length > 4 ? arguments[4] : undefined;
527
- var toStartOfTimeline = !!toStartOfTimelineOrOpts;
528
- var timelineWasEmpty;
529
- if (typeof toStartOfTimelineOrOpts === "object") {
530
- ({
531
- toStartOfTimeline,
532
- fromCache = false,
533
- roomState,
534
- timelineWasEmpty
535
- } = toStartOfTimelineOrOpts);
536
- } else if (toStartOfTimelineOrOpts !== undefined) {
537
- // Deprecation warning
538
- // FIXME: Remove after 2023-06-01 (technical debt)
539
- logger.warn("Overload deprecated: " + "`EventTimelineSet.addEventToTimeline(event, timeline, toStartOfTimeline, fromCache?, roomState?)` " + "is deprecated in favor of the overload with " + "`EventTimelineSet.addEventToTimeline(event, timeline, IAddEventToTimelineOptions)`");
540
- }
522
+ addEventToTimeline(event, timeline, _ref2) {
523
+ var {
524
+ toStartOfTimeline,
525
+ fromCache = false,
526
+ roomState,
527
+ timelineWasEmpty,
528
+ addToState
529
+ } = _ref2;
541
530
  if (timeline.getTimelineSet() !== this) {
542
531
  var _this$thread;
543
532
  throw new Error("EventTimelineSet.addEventToTimeline: Timeline=".concat(timeline.toString(), " does not belong \" +\n \"in timelineSet(threadId=").concat((_this$thread = this.thread) === null || _this$thread === void 0 ? void 0 : _this$thread.id, ")"));
@@ -563,7 +552,8 @@ export class EventTimelineSet extends TypedEventEmitter {
563
552
  timeline.addEvent(event, {
564
553
  toStartOfTimeline,
565
554
  roomState,
566
- timelineWasEmpty
555
+ timelineWasEmpty,
556
+ addToState
567
557
  });
568
558
  this._eventIdToTimeline.set(eventId, timeline);
569
559
  var data = {
@@ -591,7 +581,7 @@ export class EventTimelineSet extends TypedEventEmitter {
591
581
  * @remarks
592
582
  * Fires {@link RoomEvent.Timeline}
593
583
  */
594
- insertEventIntoTimeline(event, timeline, roomState) {
584
+ insertEventIntoTimeline(event, timeline, roomState, addToState) {
595
585
  if (timeline.getTimelineSet() !== this) {
596
586
  var _this$thread3;
597
587
  throw new Error("EventTimelineSet.insertEventIntoTimeline: Timeline=".concat(timeline.toString(), " does not belong \" +\n \"in timelineSet(threadId=").concat((_this$thread3 = this.thread) === null || _this$thread3 === void 0 ? void 0 : _this$thread3.id, ")"));
@@ -623,7 +613,8 @@ export class EventTimelineSet extends TypedEventEmitter {
623
613
  toStartOfTimeline: false,
624
614
  fromCache: false,
625
615
  timelineWasEmpty: false,
626
- roomState
616
+ roomState,
617
+ addToState
627
618
  });
628
619
  return;
629
620
  }
@@ -644,7 +635,7 @@ export class EventTimelineSet extends TypedEventEmitter {
644
635
  // If we got to the end of the loop, insertIndex points at the end of
645
636
  // the list.
646
637
 
647
- timeline.insertEvent(event, insertIndex, roomState);
638
+ timeline.insertEvent(event, insertIndex, roomState, addToState);
648
639
  this._eventIdToTimeline.set(eventId, timeline);
649
640
  var data = {
650
641
  timeline: timeline,
@@ -675,7 +666,8 @@ export class EventTimelineSet extends TypedEventEmitter {
675
666
  this._eventIdToTimeline.set(newEventId, existingTimeline);
676
667
  } else if (!this.filter || this.filter.filterRoomTimeline([localEvent]).length) {
677
668
  this.addEventToTimeline(localEvent, this.liveTimeline, {
678
- toStartOfTimeline: false
669
+ toStartOfTimeline: false,
670
+ addToState: false
679
671
  });
680
672
  }
681
673
  }
@@ -1 +1 @@
1
- {"version":3,"file":"event-timeline-set.js","names":["EventTimeline","logger","RoomEvent","TypedEventEmitter","RelationsContainer","DEBUG","debuglog","log","bind","DuplicateStrategy","EventTimelineSet","constructor","room","_this$room$relations","_this$room","_room$client","opts","arguments","length","undefined","client","thread","threadListType","_defineProperty","Map","timelineSupport","Boolean","liveTimeline","displayPendingEvents","pendingEvents","timelines","_eventIdToTimeline","filter","relations","getTimelines","getFilter","setFilter","getPendingEvents","getLiveTimeline","setLiveTimeline","timeline","eventIdToTimeline","eventId","get","replaceEventId","oldEventId","newEventId","existingTimeline","delete","set","resetLiveTimeline","backPaginationToken","forwardPaginationToken","resetAllTimelines","oldTimeline","newTimeline","forkLive","FORWARDS","fork","push","setPaginationToken","BACKWARDS","emit","TimelineReset","getTimelineForEvent","res","findEventById","tl","getEvents","find","ev","getId","addTimeline","Error","addEventsToTimeline","events","toStartOfTimeline","paginationToken","filterRoomTimeline","direction","inverseDirection","didUpdate","lastEventWasNew","event","addEventToTimeline","neighbour","getNeighbouringTimeline","info","existingIsLive","timelineIsLive","backwardsIsLive","forwardsIsLive","warn","setNeighbouringTimeline","concat","addLiveEvent","duplicateStrategy","fromCache","roomState","timelineWasEmpty","Replace","tlEvents","j","getState","setEventMetadata","toStartOfTimelineOrOpts","getTimelineSet","_this$thread","toString","id","aggregateParentEvent","aggregateChildEvent","canContain","_this$thread2","eventDebugString","threadRootId","addEvent","data","liveEvent","Timeline","insertEventIntoTimeline","_this$thread3","_this$thread4","parentEventId","relationEventId","parentEvent","timelineEvents","parentIndex","indexOf","insertIndex","nextEvent","getTs","insertEvent","handleRemoteEcho","localEvent","removeEvent","removed","compareEventOrdering","eventId1","eventId2","timeline1","timeline2","idx1","idx2","idx","evId","difference","threadId","shouldLiveInRoom","shouldLiveInThread","eventShouldLiveIn","_this$room2","roomId"],"sources":["../../src/models/event-timeline-set.ts"],"sourcesContent":["/*\nCopyright 2016 - 2021 The Matrix.org Foundation C.I.C.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\n\nimport { EventTimeline, IAddEventOptions } from \"./event-timeline.ts\";\nimport { MatrixEvent } from \"./event.ts\";\nimport { logger } from \"../logger.ts\";\nimport { Room, RoomEvent } from \"./room.ts\";\nimport { Filter } from \"../filter.ts\";\nimport { RoomState } from \"./room-state.ts\";\nimport { TypedEventEmitter } from \"./typed-event-emitter.ts\";\nimport { RelationsContainer } from \"./relations-container.ts\";\nimport { MatrixClient } from \"../client.ts\";\nimport { Thread, ThreadFilterType } from \"./thread.ts\";\n\nconst DEBUG = true;\n\n/* istanbul ignore next */\nlet debuglog: (...args: any[]) => void;\nif (DEBUG) {\n // using bind means that we get to keep useful line numbers in the console\n debuglog = logger.log.bind(logger);\n} else {\n /* istanbul ignore next */\n debuglog = function (): void {};\n}\n\ninterface IOpts {\n // Set to true to enable improved timeline support.\n timelineSupport?: boolean;\n // The filter object, if any, for this timelineSet.\n filter?: Filter;\n pendingEvents?: boolean;\n}\n\nexport enum DuplicateStrategy {\n Ignore = \"ignore\",\n Replace = \"replace\",\n}\n\nexport interface IRoomTimelineData {\n // the timeline the event was added to/removed from\n timeline: EventTimeline;\n // true if the event was a real-time event added to the end of the live timeline\n liveEvent?: boolean;\n}\n\nexport interface IAddEventToTimelineOptions\n extends Pick<IAddEventOptions, \"toStartOfTimeline\" | \"roomState\" | \"timelineWasEmpty\"> {\n /** Whether the sync response came from cache */\n fromCache?: boolean;\n}\n\nexport interface IAddLiveEventOptions\n extends Pick<IAddEventToTimelineOptions, \"fromCache\" | \"roomState\" | \"timelineWasEmpty\"> {\n /** Applies to events in the timeline only. If this is 'replace' then if a\n * duplicate is encountered, the event passed to this function will replace\n * the existing event in the timeline. If this is not specified, or is\n * 'ignore', then the event passed to this function will be ignored\n * entirely, preserving the existing event in the timeline. Events are\n * identical based on their event ID <b>only</b>. */\n duplicateStrategy?: DuplicateStrategy;\n}\n\ntype EmittedEvents = RoomEvent.Timeline | RoomEvent.TimelineReset;\n\nexport type EventTimelineSetHandlerMap = {\n /**\n * Fires whenever the timeline in a room is updated.\n * @param event - The matrix event which caused this event to fire.\n * @param room - The room, if any, whose timeline was updated.\n * @param toStartOfTimeline - True if this event was added to the start\n * @param removed - True if this event has just been removed from the timeline\n * (beginning; oldest) of the timeline e.g. due to pagination.\n *\n * @param data - more data about the event\n *\n * @example\n * ```\n * matrixClient.on(\"Room.timeline\",\n * function(event, room, toStartOfTimeline, removed, data) {\n * if (!toStartOfTimeline && data.liveEvent) {\n * var messageToAppend = room.timeline.[room.timeline.length - 1];\n * }\n * });\n * ```\n */\n [RoomEvent.Timeline]: (\n event: MatrixEvent,\n room: Room | undefined,\n toStartOfTimeline: boolean | undefined,\n removed: boolean,\n data: IRoomTimelineData,\n ) => void;\n /**\n * Fires whenever the live timeline in a room is reset.\n *\n * When we get a 'limited' sync (for example, after a network outage), we reset\n * the live timeline to be empty before adding the recent events to the new\n * timeline. This event is fired after the timeline is reset, and before the\n * new events are added.\n *\n * @param room - The room whose live timeline was reset, if any\n * @param timelineSet - timelineSet room whose live timeline was reset\n * @param resetAllTimelines - True if all timelines were reset.\n */\n [RoomEvent.TimelineReset]: (\n room: Room | undefined,\n timelineSet: EventTimelineSet,\n resetAllTimelines: boolean,\n ) => void;\n};\n\nexport class EventTimelineSet extends TypedEventEmitter<EmittedEvents, EventTimelineSetHandlerMap> {\n public readonly relations: RelationsContainer;\n private readonly timelineSupport: boolean;\n private readonly displayPendingEvents: boolean;\n private liveTimeline: EventTimeline;\n private timelines: EventTimeline[];\n private _eventIdToTimeline = new Map<string, EventTimeline>();\n private filter?: Filter;\n\n /**\n * Construct a set of EventTimeline objects, typically on behalf of a given\n * room. A room may have multiple EventTimelineSets for different levels\n * of filtering. The global notification list is also an EventTimelineSet, but\n * lacks a room.\n *\n * <p>This is an ordered sequence of timelines, which may or may not\n * be continuous. Each timeline lists a series of events, as well as tracking\n * the room state at the start and the end of the timeline (if appropriate).\n * It also tracks forward and backward pagination tokens, as well as containing\n * links to the next timeline in the sequence.\n *\n * <p>There is one special timeline - the 'live' timeline, which represents the\n * timeline to which events are being added in real-time as they are received\n * from the /sync API. Note that you should not retain references to this\n * timeline - even if it is the current timeline right now, it may not remain\n * so if the server gives us a timeline gap in /sync.\n *\n * <p>In order that we can find events from their ids later, we also maintain a\n * map from event_id to timeline and index.\n *\n * @param room - Room for this timelineSet. May be null for non-room cases, such as the\n * notification timeline.\n * @param opts - Options inherited from Room.\n * @param client - the Matrix client which owns this EventTimelineSet,\n * can be omitted if room is specified.\n * @param thread - the thread to which this timeline set relates.\n * @param threadListType - the type of thread list represented, if any\n * (e.g., All threads or My threads)\n */\n public constructor(\n public readonly room: Room | undefined,\n opts: IOpts = {},\n client?: MatrixClient,\n public readonly thread?: Thread,\n public readonly threadListType: ThreadFilterType | null = null,\n ) {\n super();\n\n this.timelineSupport = Boolean(opts.timelineSupport);\n this.liveTimeline = new EventTimeline(this);\n this.displayPendingEvents = opts.pendingEvents !== false;\n\n // just a list - *not* ordered.\n this.timelines = [this.liveTimeline];\n this._eventIdToTimeline = new Map<string, EventTimeline>();\n\n this.filter = opts.filter;\n\n this.relations = this.room?.relations ?? new RelationsContainer(room?.client ?? client!);\n }\n\n /**\n * Get all the timelines in this set\n * @returns the timelines in this set\n */\n public getTimelines(): EventTimeline[] {\n return this.timelines;\n }\n\n /**\n * Get the filter object this timeline set is filtered on, if any\n * @returns the optional filter for this timelineSet\n */\n public getFilter(): Filter | undefined {\n return this.filter;\n }\n\n /**\n * Set the filter object this timeline set is filtered on\n * (passed to the server when paginating via /messages).\n * @param filter - the filter for this timelineSet\n */\n public setFilter(filter?: Filter): void {\n this.filter = filter;\n }\n\n /**\n * Get the list of pending sent events for this timelineSet's room, filtered\n * by the timelineSet's filter if appropriate.\n *\n * @returns A list of the sent events\n * waiting for remote echo.\n *\n * @throws If `opts.pendingEventOrdering` was not 'detached'\n */\n public getPendingEvents(): MatrixEvent[] {\n if (!this.room || !this.displayPendingEvents) {\n return [];\n }\n\n return this.room.getPendingEvents();\n }\n /**\n * Get the live timeline for this room.\n *\n * @returns live timeline\n */\n public getLiveTimeline(): EventTimeline {\n return this.liveTimeline;\n }\n\n /**\n * Set the live timeline for this room.\n *\n * @returns live timeline\n */\n public setLiveTimeline(timeline: EventTimeline): void {\n this.liveTimeline = timeline;\n }\n\n /**\n * Return the timeline (if any) this event is in.\n * @param eventId - the eventId being sought\n * @returns timeline\n */\n public eventIdToTimeline(eventId: string): EventTimeline | undefined {\n return this._eventIdToTimeline.get(eventId);\n }\n\n /**\n * Track a new event as if it were in the same timeline as an old event,\n * replacing it.\n * @param oldEventId - event ID of the original event\n * @param newEventId - event ID of the replacement event\n */\n public replaceEventId(oldEventId: string, newEventId: string): void {\n const existingTimeline = this._eventIdToTimeline.get(oldEventId);\n if (existingTimeline) {\n this._eventIdToTimeline.delete(oldEventId);\n this._eventIdToTimeline.set(newEventId, existingTimeline);\n }\n }\n\n /**\n * Reset the live timeline, and start a new one.\n *\n * <p>This is used when /sync returns a 'limited' timeline.\n *\n * @param backPaginationToken - token for back-paginating the new timeline\n * @param forwardPaginationToken - token for forward-paginating the old live timeline,\n * if absent or null, all timelines are reset.\n *\n * @remarks\n * Fires {@link RoomEvent.TimelineReset}\n */\n public resetLiveTimeline(backPaginationToken?: string, forwardPaginationToken?: string): void {\n // Each EventTimeline has RoomState objects tracking the state at the start\n // and end of that timeline. The copies at the end of the live timeline are\n // special because they will have listeners attached to monitor changes to\n // the current room state, so we move this RoomState from the end of the\n // current live timeline to the end of the new one and, if necessary,\n // replace it with a newly created one. We also make a copy for the start\n // of the new timeline.\n\n // if timeline support is disabled, forget about the old timelines\n const resetAllTimelines = !this.timelineSupport || !forwardPaginationToken;\n\n const oldTimeline = this.liveTimeline;\n const newTimeline = resetAllTimelines\n ? oldTimeline.forkLive(EventTimeline.FORWARDS)\n : oldTimeline.fork(EventTimeline.FORWARDS);\n\n if (resetAllTimelines) {\n this.timelines = [newTimeline];\n this._eventIdToTimeline = new Map<string, EventTimeline>();\n } else {\n this.timelines.push(newTimeline);\n }\n\n if (forwardPaginationToken) {\n // Now set the forward pagination token on the old live timeline\n // so it can be forward-paginated.\n oldTimeline.setPaginationToken(forwardPaginationToken, EventTimeline.FORWARDS);\n }\n\n // make sure we set the pagination token before firing timelineReset,\n // otherwise clients which start back-paginating will fail, and then get\n // stuck without realising that they *can* back-paginate.\n newTimeline.setPaginationToken(backPaginationToken ?? null, EventTimeline.BACKWARDS);\n\n // Now we can swap the live timeline to the new one.\n this.liveTimeline = newTimeline;\n this.emit(RoomEvent.TimelineReset, this.room, this, resetAllTimelines);\n }\n\n /**\n * Get the timeline which contains the given event, if any\n *\n * @param eventId - event ID to look for\n * @returns timeline containing\n * the given event, or null if unknown\n */\n public getTimelineForEvent(eventId?: string): EventTimeline | null {\n if (eventId === null || eventId === undefined) {\n return null;\n }\n const res = this._eventIdToTimeline.get(eventId);\n return res === undefined ? null : res;\n }\n\n /**\n * Get an event which is stored in our timelines\n *\n * @param eventId - event ID to look for\n * @returns the given event, or undefined if unknown\n */\n public findEventById(eventId: string): MatrixEvent | undefined {\n const tl = this.getTimelineForEvent(eventId);\n if (!tl) {\n return undefined;\n }\n return tl.getEvents().find(function (ev) {\n return ev.getId() == eventId;\n });\n }\n\n /**\n * Add a new timeline to this timeline list\n *\n * @returns newly-created timeline\n */\n public addTimeline(): EventTimeline {\n if (!this.timelineSupport) {\n throw new Error(\n \"timeline support is disabled. Set the 'timelineSupport'\" +\n \" parameter to true when creating MatrixClient to enable\" +\n \" it.\",\n );\n }\n\n const timeline = new EventTimeline(this);\n this.timelines.push(timeline);\n return timeline;\n }\n\n /**\n * Add events to a timeline\n *\n * <p>Will fire \"Room.timeline\" for each event added.\n *\n * @param events - A list of events to add.\n *\n * @param toStartOfTimeline - True to add these events to the start\n * (oldest) instead of the end (newest) of the timeline. If true, the oldest\n * event will be the <b>last</b> element of 'events'.\n *\n * @param timeline - timeline to\n * add events to.\n *\n * @param paginationToken - token for the next batch of events\n *\n * @remarks\n * Fires {@link RoomEvent.Timeline}\n *\n */\n public addEventsToTimeline(\n events: MatrixEvent[],\n toStartOfTimeline: boolean,\n timeline: EventTimeline,\n paginationToken?: string | null,\n ): void {\n if (!timeline) {\n throw new Error(\"'timeline' not specified for EventTimelineSet.addEventsToTimeline\");\n }\n\n if (!toStartOfTimeline && timeline == this.liveTimeline) {\n throw new Error(\n \"EventTimelineSet.addEventsToTimeline cannot be used for adding events to \" +\n \"the live timeline - use Room.addLiveEvents instead\",\n );\n }\n\n if (this.filter) {\n events = this.filter.filterRoomTimeline(events);\n if (!events.length) {\n return;\n }\n }\n\n const direction = toStartOfTimeline ? EventTimeline.BACKWARDS : EventTimeline.FORWARDS;\n const inverseDirection = toStartOfTimeline ? EventTimeline.FORWARDS : EventTimeline.BACKWARDS;\n\n // Adding events to timelines can be quite complicated. The following\n // illustrates some of the corner-cases.\n //\n // Let's say we start by knowing about four timelines. timeline3 and\n // timeline4 are neighbours:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M] [P] [S] <------> [T]\n //\n // Now we paginate timeline1, and get the following events from the server:\n // [M, N, P, R, S, T, U].\n //\n // 1. First, we ignore event M, since we already know about it.\n //\n // 2. Next, we append N to timeline 1.\n //\n // 3. Next, we don't add event P, since we already know about it,\n // but we do link together the timelines. We now have:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M, N] <---> [P] [S] <------> [T]\n //\n // 4. Now we add event R to timeline2:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M, N] <---> [P, R] [S] <------> [T]\n //\n // Note that we have switched the timeline we are working on from\n // timeline1 to timeline2.\n //\n // 5. We ignore event S, but again join the timelines:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M, N] <---> [P, R] <---> [S] <------> [T]\n //\n // 6. We ignore event T, and the timelines are already joined, so there\n // is nothing to do.\n //\n // 7. Finally, we add event U to timeline4:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M, N] <---> [P, R] <---> [S] <------> [T, U]\n //\n // The important thing to note in the above is what happened when we\n // already knew about a given event:\n //\n // - if it was appropriate, we joined up the timelines (steps 3, 5).\n // - in any case, we started adding further events to the timeline which\n // contained the event we knew about (steps 3, 5, 6).\n //\n //\n // So much for adding events to the timeline. But what do we want to do\n // with the pagination token?\n //\n // In the case above, we will be given a pagination token which tells us how to\n // get events beyond 'U' - in this case, it makes sense to store this\n // against timeline4. But what if timeline4 already had 'U' and beyond? in\n // that case, our best bet is to throw away the pagination token we were\n // given and stick with whatever token timeline4 had previously. In short,\n // we want to only store the pagination token if the last event we receive\n // is one we didn't previously know about.\n //\n // We make an exception for this if it turns out that we already knew about\n // *all* of the events, and we weren't able to join up any timelines. When\n // that happens, it means our existing pagination token is faulty, since it\n // is only telling us what we already know. Rather than repeatedly\n // paginating with the same token, we might as well use the new pagination\n // token in the hope that we eventually work our way out of the mess.\n\n let didUpdate = false;\n let lastEventWasNew = false;\n for (const event of events) {\n const eventId = event.getId()!;\n\n const existingTimeline = this._eventIdToTimeline.get(eventId);\n\n if (!existingTimeline) {\n // we don't know about this event yet. Just add it to the timeline.\n this.addEventToTimeline(event, timeline, {\n toStartOfTimeline,\n });\n lastEventWasNew = true;\n didUpdate = true;\n continue;\n }\n\n lastEventWasNew = false;\n\n if (existingTimeline == timeline) {\n debuglog(\"Event \" + eventId + \" already in timeline \" + timeline);\n continue;\n }\n\n const neighbour = timeline.getNeighbouringTimeline(direction);\n if (neighbour) {\n // this timeline already has a neighbour in the relevant direction;\n // let's assume the timelines are already correctly linked up, and\n // skip over to it.\n //\n // there's probably some edge-case here where we end up with an\n // event which is in a timeline a way down the chain, and there is\n // a break in the chain somewhere. But I can't really imagine how\n // that would happen, so I'm going to ignore it for now.\n //\n if (existingTimeline == neighbour) {\n debuglog(\"Event \" + eventId + \" in neighbouring timeline - \" + \"switching to \" + existingTimeline);\n } else {\n debuglog(\"Event \" + eventId + \" already in a different \" + \"timeline \" + existingTimeline);\n }\n timeline = existingTimeline;\n continue;\n }\n\n // time to join the timelines.\n logger.info(\n \"Already have timeline for \" + eventId + \" - joining timeline \" + timeline + \" to \" + existingTimeline,\n );\n\n // Variables to keep the line length limited below.\n const existingIsLive = existingTimeline === this.liveTimeline;\n const timelineIsLive = timeline === this.liveTimeline;\n\n const backwardsIsLive = direction === EventTimeline.BACKWARDS && existingIsLive;\n const forwardsIsLive = direction === EventTimeline.FORWARDS && timelineIsLive;\n\n if (backwardsIsLive || forwardsIsLive) {\n // The live timeline should never be spliced into a non-live position.\n // We use independent logging to better discover the problem at a glance.\n if (backwardsIsLive) {\n logger.warn(\n \"Refusing to set a preceding existingTimeLine on our \" +\n \"timeline as the existingTimeLine is live (\" +\n existingTimeline +\n \")\",\n );\n }\n if (forwardsIsLive) {\n logger.warn(\n \"Refusing to set our preceding timeline on a existingTimeLine \" +\n \"as our timeline is live (\" +\n timeline +\n \")\",\n );\n }\n continue; // abort splicing - try next event\n }\n\n timeline.setNeighbouringTimeline(existingTimeline, direction);\n existingTimeline.setNeighbouringTimeline(timeline, inverseDirection);\n\n timeline = existingTimeline;\n didUpdate = true;\n }\n\n // see above - if the last event was new to us, or if we didn't find any\n // new information, we update the pagination token for whatever\n // timeline we ended up on.\n if (lastEventWasNew || !didUpdate) {\n if (direction === EventTimeline.FORWARDS && timeline === this.liveTimeline) {\n logger.warn({ lastEventWasNew, didUpdate }); // for debugging\n logger.warn(\n `Refusing to set forwards pagination token of live timeline ` + `${timeline} to ${paginationToken}`,\n );\n return;\n }\n timeline.setPaginationToken(paginationToken ?? null, direction);\n }\n }\n\n /**\n * Add an event to the end of this live timeline.\n *\n * @param event - Event to be added\n * @param options - addLiveEvent options\n */\n public addLiveEvent(\n event: MatrixEvent,\n { duplicateStrategy, fromCache, roomState, timelineWasEmpty }: IAddLiveEventOptions = {},\n ): void {\n if (this.filter) {\n const events = this.filter.filterRoomTimeline([event]);\n if (!events.length) {\n return;\n }\n }\n\n const timeline = this._eventIdToTimeline.get(event.getId()!);\n if (timeline) {\n if (duplicateStrategy === DuplicateStrategy.Replace) {\n debuglog(\"EventTimelineSet.addLiveEvent: replacing duplicate event \" + event.getId());\n const tlEvents = timeline.getEvents();\n for (let j = 0; j < tlEvents.length; j++) {\n if (tlEvents[j].getId() === event.getId()) {\n // still need to set the right metadata on this event\n if (!roomState) {\n roomState = timeline.getState(EventTimeline.FORWARDS);\n }\n EventTimeline.setEventMetadata(event, roomState!, false);\n tlEvents[j] = event;\n\n // XXX: we need to fire an event when this happens.\n break;\n }\n }\n } else {\n debuglog(\"EventTimelineSet.addLiveEvent: ignoring duplicate event \" + event.getId());\n }\n return;\n }\n\n this.addEventToTimeline(event, this.liveTimeline, {\n toStartOfTimeline: false,\n fromCache,\n roomState,\n timelineWasEmpty,\n });\n }\n\n /**\n * Add event to the given timeline, and emit Room.timeline. Assumes\n * we have already checked we don't know about this event.\n *\n * Will fire \"Room.timeline\" for each event added.\n *\n * @param event - the event to add\n * @param timeline - the timeline onto which to add it\n * @param options - addEventToTimeline options\n *\n * @remarks\n * Fires {@link RoomEvent.Timeline}\n */\n public addEventToTimeline(\n event: MatrixEvent,\n timeline: EventTimeline,\n { toStartOfTimeline, fromCache, roomState, timelineWasEmpty }: IAddEventToTimelineOptions,\n ): void;\n /**\n * @deprecated In favor of the overload with `IAddEventToTimelineOptions`\n */\n public addEventToTimeline(\n event: MatrixEvent,\n timeline: EventTimeline,\n toStartOfTimeline: boolean,\n fromCache?: boolean,\n roomState?: RoomState,\n ): void;\n public addEventToTimeline(\n event: MatrixEvent,\n timeline: EventTimeline,\n toStartOfTimelineOrOpts: boolean | IAddEventToTimelineOptions,\n fromCache = false,\n roomState?: RoomState,\n ): void {\n let toStartOfTimeline = !!toStartOfTimelineOrOpts;\n let timelineWasEmpty: boolean | undefined;\n if (typeof toStartOfTimelineOrOpts === \"object\") {\n ({ toStartOfTimeline, fromCache = false, roomState, timelineWasEmpty } = toStartOfTimelineOrOpts);\n } else if (toStartOfTimelineOrOpts !== undefined) {\n // Deprecation warning\n // FIXME: Remove after 2023-06-01 (technical debt)\n logger.warn(\n \"Overload deprecated: \" +\n \"`EventTimelineSet.addEventToTimeline(event, timeline, toStartOfTimeline, fromCache?, roomState?)` \" +\n \"is deprecated in favor of the overload with \" +\n \"`EventTimelineSet.addEventToTimeline(event, timeline, IAddEventToTimelineOptions)`\",\n );\n }\n\n if (timeline.getTimelineSet() !== this) {\n throw new Error(`EventTimelineSet.addEventToTimeline: Timeline=${timeline.toString()} does not belong \" +\n \"in timelineSet(threadId=${this.thread?.id})`);\n }\n\n const eventId = event.getId()!;\n this.relations.aggregateParentEvent(event);\n this.relations.aggregateChildEvent(event, this);\n\n // Make sure events don't get mixed in timelines they shouldn't be in (e.g. a\n // threaded message should not be in the main timeline).\n //\n // We can only run this check for timelines with a `room` because `canContain`\n // requires it\n if (this.room && !this.canContain(event)) {\n let eventDebugString = `event=${eventId}`;\n if (event.threadRootId) {\n eventDebugString += `(belongs to thread=${event.threadRootId})`;\n }\n logger.warn(\n `EventTimelineSet.addEventToTimeline: Ignoring ${eventDebugString} that does not belong ` +\n `in timeline=${timeline.toString()} timelineSet(threadId=${this.thread?.id})`,\n );\n return;\n }\n\n timeline.addEvent(event, {\n toStartOfTimeline,\n roomState,\n timelineWasEmpty,\n });\n this._eventIdToTimeline.set(eventId, timeline);\n\n const data: IRoomTimelineData = {\n timeline: timeline,\n liveEvent: !toStartOfTimeline && timeline == this.liveTimeline && !fromCache,\n };\n this.emit(RoomEvent.Timeline, event, this.room, Boolean(toStartOfTimeline), false, data);\n }\n\n /**\n * Insert event to the given timeline, and emit Room.timeline. Assumes\n * we have already checked we don't know about this event.\n *\n * TEMPORARY: until we have recursive relations, we need this function\n * to exist to allow us to insert events in timeline order, which is our\n * best guess for Sync Order.\n * This is a copy of addEventToTimeline above, modified to insert the event\n * after the event it relates to, and before any event with a later\n * timestamp. This is our best guess at Sync Order.\n *\n * Will fire \"Room.timeline\" for each event added.\n *\n * @internal\n *\n * @remarks\n * Fires {@link RoomEvent.Timeline}\n */\n public insertEventIntoTimeline(event: MatrixEvent, timeline: EventTimeline, roomState: RoomState): void {\n if (timeline.getTimelineSet() !== this) {\n throw new Error(`EventTimelineSet.insertEventIntoTimeline: Timeline=${timeline.toString()} does not belong \" +\n \"in timelineSet(threadId=${this.thread?.id})`);\n }\n\n const eventId = event.getId()!;\n this.relations.aggregateParentEvent(event);\n this.relations.aggregateChildEvent(event, this);\n\n // Make sure events don't get mixed in timelines they shouldn't be in (e.g. a\n // threaded message should not be in the main timeline).\n //\n // We can only run this check for timelines with a `room` because `canContain`\n // requires it\n if (this.room && !this.canContain(event)) {\n let eventDebugString = `event=${eventId}`;\n if (event.threadRootId) {\n eventDebugString += `(belongs to thread=${event.threadRootId})`;\n }\n logger.warn(\n `EventTimelineSet.insertEventIntoTimeline: Ignoring ${eventDebugString} that does not belong ` +\n `in timeline=${timeline.toString()} timelineSet(threadId=${this.thread?.id})`,\n );\n return;\n }\n\n // Find the event that this event is related to - the \"parent\"\n const parentEventId = event.relationEventId;\n if (!parentEventId) {\n // Not related to anything - we just append\n this.addEventToTimeline(event, timeline, {\n toStartOfTimeline: false,\n fromCache: false,\n timelineWasEmpty: false,\n roomState,\n });\n return;\n }\n\n const parentEvent = this.findEventById(parentEventId);\n\n const timelineEvents = timeline.getEvents();\n\n // Start searching from the parent event, or if it's not loaded, start\n // at the beginning and insert purely using timestamp order.\n const parentIndex = parentEvent !== undefined ? timelineEvents.indexOf(parentEvent) : 0;\n let insertIndex = parentIndex;\n for (; insertIndex < timelineEvents.length; insertIndex++) {\n const nextEvent = timelineEvents[insertIndex];\n if (nextEvent.getTs() > event.getTs()) {\n // We found an event later than ours, so insert before that.\n break;\n }\n }\n // If we got to the end of the loop, insertIndex points at the end of\n // the list.\n\n timeline.insertEvent(event, insertIndex, roomState);\n this._eventIdToTimeline.set(eventId, timeline);\n\n const data: IRoomTimelineData = {\n timeline: timeline,\n // The purpose of this method is inserting events in the middle of the\n // timeline, so the events are, by definition, not live (whether or not\n // we're adding them to the live timeline).\n liveEvent: false,\n };\n this.emit(RoomEvent.Timeline, event, this.room, false, false, data);\n }\n\n /**\n * Replaces event with ID oldEventId with one with newEventId, if oldEventId is\n * recognised. Otherwise, add to the live timeline. Used to handle remote echos.\n *\n * @param localEvent - the new event to be added to the timeline\n * @param oldEventId - the ID of the original event\n * @param newEventId - the ID of the replacement event\n *\n * @remarks\n * Fires {@link RoomEvent.Timeline}\n */\n public handleRemoteEcho(localEvent: MatrixEvent, oldEventId: string, newEventId: string): void {\n // XXX: why don't we infer newEventId from localEvent?\n const existingTimeline = this._eventIdToTimeline.get(oldEventId);\n if (existingTimeline) {\n this._eventIdToTimeline.delete(oldEventId);\n this._eventIdToTimeline.set(newEventId, existingTimeline);\n } else if (!this.filter || this.filter.filterRoomTimeline([localEvent]).length) {\n this.addEventToTimeline(localEvent, this.liveTimeline, {\n toStartOfTimeline: false,\n });\n }\n }\n\n /**\n * Removes a single event from this room.\n *\n * @param eventId - The id of the event to remove\n *\n * @returns the removed event, or null if the event was not found\n * in this room.\n */\n public removeEvent(eventId: string): MatrixEvent | null {\n const timeline = this._eventIdToTimeline.get(eventId);\n if (!timeline) {\n return null;\n }\n\n const removed = timeline.removeEvent(eventId);\n if (removed) {\n this._eventIdToTimeline.delete(eventId);\n const data = {\n timeline: timeline,\n };\n this.emit(RoomEvent.Timeline, removed, this.room, undefined, true, data);\n }\n return removed;\n }\n\n /**\n * Determine where two events appear in the timeline relative to one another\n *\n * @param eventId1 - The id of the first event\n * @param eventId2 - The id of the second event\n\n * @returns -1 if eventId1 precedes eventId2, and +1 eventId1 succeeds\n * eventId2. 0 if they are the same event; null if we can't tell (either\n * because we don't know about one of the events, or because they are in\n * separate timelines which don't join up).\n */\n public compareEventOrdering(eventId1: string, eventId2: string): number | null {\n if (eventId1 == eventId2) {\n // optimise this case\n return 0;\n }\n\n const timeline1 = this._eventIdToTimeline.get(eventId1);\n const timeline2 = this._eventIdToTimeline.get(eventId2);\n\n if (timeline1 === undefined) {\n return null;\n }\n if (timeline2 === undefined) {\n return null;\n }\n\n if (timeline1 === timeline2) {\n // both events are in the same timeline - figure out their relative indices\n let idx1: number | undefined = undefined;\n let idx2: number | undefined = undefined;\n const events = timeline1.getEvents();\n for (let idx = 0; idx < events.length && (idx1 === undefined || idx2 === undefined); idx++) {\n const evId = events[idx].getId();\n if (evId == eventId1) {\n idx1 = idx;\n }\n if (evId == eventId2) {\n idx2 = idx;\n }\n }\n const difference = idx1! - idx2!;\n\n // Return the sign of difference.\n if (difference < 0) {\n return -1;\n } else if (difference > 0) {\n return 1;\n } else {\n return 0;\n }\n }\n\n // the events are in different timelines. Iterate through the\n // linkedlist to see which comes first.\n\n // first work forwards from timeline1\n let tl: EventTimeline | null = timeline1;\n while (tl) {\n if (tl === timeline2) {\n // timeline1 is before timeline2\n return -1;\n }\n tl = tl.getNeighbouringTimeline(EventTimeline.FORWARDS);\n }\n\n // now try backwards from timeline1\n tl = timeline1;\n while (tl) {\n if (tl === timeline2) {\n // timeline2 is before timeline1\n return 1;\n }\n tl = tl.getNeighbouringTimeline(EventTimeline.BACKWARDS);\n }\n\n // the timelines are not contiguous.\n return null;\n }\n\n /**\n * Determine whether a given event can sanely be added to this event timeline set,\n * for timeline sets relating to a thread, only return true for events in the same\n * thread timeline, for timeline sets not relating to a thread only return true\n * for events which should be shown in the main room timeline.\n * Requires the `room` property to have been set at EventTimelineSet construction time.\n *\n * @param event - the event to check whether it belongs to this timeline set.\n * @throws Error if `room` was not set when constructing this timeline set.\n * @returns whether the event belongs to this timeline set.\n */\n public canContain(event: MatrixEvent): boolean {\n if (!this.room) {\n throw new Error(\n \"Cannot call `EventTimelineSet::canContain without a `room` set. \" +\n \"Set the room when creating the EventTimelineSet to call this method.\",\n );\n }\n\n const { threadId, shouldLiveInRoom, shouldLiveInThread } = this.room.eventShouldLiveIn(event);\n\n if (this.thread) {\n return this.thread.id === threadId;\n }\n\n if (!shouldLiveInRoom && !shouldLiveInThread) {\n logger.warn(\n `EventTimelineSet:canContain event encountered which cannot be added to any timeline roomId=${\n this.room?.roomId\n } eventId=${event.getId()} threadId=${event.threadRootId}`,\n );\n }\n\n return shouldLiveInRoom;\n }\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"event-timeline-set.js","names":["EventTimeline","logger","RoomEvent","TypedEventEmitter","RelationsContainer","DEBUG","debuglog","log","bind","DuplicateStrategy","EventTimelineSet","constructor","room","_this$room$relations","_this$room","_room$client","opts","arguments","length","undefined","client","thread","threadListType","_defineProperty","Map","timelineSupport","Boolean","liveTimeline","displayPendingEvents","pendingEvents","timelines","_eventIdToTimeline","filter","relations","getTimelines","getFilter","setFilter","getPendingEvents","getLiveTimeline","setLiveTimeline","timeline","eventIdToTimeline","eventId","get","replaceEventId","oldEventId","newEventId","existingTimeline","delete","set","resetLiveTimeline","backPaginationToken","forwardPaginationToken","resetAllTimelines","oldTimeline","newTimeline","forkLive","FORWARDS","fork","push","setPaginationToken","BACKWARDS","emit","TimelineReset","getTimelineForEvent","res","findEventById","tl","getEvents","find","ev","getId","addTimeline","Error","addEventsToTimeline","events","toStartOfTimeline","addToState","paginationToken","filterRoomTimeline","direction","inverseDirection","didUpdate","lastEventWasNew","event","addEventToTimeline","neighbour","getNeighbouringTimeline","info","existingIsLive","timelineIsLive","backwardsIsLive","forwardsIsLive","warn","setNeighbouringTimeline","concat","addLiveEvent","_ref","duplicateStrategy","fromCache","roomState","timelineWasEmpty","Replace","tlEvents","j","getState","setEventMetadata","_ref2","getTimelineSet","_this$thread","toString","id","aggregateParentEvent","aggregateChildEvent","canContain","_this$thread2","eventDebugString","threadRootId","addEvent","data","liveEvent","Timeline","insertEventIntoTimeline","_this$thread3","_this$thread4","parentEventId","relationEventId","parentEvent","timelineEvents","parentIndex","indexOf","insertIndex","nextEvent","getTs","insertEvent","handleRemoteEcho","localEvent","removeEvent","removed","compareEventOrdering","eventId1","eventId2","timeline1","timeline2","idx1","idx2","idx","evId","difference","threadId","shouldLiveInRoom","shouldLiveInThread","eventShouldLiveIn","_this$room2","roomId"],"sources":["../../src/models/event-timeline-set.ts"],"sourcesContent":["/*\nCopyright 2016 - 2021 The Matrix.org Foundation C.I.C.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\n\nimport { EventTimeline, IAddEventOptions } from \"./event-timeline.ts\";\nimport { MatrixEvent } from \"./event.ts\";\nimport { logger } from \"../logger.ts\";\nimport { Room, RoomEvent } from \"./room.ts\";\nimport { Filter } from \"../filter.ts\";\nimport { RoomState } from \"./room-state.ts\";\nimport { TypedEventEmitter } from \"./typed-event-emitter.ts\";\nimport { RelationsContainer } from \"./relations-container.ts\";\nimport { MatrixClient } from \"../client.ts\";\nimport { Thread, ThreadFilterType } from \"./thread.ts\";\n\nconst DEBUG = true;\n\n/* istanbul ignore next */\nlet debuglog: (...args: any[]) => void;\nif (DEBUG) {\n // using bind means that we get to keep useful line numbers in the console\n debuglog = logger.log.bind(logger);\n} else {\n /* istanbul ignore next */\n debuglog = function (): void {};\n}\n\ninterface IOpts {\n // Set to true to enable improved timeline support.\n timelineSupport?: boolean;\n // The filter object, if any, for this timelineSet.\n filter?: Filter;\n pendingEvents?: boolean;\n}\n\nexport enum DuplicateStrategy {\n Ignore = \"ignore\",\n Replace = \"replace\",\n}\n\nexport interface IRoomTimelineData {\n // the timeline the event was added to/removed from\n timeline: EventTimeline;\n // true if the event was a real-time event added to the end of the live timeline\n liveEvent?: boolean;\n}\n\nexport interface IAddEventToTimelineOptions\n extends Pick<IAddEventOptions, \"toStartOfTimeline\" | \"roomState\" | \"timelineWasEmpty\" | \"addToState\"> {\n /** Whether the sync response came from cache */\n fromCache?: boolean;\n}\n\nexport interface IAddLiveEventOptions\n extends Pick<IAddEventToTimelineOptions, \"fromCache\" | \"roomState\" | \"timelineWasEmpty\" | \"addToState\"> {\n /** Applies to events in the timeline only. If this is 'replace' then if a\n * duplicate is encountered, the event passed to this function will replace\n * the existing event in the timeline. If this is not specified, or is\n * 'ignore', then the event passed to this function will be ignored\n * entirely, preserving the existing event in the timeline. Events are\n * identical based on their event ID <b>only</b>. */\n duplicateStrategy?: DuplicateStrategy;\n}\n\ntype EmittedEvents = RoomEvent.Timeline | RoomEvent.TimelineReset;\n\nexport type EventTimelineSetHandlerMap = {\n /**\n * Fires whenever the timeline in a room is updated.\n * @param event - The matrix event which caused this event to fire.\n * @param room - The room, if any, whose timeline was updated.\n * @param toStartOfTimeline - True if this event was added to the start\n * @param removed - True if this event has just been removed from the timeline\n * (beginning; oldest) of the timeline e.g. due to pagination.\n *\n * @param data - more data about the event\n *\n * @example\n * ```\n * matrixClient.on(\"Room.timeline\",\n * function(event, room, toStartOfTimeline, removed, data) {\n * if (!toStartOfTimeline && data.liveEvent) {\n * var messageToAppend = room.timeline.[room.timeline.length - 1];\n * }\n * });\n * ```\n */\n [RoomEvent.Timeline]: (\n event: MatrixEvent,\n room: Room | undefined,\n toStartOfTimeline: boolean | undefined,\n removed: boolean,\n data: IRoomTimelineData,\n ) => void;\n /**\n * Fires whenever the live timeline in a room is reset.\n *\n * When we get a 'limited' sync (for example, after a network outage), we reset\n * the live timeline to be empty before adding the recent events to the new\n * timeline. This event is fired after the timeline is reset, and before the\n * new events are added.\n *\n * @param room - The room whose live timeline was reset, if any\n * @param timelineSet - timelineSet room whose live timeline was reset\n * @param resetAllTimelines - True if all timelines were reset.\n */\n [RoomEvent.TimelineReset]: (\n room: Room | undefined,\n timelineSet: EventTimelineSet,\n resetAllTimelines: boolean,\n ) => void;\n};\n\nexport class EventTimelineSet extends TypedEventEmitter<EmittedEvents, EventTimelineSetHandlerMap> {\n public readonly relations: RelationsContainer;\n private readonly timelineSupport: boolean;\n private readonly displayPendingEvents: boolean;\n private liveTimeline: EventTimeline;\n private timelines: EventTimeline[];\n private _eventIdToTimeline = new Map<string, EventTimeline>();\n private filter?: Filter;\n\n /**\n * Construct a set of EventTimeline objects, typically on behalf of a given\n * room. A room may have multiple EventTimelineSets for different levels\n * of filtering. The global notification list is also an EventTimelineSet, but\n * lacks a room.\n *\n * <p>This is an ordered sequence of timelines, which may or may not\n * be continuous. Each timeline lists a series of events, as well as tracking\n * the room state at the start and the end of the timeline (if appropriate).\n * It also tracks forward and backward pagination tokens, as well as containing\n * links to the next timeline in the sequence.\n *\n * <p>There is one special timeline - the 'live' timeline, which represents the\n * timeline to which events are being added in real-time as they are received\n * from the /sync API. Note that you should not retain references to this\n * timeline - even if it is the current timeline right now, it may not remain\n * so if the server gives us a timeline gap in /sync.\n *\n * <p>In order that we can find events from their ids later, we also maintain a\n * map from event_id to timeline and index.\n *\n * @param room - Room for this timelineSet. May be null for non-room cases, such as the\n * notification timeline.\n * @param opts - Options inherited from Room.\n * @param client - the Matrix client which owns this EventTimelineSet,\n * can be omitted if room is specified.\n * @param thread - the thread to which this timeline set relates.\n * @param threadListType - the type of thread list represented, if any\n * (e.g., All threads or My threads)\n */\n public constructor(\n public readonly room: Room | undefined,\n opts: IOpts = {},\n client?: MatrixClient,\n public readonly thread?: Thread,\n public readonly threadListType: ThreadFilterType | null = null,\n ) {\n super();\n\n this.timelineSupport = Boolean(opts.timelineSupport);\n this.liveTimeline = new EventTimeline(this);\n this.displayPendingEvents = opts.pendingEvents !== false;\n\n // just a list - *not* ordered.\n this.timelines = [this.liveTimeline];\n this._eventIdToTimeline = new Map<string, EventTimeline>();\n\n this.filter = opts.filter;\n\n this.relations = this.room?.relations ?? new RelationsContainer(room?.client ?? client!);\n }\n\n /**\n * Get all the timelines in this set\n * @returns the timelines in this set\n */\n public getTimelines(): EventTimeline[] {\n return this.timelines;\n }\n\n /**\n * Get the filter object this timeline set is filtered on, if any\n * @returns the optional filter for this timelineSet\n */\n public getFilter(): Filter | undefined {\n return this.filter;\n }\n\n /**\n * Set the filter object this timeline set is filtered on\n * (passed to the server when paginating via /messages).\n * @param filter - the filter for this timelineSet\n */\n public setFilter(filter?: Filter): void {\n this.filter = filter;\n }\n\n /**\n * Get the list of pending sent events for this timelineSet's room, filtered\n * by the timelineSet's filter if appropriate.\n *\n * @returns A list of the sent events\n * waiting for remote echo.\n *\n * @throws If `opts.pendingEventOrdering` was not 'detached'\n */\n public getPendingEvents(): MatrixEvent[] {\n if (!this.room || !this.displayPendingEvents) {\n return [];\n }\n\n return this.room.getPendingEvents();\n }\n /**\n * Get the live timeline for this room.\n *\n * @returns live timeline\n */\n public getLiveTimeline(): EventTimeline {\n return this.liveTimeline;\n }\n\n /**\n * Set the live timeline for this room.\n *\n * @returns live timeline\n */\n public setLiveTimeline(timeline: EventTimeline): void {\n this.liveTimeline = timeline;\n }\n\n /**\n * Return the timeline (if any) this event is in.\n * @param eventId - the eventId being sought\n * @returns timeline\n */\n public eventIdToTimeline(eventId: string): EventTimeline | undefined {\n return this._eventIdToTimeline.get(eventId);\n }\n\n /**\n * Track a new event as if it were in the same timeline as an old event,\n * replacing it.\n * @param oldEventId - event ID of the original event\n * @param newEventId - event ID of the replacement event\n */\n public replaceEventId(oldEventId: string, newEventId: string): void {\n const existingTimeline = this._eventIdToTimeline.get(oldEventId);\n if (existingTimeline) {\n this._eventIdToTimeline.delete(oldEventId);\n this._eventIdToTimeline.set(newEventId, existingTimeline);\n }\n }\n\n /**\n * Reset the live timeline, and start a new one.\n *\n * <p>This is used when /sync returns a 'limited' timeline.\n *\n * @param backPaginationToken - token for back-paginating the new timeline\n * @param forwardPaginationToken - token for forward-paginating the old live timeline,\n * if absent or null, all timelines are reset.\n *\n * @remarks\n * Fires {@link RoomEvent.TimelineReset}\n */\n public resetLiveTimeline(backPaginationToken?: string, forwardPaginationToken?: string): void {\n // Each EventTimeline has RoomState objects tracking the state at the start\n // and end of that timeline. The copies at the end of the live timeline are\n // special because they will have listeners attached to monitor changes to\n // the current room state, so we move this RoomState from the end of the\n // current live timeline to the end of the new one and, if necessary,\n // replace it with a newly created one. We also make a copy for the start\n // of the new timeline.\n\n // if timeline support is disabled, forget about the old timelines\n const resetAllTimelines = !this.timelineSupport || !forwardPaginationToken;\n\n const oldTimeline = this.liveTimeline;\n const newTimeline = resetAllTimelines\n ? oldTimeline.forkLive(EventTimeline.FORWARDS)\n : oldTimeline.fork(EventTimeline.FORWARDS);\n\n if (resetAllTimelines) {\n this.timelines = [newTimeline];\n this._eventIdToTimeline = new Map<string, EventTimeline>();\n } else {\n this.timelines.push(newTimeline);\n }\n\n if (forwardPaginationToken) {\n // Now set the forward pagination token on the old live timeline\n // so it can be forward-paginated.\n oldTimeline.setPaginationToken(forwardPaginationToken, EventTimeline.FORWARDS);\n }\n\n // make sure we set the pagination token before firing timelineReset,\n // otherwise clients which start back-paginating will fail, and then get\n // stuck without realising that they *can* back-paginate.\n newTimeline.setPaginationToken(backPaginationToken ?? null, EventTimeline.BACKWARDS);\n\n // Now we can swap the live timeline to the new one.\n this.liveTimeline = newTimeline;\n this.emit(RoomEvent.TimelineReset, this.room, this, resetAllTimelines);\n }\n\n /**\n * Get the timeline which contains the given event, if any\n *\n * @param eventId - event ID to look for\n * @returns timeline containing\n * the given event, or null if unknown\n */\n public getTimelineForEvent(eventId?: string): EventTimeline | null {\n if (eventId === null || eventId === undefined) {\n return null;\n }\n const res = this._eventIdToTimeline.get(eventId);\n return res === undefined ? null : res;\n }\n\n /**\n * Get an event which is stored in our timelines\n *\n * @param eventId - event ID to look for\n * @returns the given event, or undefined if unknown\n */\n public findEventById(eventId: string): MatrixEvent | undefined {\n const tl = this.getTimelineForEvent(eventId);\n if (!tl) {\n return undefined;\n }\n return tl.getEvents().find(function (ev) {\n return ev.getId() == eventId;\n });\n }\n\n /**\n * Add a new timeline to this timeline list\n *\n * @returns newly-created timeline\n */\n public addTimeline(): EventTimeline {\n if (!this.timelineSupport) {\n throw new Error(\n \"timeline support is disabled. Set the 'timelineSupport'\" +\n \" parameter to true when creating MatrixClient to enable\" +\n \" it.\",\n );\n }\n\n const timeline = new EventTimeline(this);\n this.timelines.push(timeline);\n return timeline;\n }\n\n /**\n * Add events to a timeline\n *\n * <p>Will fire \"Room.timeline\" for each event added.\n *\n * @param events - A list of events to add.\n *\n * @param toStartOfTimeline - True to add these events to the start\n * (oldest) instead of the end (newest) of the timeline. If true, the oldest\n * event will be the <b>last</b> element of 'events'.\n *\n * @param timeline - timeline to\n * add events to.\n *\n * @param paginationToken - token for the next batch of events\n *\n * @remarks\n * Fires {@link RoomEvent.Timeline}\n *\n */\n public addEventsToTimeline(\n events: MatrixEvent[],\n toStartOfTimeline: boolean,\n addToState: boolean,\n timeline: EventTimeline,\n paginationToken?: string | null,\n ): void {\n if (!timeline) {\n throw new Error(\"'timeline' not specified for EventTimelineSet.addEventsToTimeline\");\n }\n\n if (!toStartOfTimeline && timeline == this.liveTimeline) {\n throw new Error(\n \"EventTimelineSet.addEventsToTimeline cannot be used for adding events to \" +\n \"the live timeline - use Room.addLiveEvents instead\",\n );\n }\n\n if (this.filter) {\n events = this.filter.filterRoomTimeline(events);\n if (!events.length) {\n return;\n }\n }\n\n const direction = toStartOfTimeline ? EventTimeline.BACKWARDS : EventTimeline.FORWARDS;\n const inverseDirection = toStartOfTimeline ? EventTimeline.FORWARDS : EventTimeline.BACKWARDS;\n\n // Adding events to timelines can be quite complicated. The following\n // illustrates some of the corner-cases.\n //\n // Let's say we start by knowing about four timelines. timeline3 and\n // timeline4 are neighbours:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M] [P] [S] <------> [T]\n //\n // Now we paginate timeline1, and get the following events from the server:\n // [M, N, P, R, S, T, U].\n //\n // 1. First, we ignore event M, since we already know about it.\n //\n // 2. Next, we append N to timeline 1.\n //\n // 3. Next, we don't add event P, since we already know about it,\n // but we do link together the timelines. We now have:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M, N] <---> [P] [S] <------> [T]\n //\n // 4. Now we add event R to timeline2:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M, N] <---> [P, R] [S] <------> [T]\n //\n // Note that we have switched the timeline we are working on from\n // timeline1 to timeline2.\n //\n // 5. We ignore event S, but again join the timelines:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M, N] <---> [P, R] <---> [S] <------> [T]\n //\n // 6. We ignore event T, and the timelines are already joined, so there\n // is nothing to do.\n //\n // 7. Finally, we add event U to timeline4:\n //\n // timeline1 timeline2 timeline3 timeline4\n // [M, N] <---> [P, R] <---> [S] <------> [T, U]\n //\n // The important thing to note in the above is what happened when we\n // already knew about a given event:\n //\n // - if it was appropriate, we joined up the timelines (steps 3, 5).\n // - in any case, we started adding further events to the timeline which\n // contained the event we knew about (steps 3, 5, 6).\n //\n //\n // So much for adding events to the timeline. But what do we want to do\n // with the pagination token?\n //\n // In the case above, we will be given a pagination token which tells us how to\n // get events beyond 'U' - in this case, it makes sense to store this\n // against timeline4. But what if timeline4 already had 'U' and beyond? in\n // that case, our best bet is to throw away the pagination token we were\n // given and stick with whatever token timeline4 had previously. In short,\n // we want to only store the pagination token if the last event we receive\n // is one we didn't previously know about.\n //\n // We make an exception for this if it turns out that we already knew about\n // *all* of the events, and we weren't able to join up any timelines. When\n // that happens, it means our existing pagination token is faulty, since it\n // is only telling us what we already know. Rather than repeatedly\n // paginating with the same token, we might as well use the new pagination\n // token in the hope that we eventually work our way out of the mess.\n\n let didUpdate = false;\n let lastEventWasNew = false;\n for (const event of events) {\n const eventId = event.getId()!;\n\n const existingTimeline = this._eventIdToTimeline.get(eventId);\n\n if (!existingTimeline) {\n // we don't know about this event yet. Just add it to the timeline.\n this.addEventToTimeline(event, timeline, {\n toStartOfTimeline,\n addToState,\n });\n lastEventWasNew = true;\n didUpdate = true;\n continue;\n }\n\n lastEventWasNew = false;\n\n if (existingTimeline == timeline) {\n debuglog(\"Event \" + eventId + \" already in timeline \" + timeline);\n continue;\n }\n\n const neighbour = timeline.getNeighbouringTimeline(direction);\n if (neighbour) {\n // this timeline already has a neighbour in the relevant direction;\n // let's assume the timelines are already correctly linked up, and\n // skip over to it.\n //\n // there's probably some edge-case here where we end up with an\n // event which is in a timeline a way down the chain, and there is\n // a break in the chain somewhere. But I can't really imagine how\n // that would happen, so I'm going to ignore it for now.\n //\n if (existingTimeline == neighbour) {\n debuglog(\"Event \" + eventId + \" in neighbouring timeline - \" + \"switching to \" + existingTimeline);\n } else {\n debuglog(\"Event \" + eventId + \" already in a different \" + \"timeline \" + existingTimeline);\n }\n timeline = existingTimeline;\n continue;\n }\n\n // time to join the timelines.\n logger.info(\n \"Already have timeline for \" + eventId + \" - joining timeline \" + timeline + \" to \" + existingTimeline,\n );\n\n // Variables to keep the line length limited below.\n const existingIsLive = existingTimeline === this.liveTimeline;\n const timelineIsLive = timeline === this.liveTimeline;\n\n const backwardsIsLive = direction === EventTimeline.BACKWARDS && existingIsLive;\n const forwardsIsLive = direction === EventTimeline.FORWARDS && timelineIsLive;\n\n if (backwardsIsLive || forwardsIsLive) {\n // The live timeline should never be spliced into a non-live position.\n // We use independent logging to better discover the problem at a glance.\n if (backwardsIsLive) {\n logger.warn(\n \"Refusing to set a preceding existingTimeLine on our \" +\n \"timeline as the existingTimeLine is live (\" +\n existingTimeline +\n \")\",\n );\n }\n if (forwardsIsLive) {\n logger.warn(\n \"Refusing to set our preceding timeline on a existingTimeLine \" +\n \"as our timeline is live (\" +\n timeline +\n \")\",\n );\n }\n continue; // abort splicing - try next event\n }\n\n timeline.setNeighbouringTimeline(existingTimeline, direction);\n existingTimeline.setNeighbouringTimeline(timeline, inverseDirection);\n\n timeline = existingTimeline;\n didUpdate = true;\n }\n\n // see above - if the last event was new to us, or if we didn't find any\n // new information, we update the pagination token for whatever\n // timeline we ended up on.\n if (lastEventWasNew || !didUpdate) {\n if (direction === EventTimeline.FORWARDS && timeline === this.liveTimeline) {\n logger.warn({ lastEventWasNew, didUpdate }); // for debugging\n logger.warn(\n `Refusing to set forwards pagination token of live timeline ` + `${timeline} to ${paginationToken}`,\n );\n return;\n }\n timeline.setPaginationToken(paginationToken ?? null, direction);\n }\n }\n\n /**\n * Add an event to the end of this live timeline.\n *\n * @param event - Event to be added\n * @param options - addLiveEvent options\n */\n public addLiveEvent(\n event: MatrixEvent,\n { duplicateStrategy, fromCache, roomState, timelineWasEmpty, addToState }: IAddLiveEventOptions,\n ): void {\n if (this.filter) {\n const events = this.filter.filterRoomTimeline([event]);\n if (!events.length) {\n return;\n }\n }\n\n const timeline = this._eventIdToTimeline.get(event.getId()!);\n if (timeline) {\n if (duplicateStrategy === DuplicateStrategy.Replace) {\n debuglog(\"EventTimelineSet.addLiveEvent: replacing duplicate event \" + event.getId());\n const tlEvents = timeline.getEvents();\n for (let j = 0; j < tlEvents.length; j++) {\n if (tlEvents[j].getId() === event.getId()) {\n // still need to set the right metadata on this event\n if (!roomState) {\n roomState = timeline.getState(EventTimeline.FORWARDS);\n }\n EventTimeline.setEventMetadata(event, roomState!, false);\n tlEvents[j] = event;\n\n // XXX: we need to fire an event when this happens.\n break;\n }\n }\n } else {\n debuglog(\"EventTimelineSet.addLiveEvent: ignoring duplicate event \" + event.getId());\n }\n return;\n }\n\n this.addEventToTimeline(event, this.liveTimeline, {\n toStartOfTimeline: false,\n fromCache,\n roomState,\n timelineWasEmpty,\n addToState\n });\n }\n\n /**\n * Add event to the given timeline, and emit Room.timeline. Assumes\n * we have already checked we don't know about this event.\n *\n * Will fire \"Room.timeline\" for each event added.\n *\n * @param event - the event to add\n * @param timeline - the timeline onto which to add it\n * @param options - addEventToTimeline options\n *\n * @remarks\n * Fires {@link RoomEvent.Timeline}\n */\n public addEventToTimeline(\n event: MatrixEvent,\n timeline: EventTimeline,\n { toStartOfTimeline, fromCache = false, roomState, timelineWasEmpty, addToState }: IAddEventToTimelineOptions,\n ): void {\n if (timeline.getTimelineSet() !== this) {\n throw new Error(`EventTimelineSet.addEventToTimeline: Timeline=${timeline.toString()} does not belong \" +\n \"in timelineSet(threadId=${this.thread?.id})`);\n }\n\n const eventId = event.getId()!;\n this.relations.aggregateParentEvent(event);\n this.relations.aggregateChildEvent(event, this);\n\n // Make sure events don't get mixed in timelines they shouldn't be in (e.g. a\n // threaded message should not be in the main timeline).\n //\n // We can only run this check for timelines with a `room` because `canContain`\n // requires it\n if (this.room && !this.canContain(event)) {\n let eventDebugString = `event=${eventId}`;\n if (event.threadRootId) {\n eventDebugString += `(belongs to thread=${event.threadRootId})`;\n }\n logger.warn(\n `EventTimelineSet.addEventToTimeline: Ignoring ${eventDebugString} that does not belong ` +\n `in timeline=${timeline.toString()} timelineSet(threadId=${this.thread?.id})`,\n );\n return;\n }\n\n timeline.addEvent(event, {\n toStartOfTimeline,\n roomState,\n timelineWasEmpty,\n addToState,\n });\n this._eventIdToTimeline.set(eventId, timeline);\n\n const data: IRoomTimelineData = {\n timeline: timeline,\n liveEvent: !toStartOfTimeline && timeline == this.liveTimeline && !fromCache,\n };\n this.emit(RoomEvent.Timeline, event, this.room, Boolean(toStartOfTimeline), false, data);\n }\n\n /**\n * Insert event to the given timeline, and emit Room.timeline. Assumes\n * we have already checked we don't know about this event.\n *\n * TEMPORARY: until we have recursive relations, we need this function\n * to exist to allow us to insert events in timeline order, which is our\n * best guess for Sync Order.\n * This is a copy of addEventToTimeline above, modified to insert the event\n * after the event it relates to, and before any event with a later\n * timestamp. This is our best guess at Sync Order.\n *\n * Will fire \"Room.timeline\" for each event added.\n *\n * @internal\n *\n * @remarks\n * Fires {@link RoomEvent.Timeline}\n */\n public insertEventIntoTimeline(\n event: MatrixEvent,\n timeline: EventTimeline,\n roomState: RoomState,\n addToState: boolean,\n ): void {\n if (timeline.getTimelineSet() !== this) {\n throw new Error(`EventTimelineSet.insertEventIntoTimeline: Timeline=${timeline.toString()} does not belong \" +\n \"in timelineSet(threadId=${this.thread?.id})`);\n }\n\n const eventId = event.getId()!;\n this.relations.aggregateParentEvent(event);\n this.relations.aggregateChildEvent(event, this);\n\n // Make sure events don't get mixed in timelines they shouldn't be in (e.g. a\n // threaded message should not be in the main timeline).\n //\n // We can only run this check for timelines with a `room` because `canContain`\n // requires it\n if (this.room && !this.canContain(event)) {\n let eventDebugString = `event=${eventId}`;\n if (event.threadRootId) {\n eventDebugString += `(belongs to thread=${event.threadRootId})`;\n }\n logger.warn(\n `EventTimelineSet.insertEventIntoTimeline: Ignoring ${eventDebugString} that does not belong ` +\n `in timeline=${timeline.toString()} timelineSet(threadId=${this.thread?.id})`,\n );\n return;\n }\n\n // Find the event that this event is related to - the \"parent\"\n const parentEventId = event.relationEventId;\n if (!parentEventId) {\n // Not related to anything - we just append\n this.addEventToTimeline(event, timeline, {\n toStartOfTimeline: false,\n fromCache: false,\n timelineWasEmpty: false,\n roomState,\n addToState,\n });\n return;\n }\n\n const parentEvent = this.findEventById(parentEventId);\n\n const timelineEvents = timeline.getEvents();\n\n // Start searching from the parent event, or if it's not loaded, start\n // at the beginning and insert purely using timestamp order.\n const parentIndex = parentEvent !== undefined ? timelineEvents.indexOf(parentEvent) : 0;\n let insertIndex = parentIndex;\n for (; insertIndex < timelineEvents.length; insertIndex++) {\n const nextEvent = timelineEvents[insertIndex];\n if (nextEvent.getTs() > event.getTs()) {\n // We found an event later than ours, so insert before that.\n break;\n }\n }\n // If we got to the end of the loop, insertIndex points at the end of\n // the list.\n\n timeline.insertEvent(event, insertIndex, roomState, addToState);\n this._eventIdToTimeline.set(eventId, timeline);\n\n const data: IRoomTimelineData = {\n timeline: timeline,\n // The purpose of this method is inserting events in the middle of the\n // timeline, so the events are, by definition, not live (whether or not\n // we're adding them to the live timeline).\n liveEvent: false,\n };\n this.emit(RoomEvent.Timeline, event, this.room, false, false, data);\n }\n\n /**\n * Replaces event with ID oldEventId with one with newEventId, if oldEventId is\n * recognised. Otherwise, add to the live timeline. Used to handle remote echos.\n *\n * @param localEvent - the new event to be added to the timeline\n * @param oldEventId - the ID of the original event\n * @param newEventId - the ID of the replacement event\n *\n * @remarks\n * Fires {@link RoomEvent.Timeline}\n */\n public handleRemoteEcho(localEvent: MatrixEvent, oldEventId: string, newEventId: string): void {\n // XXX: why don't we infer newEventId from localEvent?\n const existingTimeline = this._eventIdToTimeline.get(oldEventId);\n if (existingTimeline) {\n this._eventIdToTimeline.delete(oldEventId);\n this._eventIdToTimeline.set(newEventId, existingTimeline);\n } else if (!this.filter || this.filter.filterRoomTimeline([localEvent]).length) {\n this.addEventToTimeline(localEvent, this.liveTimeline, {\n toStartOfTimeline: false,\n addToState: false,\n });\n }\n }\n\n /**\n * Removes a single event from this room.\n *\n * @param eventId - The id of the event to remove\n *\n * @returns the removed event, or null if the event was not found\n * in this room.\n */\n public removeEvent(eventId: string): MatrixEvent | null {\n const timeline = this._eventIdToTimeline.get(eventId);\n if (!timeline) {\n return null;\n }\n\n const removed = timeline.removeEvent(eventId);\n if (removed) {\n this._eventIdToTimeline.delete(eventId);\n const data = {\n timeline: timeline,\n };\n this.emit(RoomEvent.Timeline, removed, this.room, undefined, true, data);\n }\n return removed;\n }\n\n /**\n * Determine where two events appear in the timeline relative to one another\n *\n * @param eventId1 - The id of the first event\n * @param eventId2 - The id of the second event\n\n * @returns -1 if eventId1 precedes eventId2, and +1 eventId1 succeeds\n * eventId2. 0 if they are the same event; null if we can't tell (either\n * because we don't know about one of the events, or because they are in\n * separate timelines which don't join up).\n */\n public compareEventOrdering(eventId1: string, eventId2: string): number | null {\n if (eventId1 == eventId2) {\n // optimise this case\n return 0;\n }\n\n const timeline1 = this._eventIdToTimeline.get(eventId1);\n const timeline2 = this._eventIdToTimeline.get(eventId2);\n\n if (timeline1 === undefined) {\n return null;\n }\n if (timeline2 === undefined) {\n return null;\n }\n\n if (timeline1 === timeline2) {\n // both events are in the same timeline - figure out their relative indices\n let idx1: number | undefined = undefined;\n let idx2: number | undefined = undefined;\n const events = timeline1.getEvents();\n for (let idx = 0; idx < events.length && (idx1 === undefined || idx2 === undefined); idx++) {\n const evId = events[idx].getId();\n if (evId == eventId1) {\n idx1 = idx;\n }\n if (evId == eventId2) {\n idx2 = idx;\n }\n }\n const difference = idx1! - idx2!;\n\n // Return the sign of difference.\n if (difference < 0) {\n return -1;\n } else if (difference > 0) {\n return 1;\n } else {\n return 0;\n }\n }\n\n // the events are in different timelines. Iterate through the\n // linkedlist to see which comes first.\n\n // first work forwards from timeline1\n let tl: EventTimeline | null = timeline1;\n while (tl) {\n if (tl === timeline2) {\n // timeline1 is before timeline2\n return -1;\n }\n tl = tl.getNeighbouringTimeline(EventTimeline.FORWARDS);\n }\n\n // now try backwards from timeline1\n tl = timeline1;\n while (tl) {\n if (tl === timeline2) {\n // timeline2 is before timeline1\n return 1;\n }\n tl = tl.getNeighbouringTimeline(EventTimeline.BACKWARDS);\n }\n\n // the timelines are not contiguous.\n return null;\n }\n\n /**\n * Determine whether a given event can sanely be added to this event timeline set,\n * for timeline sets relating to a thread, only return true for events in the same\n * thread timeline, for timeline sets not relating to a thread only return true\n * for events which should be shown in the main room timeline.\n * Requires the `room` property to have been set at EventTimelineSet construction time.\n *\n * @param event - the event to check whether it belongs to this timeline set.\n * @throws Error if `room` was not set when constructing this timeline set.\n * @returns whether the event belongs to this timeline set.\n */\n public canContain(event: MatrixEvent): boolean {\n if (!this.room) {\n throw new Error(\n \"Cannot call `EventTimelineSet::canContain without a `room` set. \" +\n \"Set the room when creating the EventTimelineSet to call this method.\",\n );\n }\n\n const { threadId, shouldLiveInRoom, shouldLiveInThread } = this.room.eventShouldLiveIn(event);\n\n if (this.thread) {\n return this.thread.id === threadId;\n }\n\n if (!shouldLiveInRoom && !shouldLiveInThread) {\n logger.warn(\n `EventTimelineSet:canContain event encountered which cannot be added to any timeline roomId=${\n this.room?.roomId\n } eventId=${event.getId()} threadId=${event.threadRootId}`,\n );\n }\n\n return shouldLiveInRoom;\n }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -11,6 +11,11 @@ export interface IAddEventOptions extends Pick<IMarkerFoundOptions, "timelineWas
11
11
  toStartOfTimeline: boolean;
12
12
  /** The state events to reconcile metadata from */
13
13
  roomState?: RoomState;
14
+ /** Whether to add timeline events to the state as was done in legacy sync v2.
15
+ * If true then timeline events will be added to the state.
16
+ * In sync v2 with org.matrix.msc4222.use_state_after and simplified sliding sync,
17
+ * all state arrives explicitly and timeline events should not be added. */
18
+ addToState: boolean;
14
19
  }
15
20
  export declare enum Direction {
16
21
  Backward = "b",
@@ -189,7 +194,7 @@ export declare class EventTimeline {
189
194
  * @param event - new event
190
195
  * @param options - addEvent options
191
196
  */
192
- addEvent(event: MatrixEvent, { toStartOfTimeline, roomState, timelineWasEmpty }?: IAddEventOptions): void;
197
+ addEvent(event: MatrixEvent, { toStartOfTimeline, roomState, timelineWasEmpty, addToState }: IAddEventOptions): void;
193
198
  /**
194
199
  * Insert a new event into the timeline, and update the state.
195
200
  *
@@ -201,7 +206,7 @@ export declare class EventTimeline {
201
206
  *
202
207
  * @internal
203
208
  */
204
- insertEvent(event: MatrixEvent, insertIndex: number, roomState: RoomState): void;
209
+ insertEvent(event: MatrixEvent, insertIndex: number, roomState: RoomState, addToState: boolean): void;
205
210
  /**
206
211
  * Remove an event from the timeline
207
212
  *
@@ -1 +1 @@
1
- {"version":3,"file":"event-timeline.d.ts","sourceRoot":"","sources":["../../src/models/event-timeline.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"event-timeline.d.ts","sourceRoot":"","sources":["../../src/models/event-timeline.ts"],"names":[],"mappings":"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"}
@@ -93,7 +93,7 @@ export class EventTimeline {
93
93
  });
94
94
  this.roomId = (_eventTimelineSet$roo = (_eventTimelineSet$roo2 = eventTimelineSet.room) === null || _eventTimelineSet$roo2 === void 0 ? void 0 : _eventTimelineSet$roo2.roomId) !== null && _eventTimelineSet$roo !== void 0 ? _eventTimelineSet$roo : null;
95
95
  if (this.roomId) {
96
- this.startState = new RoomState(this.roomId, undefined, true);
96
+ this.startState = new RoomState(this.roomId);
97
97
  this.endState = new RoomState(this.roomId);
98
98
  }
99
99
 
@@ -328,14 +328,13 @@ export class EventTimeline {
328
328
  * @param event - new event
329
329
  * @param options - addEvent options
330
330
  */
331
- addEvent(event) {
331
+ addEvent(event, _ref) {
332
332
  var {
333
333
  toStartOfTimeline,
334
334
  roomState,
335
- timelineWasEmpty
336
- } = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {
337
- toStartOfTimeline: false
338
- };
335
+ timelineWasEmpty,
336
+ addToState
337
+ } = _ref;
339
338
  if (!roomState) {
340
339
  roomState = toStartOfTimeline ? this.startState : this.endState;
341
340
  }
@@ -344,7 +343,7 @@ export class EventTimeline {
344
343
  EventTimeline.setEventMetadata(event, roomState, toStartOfTimeline);
345
344
 
346
345
  // modify state but only on unfiltered timelineSets
347
- if (event.isState() && timelineSet.room.getUnfilteredTimelineSet() === timelineSet) {
346
+ if (addToState && event.isState() && timelineSet.room.getUnfilteredTimelineSet() === timelineSet) {
348
347
  var _roomState;
349
348
  (_roomState = roomState) === null || _roomState === void 0 || _roomState.setStateEvents([event], {
350
349
  timelineWasEmpty
@@ -387,13 +386,13 @@ export class EventTimeline {
387
386
  *
388
387
  * @internal
389
388
  */
390
- insertEvent(event, insertIndex, roomState) {
389
+ insertEvent(event, insertIndex, roomState, addToState) {
391
390
  var timelineSet = this.getTimelineSet();
392
391
  if (timelineSet.room) {
393
392
  EventTimeline.setEventMetadata(event, roomState, false);
394
393
 
395
394
  // modify state but only on unfiltered timelineSets
396
- if (event.isState() && timelineSet.room.getUnfilteredTimelineSet() === timelineSet) {
395
+ if (addToState && event.isState() && timelineSet.room.getUnfilteredTimelineSet() === timelineSet) {
397
396
  roomState.setStateEvents([event], {});
398
397
  // it is possible that the act of setting the state event means we
399
398
  // can set more metadata (specifically sender/target props), so try