Page MenuHomePhabricator

[keyserver] Display edited message in the sidebar if the source message is edited
ClosedPublic

Authored by kuba on Mar 22 2023, 5:58 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 10, 9:30 PM
Unknown Object (File)
Sat, Apr 6, 4:18 PM
Unknown Object (File)
Wed, Mar 27, 10:24 PM
Unknown Object (File)
Wed, Mar 27, 10:11 PM
Unknown Object (File)
Mar 21 2024, 8:21 AM
Unknown Object (File)
Mar 21 2024, 4:48 AM
Unknown Object (File)
Mar 15 2024, 9:51 AM
Unknown Object (File)
Mar 7 2024, 1:59 PM

Details

Summary

In case the user creates a sidebar from the message which has been edited, we need to add an edit message to a new thread to display updated content to the client.

In case the user creates a sidebar from the message which has been edited, we need to display updated content to the client. We are doing it by changing the content of sourceMessage of SIDEBAR_SOURCE.

Test Plan

Create a new pending thread from the edited message. Send a message to it. A new thread is created, and the updated content of the first message is visible. The edited source_message is successfully sent to the client.
Create a new pending thread from an unedited message. Send a message and check if everything works as before.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

ashoat requested changes to this revision.Mar 22 2023, 3:08 PM
ashoat added inline comments.
keyserver/src/creators/thread-creator.js
457 ↗(On Diff #23989)

Can you clarify why this is necessary? My understanding is that SIDEBAR_SOURCE works with a "pointer" to a message already, so it seems that we should be able to adjust that code (fetchDerivedMessages) to just call fetchLatestEditMessageContentByID instead of creating extra messages

(On the other hand, any edits to the SIDEBAR_SOURCE that occur after sidebar creation will need to be mirrored in the sidebar with an EDIT_MESSAGE like you are doing here.)

keyserver/src/fetchers/message-fetchers.js
728–731 ↗(On Diff #23989)
  1. What are these parentheses for? You can run git grep AND to see how we typically format SQL queries like this
  2. We typically give FROM its own line
  3. There's no point declaring a table alias if you are only looking at one table
  4. Please remove ALL trailing spaces from this diff
  5. The semicolon is unnecessary unless you use { multipleStatements: true }
This revision now requires changes to proceed.Mar 22 2023, 3:08 PM
keyserver/src/fetchers/message-fetchers.js
726 ↗(On Diff #23989)

You should never use any unless you have a really good reason. You should expect your reviewer will ALWAYS request changes if they see any anywhere unless it is justified

kuba marked 2 inline comments as done.

Addressed some of the comments

keyserver/src/creators/thread-creator.js
457 ↗(On Diff #23989)

Currently, editing messages work in this way:
Every edit message is added (mirrored) to both the parent thread and the sidebar thread (this is how I understood how to do it, but we duplicate the data). It is mirrored both on thread creation (this diff) and on sidebar source message edit (https://phab.comm.dev/D7145).

I will check how derived messages work and see if I can easily add an extra 'edit_message' to the derived message, next to sourceMessage, and then display it.

ashoat added a subscriber: rohan.
ashoat added inline comments.
keyserver/src/creators/thread-creator.js
457 ↗(On Diff #23989)

Adding @rohan here – he is looking at fetchDerivedMessages right now in D7148

keyserver/src/fetchers/message-fetchers.js
733 ↗(On Diff #24031)

Two more nits to match the style in the codebase:

  1. Can you give LIMIT 1 its own line?
  2. Can you put "`;" on its own line?
ashoat requested changes to this revision.Mar 23 2023, 7:25 PM

Back to your queue for nits and fetchDerivedMessages

This revision now requires changes to proceed.Mar 23 2023, 7:26 PM
keyserver/src/creators/thread-creator.js
457 ↗(On Diff #23989)

I want to make sure this approach is correct:

  • we want to have 2 separate `EDIT_MESSAGEs for both the main thread and sidebar,
  • we don't want to copy the content of edited messages,
  • sidebar's EDIT_MESSAGE should only point to the EDIT_MESSAGE in the main thread and load the main EDIT_MESSAGE as a derived message (and its content).

In that way, I don't copy the content of the message. Do I understand it right and should I do it in that way?

Previously, I thought we wanted to: load the latest EDIT_MESSAGE together with the SIDEBAR_SOURCE message, and don't create 2 copies of EDIT_MESSAGEs when editing message with sidebar.

keyserver/src/creators/thread-creator.js
457 ↗(On Diff #23989)

We only want to have 2 separate EDIT_MESSAGES if it is necessary. If the edit occurs before the sidebar is created, we should not need an EDIT_MESSAGE in the sidebar. On the other hand, if the edit occurs after the sidebar is created, there is no other way to do it.

For the case where the edit occurs before the sidebar is created, my suggestion is that we should be able to adjust fetchDerivedMessages so that it fetches the latest edit of the SIDEBAR_SOURCE rather than the original SIDEBAR_SOURCE. This message should look like the original SIDEBAR_SOURCE (eg. a TEXT message), but with the content replaced based on the EDIT_MESSAGE.

Does that make sense? Do you think this is possible?

Changed the way of displaying new content of edited message in the sidebar

kuba retitled this revision from [keyserver] Add the latest edit message to the new sidebar if the source message is edited to [keyserver] Display edited message in the sidebar if the source message is edited ….Mar 28 2023, 2:58 AM
kuba edited the summary of this revision. (Show Details)
kuba retitled this revision from [keyserver] Display edited message in the sidebar if the source message is edited … to [keyserver] Display edited message in the sidebar if the source message is edited.
kuba added inline comments.
keyserver/src/creators/thread-creator.js
457 ↗(On Diff #23989)

This makes sense. I updated the diff (and the other one related to pending threads D7140)

However, there is one issue with it that we have to think through:
On the client side, I cannot determine whether the message has been edited or not. Because of that, I can't display the Edited label properly for the SIDEBAR_SOURCE message.

I believe, that we can leave it like this because when we create the sidebar, we can say that the first message has not been (yet) edited. If we edit the message after the sidebar creation, the label displays correctly.

Perfect!

keyserver/src/creators/thread-creator.js
457 ↗(On Diff #23989)

I agree, I think is a reasonable approach. Thanks for bringing it to my attention!

keyserver/src/fetchers/message-fetchers.js
766 ↗(On Diff #24268)

We could potentially implement this by calling fetchLatestEditMessageContentByIDs... I don't feel strongly, though

This revision is now accepted and ready to land.Mar 28 2023, 5:58 AM
kuba marked 2 inline comments as done.

Removed redundant SQL query, used fetchLatestEditMessageContentByIDs in fetchLatestEditMessageContentByID