I have a shared controller function that I'd like to be reused across controllers:
def render_unprocessable_entity(conn, changeset) do
conn
|> put_status(:unprocessable_entity)
|> render(ExampleApp.ChangesetView, "error.json", changeset: changeset)
end
Question: where can I put this? I've tried to put it into controllers/helpers/controller_helper.ex and it says: undefined function put_status/2
. I can't just add use ExampleApp.Web, :controller
in this helper because it will conflict with existing controller. I could use it as regular module and use alias, but that's more typing of ControllerHelper
everywhere.
I could put it into web.ex maybe? But maybe I should not make that file too big?
What's the best way to DRY up the code?
Use
Kernel.SpecialForms.import/2
to import all exported (public) functions from the desired module (from the helper in this particular case) without explicit namespacing:controller_helper.ex (or any other module)
my_controller.ex (or any other module)
Whether you want to have an access from the single module to all those using it, you might override
__using__/2
callback to import the module, that is callinguse Helper
.The example of this would be: