mirror of
https://github.com/plausible/analytics.git
synced 2024-11-26 23:27:54 +03:00
24a8aa2821
* Reapply "Sentry context in live views (#3672)" This reverts commit 5449fead160064b8a0081c458cc5dcd34399eb0b. * Make sure `:selection_made` is handled in `GoalSettings.Form` That was a bit unepexcted.. normally `handle_info` is injected by the LiveView use macro and it discards any message gracefully. After switching to `use PlausibleWeb, :live_view` we're also using `PlausibleWeb.Live.Flash` that happens to inject its own receive clause for closing the flash. Which then renders the original, overridable, `handle_info` catch-all obsolete. * Update LV SentryContext only on connected sockets (first mount already has the right context coming from Sentry plug) * Make sure Live.ChoosePlan passes `current_user_id` session key
109 lines
2.6 KiB
Elixir
109 lines
2.6 KiB
Elixir
defmodule PlausibleWeb do
|
|
def live_view(opts \\ []) do
|
|
quote do
|
|
use Plausible
|
|
use Phoenix.LiveView, global_prefixes: ~w(x-)
|
|
use PlausibleWeb.Live.Flash
|
|
|
|
unless :no_sentry_context in unquote(opts) do
|
|
use PlausibleWeb.Live.SentryContext
|
|
end
|
|
|
|
alias PlausibleWeb.Router.Helpers, as: Routes
|
|
alias Phoenix.LiveView.JS
|
|
end
|
|
end
|
|
|
|
def controller do
|
|
quote do
|
|
use Phoenix.Controller, namespace: PlausibleWeb
|
|
|
|
import Plug.Conn
|
|
import PlausibleWeb.ControllerHelpers
|
|
alias PlausibleWeb.Router.Helpers, as: Routes
|
|
end
|
|
end
|
|
|
|
def view do
|
|
quote do
|
|
use Phoenix.View,
|
|
root: "lib/plausible_web/templates",
|
|
namespace: PlausibleWeb
|
|
|
|
# Import convenience functions from controllers
|
|
import Phoenix.Controller, only: [view_module: 1]
|
|
|
|
# Use all HTML functionality (forms, tags, etc)
|
|
use Phoenix.HTML
|
|
use Phoenix.Component
|
|
|
|
import PlausibleWeb.ErrorHelpers
|
|
import PlausibleWeb.FormHelpers
|
|
import PlausibleWeb.Components.Generic
|
|
alias PlausibleWeb.Router.Helpers, as: Routes
|
|
end
|
|
end
|
|
|
|
def router do
|
|
quote do
|
|
use Phoenix.Router
|
|
import Plug.Conn
|
|
import Phoenix.Controller
|
|
end
|
|
end
|
|
|
|
def channel do
|
|
quote do
|
|
use Phoenix.Channel
|
|
end
|
|
end
|
|
|
|
def plugins_api_controller do
|
|
quote do
|
|
use Phoenix.Controller, namespace: PlausibleWeb.Plugins.API
|
|
import Plug.Conn
|
|
import PlausibleWeb.Plugins.API.Router.Helpers
|
|
import PlausibleWeb.Plugins.API, only: [base_uri: 0]
|
|
|
|
alias PlausibleWeb.Plugins.API.Schemas
|
|
alias PlausibleWeb.Plugins.API.Views
|
|
alias PlausibleWeb.Plugins.API.Errors
|
|
alias Plausible.Plugins.API
|
|
|
|
plug(OpenApiSpex.Plug.CastAndValidate, json_render_error_v2: true, replace_params: false)
|
|
|
|
use OpenApiSpex.ControllerSpecs
|
|
end
|
|
end
|
|
|
|
def plugins_api_view do
|
|
quote do
|
|
use Phoenix.View,
|
|
namespace: PlausibleWeb.Plugins.API,
|
|
root: ""
|
|
|
|
alias PlausibleWeb.Plugins.API.Router.Helpers
|
|
import PlausibleWeb.Plugins.API.Views.Pagination, only: [render_metadata_links: 4]
|
|
end
|
|
end
|
|
|
|
def open_api_schema do
|
|
quote do
|
|
require OpenApiSpex
|
|
alias OpenApiSpex.Schema
|
|
alias PlausibleWeb.Plugins.API.Schemas
|
|
end
|
|
end
|
|
|
|
@doc """
|
|
When used, dispatch to the appropriate controller/view/etc.
|
|
"""
|
|
defmacro __using__(which) when is_atom(which) do
|
|
apply(__MODULE__, which, [])
|
|
end
|
|
|
|
defmacro __using__([{which, opts}]) when is_atom(which) do
|
|
apply(__MODULE__, which, [List.wrap(opts)])
|
|
end
|
|
end
|