Migrate to Vue 3 and Vite

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2022-07-12 10:55:28 +02:00
parent 8f4099ee33
commit ee20e03cc2
464 changed files with 31515 additions and 32758 deletions

View File

@@ -4,6 +4,7 @@ defmodule Mobilizon.Service.Statistics do
"""
alias Mobilizon.{Actors, Discussions, Events, Users}
alias Mobilizon.Events.Categories
alias Mobilizon.Federation.ActivityPub.Relay
@spec get_cached_value(String.t()) :: any() | nil
@@ -60,4 +61,23 @@ defmodule Mobilizon.Service.Statistics do
relay_actor = Relay.get_actor()
Actors.count_followings_for_actor(relay_actor)
end
@spec category_statistics :: list({String.t(), non_neg_integer()})
def category_statistics do
case Cachex.fetch(:statistics, :categories, fn ->
allowed_categories =
Categories.list()
|> Enum.map(fn %{id: category} -> category |> Atom.to_string() |> String.upcase() end)
statistics =
Events.category_statistics()
|> Enum.filter(fn {category, _} -> category in allowed_categories end)
|> Enum.map(fn {category, number} -> %{key: category, number: number} end)
{:commit, statistics}
end) do
{status, value} when status in [:ok, :commit] -> value
_err -> nil
end
end
end