mirror of
https://github.com/plausible/analytics.git
synced 2024-12-18 23:11:43 +03:00
22 lines
523 B
Elixir
22 lines
523 B
Elixir
defmodule PlausibleWeb.SiteView do
|
|
use PlausibleWeb, :view
|
|
|
|
def goal_name(%Plausible.Goal{page_path: page_path}) when is_binary(page_path) do
|
|
"Visit " <> page_path
|
|
end
|
|
|
|
def goal_name(%Plausible.Goal{event_name: name}) when is_binary(name) do
|
|
name
|
|
end
|
|
|
|
def shared_link_dest(link) do
|
|
PlausibleWeb.Endpoint.url() <> "/share/" <> link.slug
|
|
end
|
|
|
|
def snippet(site) do
|
|
"""
|
|
<script async defer data-domain="#{site.domain}" src="https://plausible.io/js/plausible.js"></script>
|
|
"""
|
|
end
|
|
end
|