Browse Source

Split emoji to default and custom.

tags/v0.9.9
eal 6 years ago
parent
commit
ab8b9ababa
2 changed files with 13 additions and 7 deletions
  1. +0
    -0
      config/emoji_default.txt
  2. +13
    -7
      lib/pleroma/formatter.ex

config/emoji.txt → config/emoji_default.txt View File


+ 13
- 7
lib/pleroma/formatter.ex View File

@@ -104,13 +104,19 @@ defmodule Pleroma.Formatter do
{finmoji, "/finmoji/128px/#{finmoji}-128.png"}
end)

@emoji_from_file (with {:ok, file} <- File.read("config/emoji.txt") do
file
|> String.trim
|> String.split("\n")
|> Enum.map(fn(line) ->
[name, file] = String.split(line, ", ")
{name, file}
@emoji_from_file (with {:ok, default} <- File.read("config/emoji.txt") do
custom =
with {:ok, custom} <- File.read("config/custom_emoji.txt") do
custom
else
_e -> ""
end
(default <> "\n" <> custom)
|> String.trim()
|> String.split(~r/\n+/)
|> Enum.map(fn(line) ->
[name, file] = String.split(line, ~r/,\s*/)
{name, file}
end)
else
_ -> []


Loading…
Cancel
Save