bootrails.com is now moving to saaslit.com  See you there!
bootrails moves to  saaslit.com
Post

Rails flash messages and UX

Flash message is a very old notion of Ruby-on-Rails. This article will be focused on the usability of these messages.

Flash is a designer vocabulary

Flash messages are not specific to Rails. Actually, if you google around “flash messages”, you will show you some web designer examples.

Flash messages are these small feedback that the user receives, after an interaction with the web application.

It sounds like this :

  • “Login successful”
  • “Errors on form”
  • “Item added to the cart”

It helps to make obvious what worked well, and what didn’t.

Flash messages, server-side : the easy part

On the server side, a flash message look like this :

1
2
3
4
5
6
7
class LoginsController < ApplicationController
 def destroy
  session.delete(:current_user_id)
  flash[:notice] = "You have successfully logged out."
  redirect_to root_url, status: :see_other
 end
end

How easy is that ?

  • “flash” object is well-named
  • “flash” object is given for free, inside each action of each controller
  • “flash” object can be used like a Hash to store the fabulous message
  • “flash” object can be a “notice” (neutral tone, for neutral message) or “alert” (scary tone, maybe an error message)
  • “flash” object is emptied after each request, making possible for the next request to display another message, related to the new action of the user

So nothing really fancy here. The flash message is easy to read, easy to write, easy to understand.

Flash messages, frontend side, the complicated part

What’s the problem with the front part ? There are multiple ways to render the fabulous message.

Remember how easy it is on the server side.

Not here, alas.

I like this diagram :

Pyramid of intrusiveness for a flash message
Pyramid of intrusiveness for a flash message

Source : Thirdwunder design alerts notifications

As you can see, there are tons of ways to render the flash message, but there are not all equals : they can be classified with their degree of intrusiveness.

  • A Spinner is less intrusive than a toast message (the small rectangle message in a corner of the screen)
  • A toast message is less intrusive than a HTML banner
  • A modal is super-intrusive

Notice that “intrusive” doesn’t mean “bad”. It just correlated to the degree of dangerousness of the current action.

Typically, if you try to delete a Github repository, you will probably have a User Experience that matches the top of the pyramid, because you risk losing data in an irreversible way.

How do rails-y websites solves this

From what I noticed, for Rails-based websites, it’s mostly a set-and-forget setup.

Let’s see some examples :

1
2
3
4
5
6
7
8
9
10
<html>
 <!-- <head/> -->
 <body>
  <% flash.each do |name, msg| -%>
   <%= content_tag :div, msg, class: name %>
  <% end -%>

  <!-- more content -->
 </body>
</html>

So as you can guess, a banner will be displayed on top of your website each and every time you need to give feedback to your user.

It’s both bad and good.

  • The good part is efficiency. You don’t want to spend too much time on flash messages, given the amount of work on other parts of your application.
  • The bad one is the connection to your user. Will he/she see the banner on top of your website, if he/she filled a small form at the bottom of a page ? Maybe not.

Probably the best way to tackle this is to do like the rails-y websites, but also to take care about particular pages, where the banner or other global strategy will not apply.

Rails flash message and a11y issues

Since the rise of Single Page Application ~10 years ago, and Hotwire ~2 years ago, more and more elements appear dynamically on the page, making it difficult for screen readers to read anything.

I wouldn’t say that making a flash message accessible is difficult, but, you need to take time to read the docs, and more importantly, to test it manually.

Rails devs love to talk (and code) about Rspec, Minitest, and simplecov, the thing is,

Automated accessibility tools catch only around 20-25% of A11Y issues; the more interactive your webpage is, the fewer bugs it catches.

Extracted from this excellent smashing magazine article about accessibility, it also covers feedback messages - in the special case of form error, but still very useful.

There’s also an excellent documentation about toast messages in the official Bootstrap documentation - as if I prefer TailwindCSS by now, this article is more general-purpose anyway, so not bound to any CSS tool.

Conclusion

To sum up, if I was starting a new Rails application nowadays, I would treat flash messages this way :

  • First, I would enrich the base vocabulary of the server-side flash message object. Remember, it only takes care of :notice and :alert. Most Tailwind kits have 5 or more kind of message. This will maximise the kind of messages you want to say to your user
  • Second, I will generalize the rendering on the frontend, like most rails-y websites do. But, I will also take care about not using this strategy for a particular case.
  • Third, I will embed accessibility from day one. This is not negotiable. I don’t want to lose users, and I don’t want to build things for the most lucky and healthy of us.

Take care, health first then!

David

This post is licensed under CC BY 4.0 by the author.