This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 831
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show updated relation reply from edited message - v2 (#6817)
Part of https://github.com/vector-im/element-web/issues/10391 When `m.relates_to` -> `m.in_reply_to` is provided in `m.new_content` for an edited message, use the updated reply. ex. ```json { "type": "m.room.message", "content": { "body": " * foo bar", "msgtype": "m.text", "m.new_content": { "body": "foo bar", "msgtype": "m.text", "m.relates_to": { "m.in_reply_to": { "event_id": "$qkjmFBTEc0VvfVyzq1CJuh1QZi_xDIgNEFjZ4Pq34og" } } }, "m.relates_to": { "rel_type": "m.replace", "event_id": "$lX9MRe9ZTFOOvnU8PRVbvr1wqGtYvNQ1rSot-iUTN5k" } } } ```
- Loading branch information
1 parent
05971e0
commit 9c3439a
Showing
2 changed files
with
216 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
import "../../../skinned-sdk"; | ||
import * as testUtils from '../../../test-utils'; | ||
import ReplyThread from '../../../../src/components/views/elements/ReplyThread'; | ||
|
||
describe("ReplyThread", () => { | ||
describe('getParentEventId', () => { | ||
it('retrieves relation reply from unedited event', () => { | ||
const originalEventWithRelation = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
"msgtype": "m.text", | ||
"body": "> Reply to this message\n\n foo", | ||
"m.relates_to": { | ||
"m.in_reply_to": { | ||
"event_id": "$qkjmFBTEc0VvfVyzq1CJuh1QZi_xDIgNEFjZ4Pq34og", | ||
}, | ||
}, | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
expect(ReplyThread.getParentEventId(originalEventWithRelation)) | ||
.toStrictEqual('$qkjmFBTEc0VvfVyzq1CJuh1QZi_xDIgNEFjZ4Pq34og'); | ||
}); | ||
|
||
it('retrieves relation reply from original event when edited', () => { | ||
const originalEventWithRelation = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
"msgtype": "m.text", | ||
"body": "> Reply to this message\n\n foo", | ||
"m.relates_to": { | ||
"m.in_reply_to": { | ||
"event_id": "$qkjmFBTEc0VvfVyzq1CJuh1QZi_xDIgNEFjZ4Pq34og", | ||
}, | ||
}, | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
const editEvent = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
"msgtype": "m.text", | ||
"body": "> Reply to this message\n\n * foo bar", | ||
"m.new_content": { | ||
"msgtype": "m.text", | ||
"body": "foo bar", | ||
}, | ||
"m.relates_to": { | ||
"rel_type": "m.replace", | ||
"event_id": originalEventWithRelation.event_id, | ||
}, | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
// The edit replaces the original event | ||
originalEventWithRelation.makeReplaced(editEvent); | ||
|
||
// The relation should be pulled from the original event | ||
expect(ReplyThread.getParentEventId(originalEventWithRelation)) | ||
.toStrictEqual('$qkjmFBTEc0VvfVyzq1CJuh1QZi_xDIgNEFjZ4Pq34og'); | ||
}); | ||
|
||
it('retrieves relation reply from edit event when provided', () => { | ||
const originalEvent = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
msgtype: "m.text", | ||
body: "foo", | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
const editEvent = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
"msgtype": "m.text", | ||
"body": "> Reply to this message\n\n * foo bar", | ||
"m.new_content": { | ||
"msgtype": "m.text", | ||
"body": "foo bar", | ||
"m.relates_to": { | ||
"m.in_reply_to": { | ||
"event_id": "$qkjmFBTEc0VvfVyzq1CJuh1QZi_xDIgNEFjZ4Pq34og", | ||
}, | ||
}, | ||
}, | ||
"m.relates_to": { | ||
"rel_type": "m.replace", | ||
"event_id": originalEvent.event_id, | ||
}, | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
// The edit replaces the original event | ||
originalEvent.makeReplaced(editEvent); | ||
|
||
// The relation should be pulled from the edit event | ||
expect(ReplyThread.getParentEventId(originalEvent)) | ||
.toStrictEqual('$qkjmFBTEc0VvfVyzq1CJuh1QZi_xDIgNEFjZ4Pq34og'); | ||
}); | ||
|
||
it('prefers relation reply from edit event over original event', () => { | ||
const originalEventWithRelation = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
"msgtype": "m.text", | ||
"body": "> Reply to this message\n\n foo", | ||
"m.relates_to": { | ||
"m.in_reply_to": { | ||
"event_id": "$111", | ||
}, | ||
}, | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
const editEvent = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
"msgtype": "m.text", | ||
"body": "> Reply to this message\n\n * foo bar", | ||
"m.new_content": { | ||
"msgtype": "m.text", | ||
"body": "foo bar", | ||
"m.relates_to": { | ||
"m.in_reply_to": { | ||
"event_id": "$999", | ||
}, | ||
}, | ||
}, | ||
"m.relates_to": { | ||
"rel_type": "m.replace", | ||
"event_id": originalEventWithRelation.event_id, | ||
}, | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
// The edit replaces the original event | ||
originalEventWithRelation.makeReplaced(editEvent); | ||
|
||
// The relation should be pulled from the edit event | ||
expect(ReplyThread.getParentEventId(originalEventWithRelation)).toStrictEqual('$999'); | ||
}); | ||
|
||
it('able to clear relation reply from original event by providing empty relation field', () => { | ||
const originalEventWithRelation = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
"msgtype": "m.text", | ||
"body": "> Reply to this message\n\n foo", | ||
"m.relates_to": { | ||
"m.in_reply_to": { | ||
"event_id": "$111", | ||
}, | ||
}, | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
const editEvent = testUtils.mkEvent({ | ||
event: true, | ||
type: "m.room.message", | ||
content: { | ||
"msgtype": "m.text", | ||
"body": "> Reply to this message\n\n * foo bar", | ||
"m.new_content": { | ||
"msgtype": "m.text", | ||
"body": "foo bar", | ||
// Clear the relation from the original event | ||
"m.relates_to": {}, | ||
}, | ||
"m.relates_to": { | ||
"rel_type": "m.replace", | ||
"event_id": originalEventWithRelation.event_id, | ||
}, | ||
}, | ||
user: "some_other_user", | ||
room: "room_id", | ||
}); | ||
|
||
// The edit replaces the original event | ||
originalEventWithRelation.makeReplaced(editEvent); | ||
|
||
// The relation should be pulled from the edit event | ||
expect(ReplyThread.getParentEventId(originalEventWithRelation)).toStrictEqual(undefined); | ||
}); | ||
}); | ||
}); |