david

david

Hi there!

Trying to determine what’s the right approach to extending a Phoenix app’s functionality.

I have a small hex package, Fuentes, for handling double-entry accounting. I’m looking to build another package, Phoenix_Fuentes, to allow people to integrate that functionality into their application. My intention was to have a PhoenixFuentes.AccountController as well as default views allowing people to just add resources "/accounts", PhoenixFuentes.AccountController to their router.ex and all would be right in the world.

I thought I’d be able to do something like:

defmodule PhoenixFuentes.AccountController do
  use (SomeFunctionToGetParentApp).Web, :controller

  def index(conn, _params) do
    render conn, "index.html"
  end
end

But was shown in the phoenix channel on slack how that might result in circular dependencies at compile time and just wasn’t a good idea.

Looking into the use macro, I see it calls (as generated):

      use Phoenix.Controller<%= if namespaced? do %>, namespace: <%= application_module %><% end %>
<%= if ecto do %>
      alias <%= application_module %>.Repo
      import Ecto
      import Ecto.Query
<% end %>
      import <%= application_module %>.Router.Helpers
      import <%= application_module %>.Gettext

so I can’t just duplicate it’s functionality as the library won’t know what application (the application_module) it is a dep of.

Accordingly, right now I’m seeing two options:

  1. A mix generator to copy templates of the account controller and account views to the parent app, to allow people to use TheirApp.AccountController instead of PhoenixFuentes.AccountController.
  2. A standalone phoenix application which is under an umbrella application.

I was intending to provide Option 1 to allow people the ability to customize controllers and views as needed, but was hoping there was a way to facilitate “trying it out” without needing to touch their own codebase. I’m also not sure if Option 2 is even a true option?

Has anyone encountered other Elixir libraries that try to accomplish this type of “extension” functionality?
Any other options or better ways of solving this problem that I should consider?

Thanks!

Showing Posts 1 to 1

chrismccord

chrismccord

Creator of Phoenix

It’s not clear why you need to do something like this within your library? What would the above achieve in the context of your controller? Instead, if you left it as use Phoenix.Controller, what prevents that from working for you? You can serve the templates from your app as normal and it would just work. If the user wanted to override the templates, they could use put_view MyApp.MyFuentesView in a pipeline that calls your router/controller? If you can give a better description on the kind of extension you’re going for, I can say more, but the injection approach from the “parent” app is not the right way to think about it :slight_smile:

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
psy-q
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews