-
-
Notifications
You must be signed in to change notification settings - Fork 390
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show the difference between edited statuses #3314
Show the difference between edited statuses #3314
Conversation
Diff each status against the previous version, comparing the different HTML as XML to produce a structured diff. Mark new content with `<ins>`, deleted content with `<del>`. Convert these to styled spans in `ViewEditsAdapter`.
I tried this and I love it! Works very well and helps a lot. |
Hmm.
Could you try different builds with different values for the last parameter, and see if that has any effect? Valid values are in https://github.com/pageseeder/diffx/blob/master/src/main/java/org/pageseeder/diffx/load/text/TokenizerFactory.java I'll take a look at their code separately and see if there's an easy fix. |
And if you add a link to this issue to a status that shows the problem that would be great. |
Yes, that regex is too strict. I tried with a local diffx branch where I changed the [A-Z][a-z] parts to \p{L}\p{M} and that seems to work better. I'll try some more tomorrow. Before I tried all standard options and while some technically worked, they were not very elegant. Basically they'd just display the whole text of both posts even if you replace just one word. |
My test post is a DM. I'll do one that I can link here tomorrow. |
Link to post showing the problem The adjusted diffx seems to fix it. Here some partial screenshots with a Russian example. What it looks like now: diffx changed: |
Here is what I did to diffx: https://github.com/sl1txdvd/diffx/tree/unicode |
Thanks for that, very helpful. Looking at the code it seems like there's no way to specify a custom tokenizer using the current API:
I'll file an issue with the project. If they fix it quickly, great. If not, we can fork it and fix it. |
Fixes issue with diffs splitting on accented characters
Upstream have taken that and fixed it in 1.1.1, which this now uses. The edits to https://uff.rip/@rauschen/109867330918031758 now display correctly. |
Awesome! One of my favourite new features. I use it a lot and see more people asking about it. |
Don't use HTML spans and try and format them, create real Android spans. Do this with a custom tag handler that can add custom spans that set the text paint appropriately.
This is probably the right set of abstractions in the code now, so the last bit is probably to figure out how we want to display the differences. Here's a screenshot with the current code. Because the insert/delete markers are Android spans we can do anything, within reason. The current code demonstrates setting background colours, bold, strikethrough, text alpha -- that's probably a bit much. I suspect the choice is either:
Does anyone have strong opinions either way? The one final feature I think we might want to include before this merges is a menu item to toggle the display of differences off and on. Although, if the user is looking at this screen already there's a good argument that they're here because they want to easily see the differences, so this wouldn't be something that gets used. And if we do use background colours I'll add a bit of inset and padding so it's not the harsh square corners that are currently in the screenshot. |
For me it's definitely the red/green. But it won't work great for people with colour blindness I suppose? Maybe a switch for one or the other would be best. Edit: I was referring to the old colours as seen in my screen shots. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
app/src/main/java/com/keylesspalace/tusky/components/viewthread/edits/ViewEditsViewModel.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/com/keylesspalace/tusky/components/viewthread/edits/ViewEditsViewModel.kt
Show resolved
Hide resolved
Make the background slightlysofter by drawing it as a roundrect. Make the spans easier to understand by padding the start/end of each one with the width of a " " character. This is visual only, the underlying text is not changed.
# Conflicts: # app/src/main/java/com/keylesspalace/tusky/components/viewthread/edits/ViewEditsViewModel.kt
I checked screenshots with the colours against https://www.color-blindness.com/coblis-color-blindness-simulator/. Light mode appears fine, the colours are distinct in every variation it tests for. Dark mode is tougher to distinguish with Red-Blind/Protanopia or Green-Blind/Deuteranopia. I'd be OK with a preference with switches for:
(so it's three preferences under the hood). It can pop up a dialog with the three switches and an example view that updates as they change them to show the difference. |
Yes, should be a solid color to avoid this |
This needs to be rolled back, I've discovered an unintended bug. The span type doesn't work over multiple lines, so if the text exceeds the screen margin it extends off the end. I've got a fix which I'm testing, although the UI isn't quite as pretty. |
That is not bad enough for a rollback |
Diff each status against the previous version, comparing the different HTML as XML to produce a structured diff.
Mark new content with
<tusky-ins>
, deleted content with<tusky-del>
.Convert these to styled spans in
ViewEditsAdapter
.Fixes #3306