There are MANY Turbo/Hotwire/Stimulus modal dialog implementations out there, and it seems like everyone goes about it a different way. However, as you may have learned the hard way, the majority fall short in different, often subtle ways. They generally cover the basics quite well, but do not check all the boxes for real-world use.
UTMR aims to be the be-all and end-all of Turbo Modals. I believe it is the best (only?) full-featured implementation and checks all the boxes. It is feature-rich, yet extremely easy to use.
Under the hood, it uses Stimulus, Turbo, el-transition, and Idiomorph.
It currently ships in a three flavors: Tailwind v3, Tailwind v4 and regular, vanilla CSS. It is easy to create your own variant to suit your needs.
$ bundle add ultimate_turbo_modal
$ bundle exec rails g ultimate_turbo_modal:install
- Extremely easy to use
- Fully responsive
- Does not break if a user navigates directly to a page that is usually shown in a modal
- Opening a modal in a new browser tab (ie: right click) gracefully degrades without having to code a modal and non-modal version of the same page
- Automatically handles URL history (ie: pushState) for shareable URLs
- pushState URL optionally overrideable
- Seamless support for multi-page navigation within the modal
- Seamless support for forms with validations
- Seamless support for Rails flash messages
- Enter/leave animation (fade in/out)
- Support for long, scrollable modals
- Properly locks the background page when scrolling a long modal
- Click outside the modal to dismiss
- Option to whitelist CSS selectors that won't dismiss the modal when clicked outside the modal (ie: datepicker)
- Keyboard control; ESC to dismiss
- Automatic (or not) close button
A demo application can be found at https://github.com/cmer/ultimate_turbo_modal-demo. A video demo can be seen here: https://youtu.be/BVRDXLN1I78.
- Wrap your view inside a
modal
block as follow:
<%= modal do %>
Hello World!
<% end %>
- Link to your view by specifying
modal
as the target Turbo Frame:
<%= link_to "Open Modal", "/hello_world", data: { turbo_frame: "modal" } %>
Clicking on the link will automatically open the content of the view inside a modal. If you open the link in a new tab, it will render normally outside of the modal. Nothing to do!
If you need to do something a little bit more advanced when the view is shown outside of a modal, you can use the #inside_modal?
method as such:
<% if inside_modal? %>
<h1 class="text-2xl mb-8">Hello from modal</h1>
<% else %>
<h1 class="text-2xl mb-8">Hello from a normal page render</h1>
<% end %>
Adds padding inside the modal.
Shows or hide a close button (X) at the top right of the modal.
When opening the modal, the URL in the URL bar will change to the URL of the view being shown in the modal. The Back button dismisses the modal and navigates back.
If a URL is specified as a String, the browser history will advance, and the URL shown in the URL bad will be replaced by the URL specified.
Title to display in the modal header. Alternatively, you can set the title with a block.
Whether to display a modal header.
Whether to display a divider below the header.
Whether to display a divider above the footer. The divider will not appear if no footer was specified.
A string of CSS selectors that can be clicked outside of the modal without dismissing the modal. Useful for elements such as datepickers.
<%= modal(padding: true, close_button: false, advance: false) do %>
Hello World!
<% end %>
<%= modal(padding: true, close_button: false, advance: "/foo/bar") do %>
Hello World!
<% end %>
You can set a custom title and footer by passing a block. For example
<%= modal do |m| %>
<% m.title do %>
<div>My Title</div>
<% end %>
Modal body
<% m.footer do %>
<input type="submit" form="myform">Submit</input>
<% end %>
<% end %>
-
Remove the two
setupUltimateTurboModal
-related lines fromapp/javascript/controllers/index.js
: -
Remove anything UTMR-specific in
tailwind.config.js
. -
Remove the optional Idiomorph tweaks:
<script src="https://unpkg.com/idiomorph"></script>
from your HTMLaddEventListener("turbo:before-frame-render", (event) => {...
fromapplication.js
-
Update the gem to the newest version and follow the installation instructions above.
Thanks to @joeldrapper and @konnorrogers for all the help!
Bug reports and pull requests are welcome on GitHub at https://github.com/cmer/ultimate_turbo_modal.
The gem is available as open source under the terms of the MIT License.