about summary refs log tree commit diff
path: root/app/helpers/emoji_helper.rb
blob: c1595851fdb27c304c8f27b86366871dcb7989ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module EmojiHelper
  EMOJI_PATTERN = /(?<=[^[:alnum:]:]|\n|^):([\w+-]+):(?=[^[:alnum:]:]|$)/x

  def emojify(text)
    return text if text.blank?

    text.gsub(EMOJI_PATTERN) do |match|
      emoji = Emoji.find_by_alias($1) # rubocop:disable Rails/DynamicFindBy,Style/PerlBackrefs

      if emoji
        emoji.raw
      else
        match
      end
    end
  end
end