Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UX question: is better to have "serious delete" or have "trash"

I am developing an application that allows for a user to manage some individual data points. One of the things that my users will want to do is "delete" but what should that mean?

For a web application is it better to present a user with the option to have serious delete or to use a "trash" system?

Under "serious delete" (would love to know if there is a better name for this...) you click "delete" and then the user is warned "this is final and tragic action. Once you do this you will not be able to get -insert data point name here- back, even if you are crying..." Then if they click delete... well it truly is gone forever.

Under the "trash" model, you never trust that the user really wants to delete... instead you remove the data point from the "main display" and put into a bucket called "the trash". This gets it out of the users way, which is what they usually want, but they can get it back if they make a mistake. Obviously this is the way most operating systems have gone.

The advantages of "serious delete" are:

  • Easy to implement
  • Easy to explain to users

The disadvantages of "serious delete" are:

  • it can be tragically final
  • sometimes, cats walk on keyboards

The advantages of the "trash" system are:

  • user is safe from themselves
  • bulk methods like "delete a bunch at once" make more sense
  • saves support headaches

The disadvantages of the "trash" system are":

  • For sensitive data, you create an illusion of destruction users think something is gone, but it is not.
  • Lots of subtle distinctions make implementation more difficult
  • Do you "eventually" delete the contents of the trash?

My question is which one is the right design pattern for modern web applications? How does an "archive" function work into this? That is how gmail works. Give enough discussion to justify your answer... Would love to be pointed towards some relevant research.

-FT

like image 790
ftrotter Avatar asked Mar 16 '10 15:03

ftrotter


2 Answers

Here is a relevant article you might like. It's more focused on business scenarios, but it can apply anywhere.

Don't Delete, Just Don't.

like image 200
Ryan Avatar answered Nov 15 '22 07:11

Ryan


In my personal idiosyncratic view, every irreversible action is a serious design error. These “Are you REALLY, ABSOLUTELY, POSITIVELY sure?” message boxes are pure crap because the user is very quickly conditioned to just click “OK” and be done with it. In fact, I have lost important data despite such dialogs on several occasions.

In other words: these dialog boxes do not add a working fail-safe barrier, just a usability barrier.

Even trash systems have this problem (they just postpone the moment); the best solution from a usability point of view is an infinite history. Of course, implementing this may carry forbidding costs (e.g. in terms of memory usage).

Permanently deleting sensitive data can (and should!) by all means be implemented as a much more complicated action: it is rarely needed. The only issue is to make it clear to the user that data is normally not lost. Using a history instead of the trash can may help here: the trash can could be misunderstood as being a permanent delete while a (visible) history of actions doesn’t give this illusion of safety.

like image 7
Konrad Rudolph Avatar answered Nov 15 '22 08:11

Konrad Rudolph