0.0
No commit activity in last 3 years
No release in over 3 years
A simple Gem that allows you to integrate flash messages using Noty JS, Toastr JS or Bootstrap
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 10.0
 Project Readme

FlashNotifier

If you are tired of integrating flash messages in your rails application over and over again then this gem is for you!

Installation

Add this line to your application's Gemfile:

gem 'flash_notifier'

And then execute:

$ bundle

Or install it yourself as:

$ gem install flash_notifier

Usage

For Bootstrap Flash Messages

Add this helper method in your layout and make sure you have bootstrap installed!

<%= build_bootstrap_flash %>

You can make the flash dismissible by passing following optional options to the above helper method

<%= build_bootstrap_flash dismiss: true, timeout: 5000 %>
default timeout duration is 5000, ignore this option if you want to use default timeout duration

You can add your own wrapper class by passing following parameter

<%= build_bootstrap_flash wrapper_class: 'my-flash-notification' %>

For other two libraries follow following steps

Step 1: Choose a Library Noty JS or Toastr JS

For Noty JS 3.1.4 (Official Website)

Import noty library in your application.js

//= require noty_lib

Add noty stylesheet in your application.scss

@import "noty";

For Toastr JS 2.1.4 (Official Website)

Import noty library in your application.js

//= require toastr_lib

Add noty stylesheet in your application.scss

@import "toastr.min";

Step 2

In your layout add this helper method

<%= build_flash %>

Optional Step 3: Pass options to helper method

To manage progress bar pass param

<%= build_flash progressBar: true %>

To set auto hide timeout pass param

 <%= build_flash timeout: 3500 %>

To set default theme pass param (Note this param works only for Noty JS)

 <%= build_flash theme: 'mint' %>
Values for these params and additional config options can be found here Noty JS, Toastr JS

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/fakhir-shad/flash_notifier. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the FlashNotifier project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.