-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
consistent Delete/Copy/Save UX across media types #1105
consistent Delete/Copy/Save UX across media types #1105
Conversation
Looks nice Michael. The native action sheets look much nicer. The DJW animations had felt unsettling too. But wouldn't it make sense to have "Save/Copy/Delete" all available when long pressing on an image (#825), instead of only "Delete". These are all common actions. |
@rocknjohn - I agree with you. Plus that's the behavior of native messaging app. Here's what would need to be done:
I won't get to it until later this week, per other working obligations. Thanks for the feedback! |
62263ae
to
9cbe597
Compare
OK - some progress here. This PR is getting pretty large... I've killed off the "share" menu all together, since the items in it are more conventionally found in the edit-menu (that's this guy, which you get to by long pressing). The bad news is that until #793 is complete, we won't be able to paste anything into Signal. So, silly enough, you can copy these things, but you can still only paste text into Signal at this point. The feature feels incomplete without also fixing the paste situation, but this PR is already getting quite big. I'll update the description to reflect the current state of things. |
if (action == @selector(delete:)) { | ||
DDLogDebug(@"Deleting interaction with uniqueId: %@", self.interaction.uniqueId); | ||
[self.interaction remove]; | ||
} else if (action == @selector(copy:)) { |
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.
These long type reflection switch statements are screaming for refactoring based on inheritance, but I was trying not to move too much at once.
42e0806
to
a8e59c6
Compare
0afbff8
to
a0b7f98
Compare
+1 for this to be merged and committed to the App Store available version. |
82c7d93
to
c177d65
Compare
73d6a87
to
a497d8b
Compare
1b461dc
to
a4a9b43
Compare
a2c15ff
to
966ebd4
Compare
// FREEBIE
966ebd4
to
c9a33ea
Compare
f77d98c
to
d72c190
Compare
copy/save/delete is accessed via longpress for all media messages, just like for simple text messages. Notes ----- We don't support saving audio attachments as it's not clear where they should go. (I don't think users expect them to end up in their iTunes library.) There is still no UX for "pasting" media into Signal. Removed the now redundant (and confusing) "share" button interface. //FREEBIE
d72c190
to
9db3b0d
Compare
I am using Signal 2.4.0 from the app store. The share button has indeed disappeared. But I only see copy/delete using the edit menu via long-press on an image. Is this intentional? |
@JohanDoe - That's not intentional, and sounds like a bug. You should be able to save static images, animated GIFs, and video (but not audio or text). Can you file a new bug and include screenshots? |
@michaelkirk strange. Created a new conversation thread for the bug report screenshots and now everything is as it used to be. Can save images, also in old thread. Can't reproduce right now. Will keep an eye on it and if I can reproduce I will submit a bug report. |
👀 Thanks @JohanDoe! |
Delete/Copy/Save media items via long press menu from within conversation view.
Fix for #1103 and #704
The new functionality is
Motivation
This is in line with how people expect to interact with messages (e.g. see WhatsApp and the Native Messaging app), and we were already doing it with Text messages. But for some reason we were doing these actions differently for images, and not at all for videos.
Previous UX
In order to delete an image, first, you'd tap on the image to bring up the full screen view:
Then, tap "Share" button to open an action sheet, then press delete:
Proposed UX
Now we're doing this consistently across message types using the edit menu, via long-press:
Consequently the "share" icon has been removed from the fullscreen image view: