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
|
2020-03-02 11:44:36 +03:00
|
|
|
tracker = if site.custom_domain do
|
|
|
|
"https://" <> site.custom_domain.domain <> "/js/index.js"
|
|
|
|
else
|
|
|
|
"https://plausible.io/js/plausible.js"
|
|
|
|
end
|
2020-02-26 11:54:21 +03:00
|
|
|
|
2019-09-02 14:29:19 +03:00
|
|
|
"""
|
2020-03-02 11:44:36 +03:00
|
|
|
<script async defer data-domain="#{site.domain}" src="#{tracker}"></script>
|
2019-09-02 14:29:19 +03:00
|
|
|
"""
|
|
|
|
end
|
|
|
|
end
|