SnackbarJS for Rails
See demo: http://fezvrasta.github.io/snackbarjs/
Installation
Add this line to your application's Gemfile:
gem 'snackbarjs-rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install snackbarjs-rails
Usage
application.js
//= require snackbar
application.css.scss
@import "snackbar";
@import "snackbar-material"; //optional
Turn all Flash messages into Snackbars (optional)
Add to the bottom of your layout
<%= javascript_tag do %>
window.flashMessages = $.parseJSON('<%=j flash.to_hash.to_json.html_safe %>');
<% end %>
# Or For slim
javascript:
window.flashMessages = $.parseJSON('#{j flash.to_hash.to_json.html_safe}')
And then to your application.js document ready
(and page:load
for turbolinks)
$.each( flashMessages, function(key, value){
$.snackbar({content: value, style: key, timeout: 10000});
});
Finally edit your application.css.scss
.snackbar.error {
background-color: red;
}
.snackbar.alert {
background-color: yellow;
color: black;
}
.snackbar.notice {
background-color: green;
}
Contributing
- Fork it ( https://github.com/elfassy/snackbarjs-rails/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request