Nefcairon
Hello,
After coding with ruby on rails 2005-2010 I tried to have fun with web development again by trying to use elixir/phoenix 2016 and again 2018. Both times I lost interest after some time. Not that I switched technology-wise, I completely ditched web development at all, thinking that its still not as advanced as I want it to be.
Recently I realized why (at least the main reason).
First, I really think that phoenix is great. Creating a small web application is done pretty quickly. But maintaining and extending the project is a hard task for me - it gets cumbersome as the project grows.
I want to give you an example: When I need to display the contents of a database table on a web page in a so called data table I create the necessary files and functions and declare all the html+css stuff (and maybe include an additional js framework for some fancy behaviour). That’s simple.
But: In one of the next features I certainly want to display another table that should have exactly the same look & feel. So I am reusing what I created before and do a lot of copy & paste. After a few features I end up having a lot of files that all contain almost the same lines of code, just with small differences. This is the opposite of DRY. And whenever I leave my project for a few days, I have a hard time to recall what happens where and each time I want to change the look & feel I have to change it in several files (of course I always miss some).
While I structure and refactor my elixir code by using functions, my frontend stuff just bloats.
What I need to re-enjoy web development is to be able to create a UI component once and easily be able to reuse it as often as I wish. I just want to drop in a data table and tell it the data source it should display and have some options that determine its behaviour (sortable columns, multi or single selection, paging or infinite scrolling, filters etc.).
Is it just me that this is extremely fatiguing? Or are there already solutions/techniques that I just missed?
[Through the last months I came across many concepts that maybe are what I am looking for, but I just cannot put them in relation and neither appear to be simple to use / have a shallow learning curve:
Web Components
Polymer
VUE/React
Material Components
Phoenix.(Live)Component
Surface
Maybe someone wants to shed some light on these]
Trending in Discussions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 15 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
wallyfoo
I would rather pet a live scorpion than style one more login form. I crossed my burnout threshold years ago.
Phoenix makes web development tolerable for me, but I foist off as much front-end stuff as I can these days. Why can’t I just build systems in peace?
januarvs
Probably Wrangler - http://refactoringtools.github.io/wrangler/overview-summary.html
TwistingTwists
I don’t understand “analysing code” part. What does that mean?
Point me to a good link / book / docs ?
dimitarvp
Not convinced it can. We need tooling that is able to analyze code. And I am not sure Elixir has that?
TwistingTwists
So , macros in Elixir could accomplish what we are trying to achieve in Homoiconic language, right?
Just that macros might be needed to run in iex shell, rather than bash.
Also, mix might come to rescue, if it can run macros as well as tasks from terminal.
I am thinking somewhat correctly?
dimitarvp
You would need a homoiconic language, i.e. manipulate code as if it’s data (gross simplification). Not many languages are such. For example, Elixir is not, and LISP is.
It’s not easy to have a context-aware program that rewrites another program. Furthermore, Elixir also doesn’t have a standard – but IMO that’s not a problem because the generated AST by the compiler is fairly stable.
I’d love working on something like this but alas, no free time and energy in the last 2 years.
dimitarvp
Appreciate the diligence, thank you.
LostKobrakai
This sounds very much like GitHub - ash-project/ash: A declarative, extensible framework for building Elixir applications. · GitHub might be up your alley, though it seems quite API focused at the moment.
TwistingTwists
On above :
I hope more people are thinking this way. Is there something being worked upon on these lines?
What would one need to know to make such a thing? A library ? Extension to Phoenix? Or contributing to original Phoenix project? Any leads / must-reads appreciated.
TwistingTwists
So relatable to me as a young dev
.