No commit activity in last 3 years
No release in over 3 years
Simple Emoji picker for your app
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
>= 0
~> 10.0
>= 0

Runtime

>= 0
 Project Readme

Uriji Emoji Picker

Simple integration of emoji picker with your rails application.

Gem

Preview

Uriji Emoji Picker

Installation

Add this line to your application's Gemfile:

gem 'uriji_emoji_picker'

Usage

Run command

rails g uriji_emoji_picker:install

It copies emoji images to your /assets/images directory

Add emoji picker js file

application.js

//= require jquery
//= require uriji_emoji_picker
//= require_tree .
And styles

application.css

/*
 *= require_tree .
 *= require uriji_emoji_picker
 *= require bootstrap
 *= require_self
 */

application.scss or sass

@import 'uriji_emoji_picker'

Next step, wrap your text input with css class emoji-picker-container

And add data-attribte data: { emojiable: true } to your input/text_area.

<p class="emoji-picker-container">
  <%= f.text_field :title, class: 'form-control', data: { emojiable: true } %>
</p>

To see emoji in views, wrap your text with helper emojify.

  <%= emojify(@post.title) %>

If you interpolate string, you need to call html_safe, because it's another string.

  <%= "Post body: #{emojify(@post.body)}".html_safe %>

Also, you can render emojis with a javascript helper.

  emojify(text)

Emoji Asset Host

By default when used with Rails, this gem will inherit Rails configured Rails.asset_host. Otherwise, you will need to manually configure the Emoji.asset_host as a string URL or a lambda/proc.

# String URL
Emoji.asset_host = 'http://mysite.com'

# Custom Host Proc, takes asset path as a param
Emoji.asset_host = lambda {|path| path.size % 2 == 0 ? 'http://even.com' : 'http://odd.com'}

Advices

Precompile emoji images in development for fast loading
Use github (or your hosting) as a CDN, to serve images.

Example:

# => /initializers/emoji_picker.rb

Emoji.asset_host = 'https://raw.githubusercontent.com'
Emoji.asset_path = '/ID25/uriji_emoji_picker/master/lib/generators/uriji_emoji_picker/emoji/'

That's all! 😺

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/uriji/uriji-emoji-picker.

License

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