jack

jack

Hello there,

I’m just starting with Elixir and Phoenix.

I’m wondering if I could understand the Phoenix “life cycle” correctly so far.
A “Traditional Phoenix Application” can be described simply as:

connection
|> endpoint()
|> router()
|> pipeline()
|> controller()

I like very much the simplicity of how the book use the Elixir pipelining to explain the application flow, the code is really very well documented by itself and you don’t really need flowcharts to explain the framework.

This part is quite verbose, I’ll describe the way how I understood each “part” of the Phoenix Framework and how it uses the MVC design pattern.

Migrations → defines a table structure for a database, here you can create a table, add fields and unique indexes.
Schema → create a data structure related to a table (defined on migrations), and define functions for validations using a “changeset”.
Context → a context uses a schema and Repo to define functions and pipelines to transform and persist data.
Controller → the controller will access the context asking for functions and pipelines, and will ask view to render the correct related page.
View → defines specific functions for parsing and filtering data to be used from a Template, and will render a specified Template.
Template → the actual HTML code and front-end logic.
Router → receive request and select correct controller.

MVC → Model = Schema+Context, View = View+Template, Controller = Router+Controller

I’m trying to make it a bit more clear to me trying to have an overview by using a State Diagram.
I’m not experienced in writing State Diagrams, so we can try to just interpret it abstractly? :stuck_out_tongue_closed_eyes:
(I’m open to any corrections and tips about it)
But as I have to learn how to use State Diagrams for my current job, I’ll try to explain the app flow using it.

New users can’t upload images, so I’ll have to upload it in a third party service. You might need to click the image to see it clearly.
https://imgur.com/a/YiIaj1x

Is it correct?
Could I say that those “steps” (states) of endpoint, router and pipeline can propagate an “error” input (the application state, in this case the “connection” data structure), and so, we end in a software “Error state”, propagating the conn down the pipelining, that will end in the “View” layer?

I didn’t connected the “Controller state” in the “Error state”, but the “conn” could propagate errors on this state as well, like form validation errors… changeset. Maybe I should have connected this transition.

But my main question, apart from the overall understanding is, it’s correct to interpret the “application flow” like this? Could I say that errors occurring in the endpoint, router and pipeline will end to be rendered in the View layer as well?

Because if I hit the wrong endpoint, if I request the wrong route, or if there is any validation problem during the proper pipeline (browser/api/other), Phoenix will render a special error template to reflect that as well, so we hit the View layer without hitting “our” Controller, right?

Sorry if this reasoning is plain wrong and sounds confusing.
I do am confused and I’m quite a beginner using MVC. :sweat_smile:

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
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
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
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
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 & Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews