Rename method and add comment

This commit is contained in:
RMidhunSuresh 2022-01-10 18:05:33 +05:30
parent ec8f6e8e0a
commit 091b55a265
4 changed files with 12 additions and 9 deletions

View file

@ -124,7 +124,7 @@ export class Timeline {
pendingEvent: pe, member: this._ownMember,
clock: this._clock, redactingEntry
});
this._applyAndEmitLocalRelationChange(pee, target => target.addLocalRelation(pee));
this._applyAndEmitLocalRelationChange(pee, target => target.addRelation(pee));
return pee;
}
@ -203,12 +203,12 @@ export class Timeline {
if (pee.relatedEventId) {
const relationTarget = entries.find(e => e.id === pee.relatedEventId);
// no need to emit here as this entry is about to be added
relationTarget?.addLocalRelation(pee);
relationTarget?.addRelation(pee);
}
if (pee.redactingEntry) {
const eventId = pee.redactingEntry.relatedEventId;
const relationTarget = entries.find(e => e.id === eventId);
relationTarget?.addLocalRelation(pee);
relationTarget?.addRelation(pee);
}
}
}
@ -272,7 +272,7 @@ export class Timeline {
*/
for (const entry of entries) {
const relatedEntry = this._contextEntriesNotInTimeline.get(entry.relatedEventId);
if (relatedEntry?.addLocalRelation(entry)) {
if (relatedEntry?.addRelation(entry)) {
// update other entries for which this entry is a context entry
relatedEntry.contextForEntries?.forEach(e => {
this._remoteEntries.findAndUpdate(te => te.id === e.id, () => { return { reply: relatedEntry }; });

View file

@ -53,10 +53,13 @@ export class BaseEventEntry extends BaseEntry {
}
/**
aggregates local relation or local redaction of remote relation.
Aggregates relation or redaction of remote relation.
Used in two situations:
- to aggregate local relation/redaction of remote relation
- to mark this entry as being redacted in Timeline._updateEntriesFetchedFromHomeserver
@return [string] returns the name of the field that has changed, if any
*/
addLocalRelation(entry) {
addRelation(entry) {
if (entry.eventType === REDACTION_TYPE && entry.isRelatedToId(this.id)) {
if (!this._pendingRedactions) {
this._pendingRedactions = [];

View file

@ -190,7 +190,7 @@ export function tests() {
function addPendingReaction(target, key) {
queueIndex += 1;
target.addLocalRelation(new PendingEventEntry({
target.addRelation(new PendingEventEntry({
pendingEvent: new PendingEvent({data: {
eventType: "m.reaction",
content: createAnnotation(target.id, key),
@ -212,7 +212,7 @@ export function tests() {
});
}
queueIndex += 1;
target.addLocalRelation(new PendingEventEntry({
target.addRelation(new PendingEventEntry({
pendingEvent: new PendingEvent({data: {
eventType: "m.room.redaction",
relatedTxnId: pendingReaction ? pendingReaction.id : null,

View file

@ -134,6 +134,6 @@ export class FragmentBoundaryEntry extends BaseEntry {
return new FragmentBoundaryEntry(neighbour, !this._isFragmentStart, this._fragmentIdComparer);
}
addLocalRelation() {}
addRelation() {}
removeLocalRelation() {}
}