index.community/backend/lib/backend_web/views/graph_view.ex

62 lines
1.4 KiB
Elixir
Raw Normal View History

2019-07-14 11:47:06 +00:00
defmodule BackendWeb.GraphView do
use BackendWeb, :view
alias BackendWeb.GraphView
def render("index.json", %{nodes: nodes, edges: edges}) do
2019-07-27 17:58:40 +00:00
statuses_per_day =
nodes
|> Enum.map(fn %{statuses_per_day: statuses_per_day} -> statuses_per_day end)
|> Enum.filter(fn s -> s != nil end)
2019-07-14 11:47:06 +00:00
%{
2019-07-27 17:58:40 +00:00
graph: %{
nodes: render_many(nodes, GraphView, "node.json", as: :node),
edges: render_many(edges, GraphView, "edge.json", as: :edge)
},
metadata: %{
ranges: %{
# Make sure that these keys match what's in the "node.json" render function.
2019-07-27 17:58:40 +00:00
statusesPerDay: [
2019-08-02 19:49:47 +00:00
Enum.min(statuses_per_day, fn -> nil end),
Enum.max(statuses_per_day, fn -> nil end)
2019-07-27 17:58:40 +00:00
]
}
}
2019-07-14 11:47:06 +00:00
}
end
2019-07-24 15:51:44 +00:00
def render("node.json", %{node: node}) do
2019-07-14 11:47:06 +00:00
size =
case node.user_count > 1 do
true -> :math.log(node.user_count)
false -> 1
end
# This is the format that cytoscape.js expects.
2019-07-14 11:47:06 +00:00
%{
data: %{
id: node.domain,
label: node.domain,
2019-07-24 15:51:44 +00:00
size: size,
2019-07-27 17:58:40 +00:00
type: node.type,
statusesPerDay: node.statuses_per_day
},
position: %{
x: node.x,
y: node.y
}
2019-07-14 11:47:06 +00:00
}
end
2019-07-24 15:51:44 +00:00
def render("edge.json", %{edge: edge}) do
2019-07-14 11:47:06 +00:00
%{
data: %{
id: edge.id,
source: edge.source_domain,
target: edge.target_domain,
weight: edge.weight
}
2019-07-14 11:47:06 +00:00
}
end
end