mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 19:48:06 +01:00
e2685ccc81
- Use unicode when selecting emoji through picker - Convert shortcodes to unicode when storing text input server-side - Do not convert shortcodes in JS anymore
19 lines
400 B
Ruby
19 lines
400 B
Ruby
# 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
|