2019-09-02 14:29:19 +03:00
|
|
|
defmodule PlausibleWeb.SiteView do
|
|
|
|
use PlausibleWeb, :view
|
|
|
|
|
2019-10-31 09:36:16 +03:00
|
|
|
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
|
|
|
|
|
2020-01-29 12:29:11 +03:00
|
|
|
def shared_link_dest(link) do
|
|
|
|
PlausibleWeb.Endpoint.url() <> "/share/" <> link.slug
|
|
|
|
end
|
|
|
|
|
2020-02-06 12:25:24 +03:00
|
|
|
def snippet(site) do
|
2019-09-02 14:29:19 +03:00
|
|
|
"""
|
2020-02-06 16:18:37 +03:00
|
|
|
<script async defer data-domain="#{site.domain}" src="https://plausible.io/js/plausible.js"></script>
|
2019-09-02 14:29:19 +03:00
|
|
|
"""
|
|
|
|
end
|
|
|
|
end
|