jmurphyweb
Given that View modules contain formatting logic, what do you do if you want to format some data in your main application (ie in lib/myapp/ as opposed to in the lib/myapp_web/) ?
We are doing a load of CSV exports, and I keep finding myself aliasing View modules in my library modules which feels dirty.
How do you handle this? Do you have any self-enforced rules about which modules can call others? I’d love to hear about them!
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Phoenix Threads
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 14 Posts
dimitarvp
First I’d ask: why do you use Views for CSV output?
You can just use
nimble_csvin your controller and directly return the CSV withrender text: csv_outputor some such (sorry, forgot the actual Phoenix syntax).jmurphyweb
Thanks for the reply @dimitarvp
I am using view logic to format the data in the same way as we do in our templates.
Here is a trivial example:
This is a really basic example of pseudo code but it is exactly the issue that I am facing in many places in my application. In reality, there is too much formatting to just redefine the functions locally to this module.
Any help really appreciated
dimitarvp
What do you mean by that? CSV doesn’t need formatting.
jmurphyweb
There are too many of these “formatting” functions:
UserView.format_address(user)dimitarvp
So am I understanding correctly: you don’t want to use
nimble_csvand you want to keep using Phoenix Views for CSV formatting because the functions that output the proper CSV fields are too many?jmurphyweb
Hi @dimitarvp. No you aren’t understanding me correctly.
I am happily using NimbleCSV. Maybe forget that I ever mentioned CSV
I think this is the crux of my question:
I feel like it is not good design/practice to reference my
UserViewmodule in myAccounts.Users.ExportCSVmodule and wanted to understand how people would get around this issue.lud
They just want access for example the
full_name(user)function defined in the view to fill the CSV columnfull_namein the CSV generating code.@ jmurphyweb you could move your helpers in the data model and import them from your view and your csv code.
dimitarvp
Oops, sorry for the derp.
In all Phoenix projects where I had any influence, I always moved such functions outside the
_webnamespace. They absolutely don’t belong there in my eyes. They are also not views per se, they are like data reshapers / transformers / whatever-you-want-to-call them.So yep, move them to the other namespace and don’t have a care in the world.
mindok
I think this would be better reworded as “Given that View modules contain formatting code specifically for rendering one or more web-pages”. Then there would be no confusion. If it isn’t to do with a web page or API output, it doesn’t belong in the _web part of the project.
It is dirty, that’s why it feels dirty!
jmurphyweb
That’s honestly really eye opening for me. I thought this basic formatting was exactly the purpose of View modules in Phoenix!
It sounds like you are saying the View modules are specifically for putting controller/context provided data into a shape that a template will readily consume. Is that pretty much it?
Can I just double check my comprehension:
Create these data formatters somewhere in/round the User module and then alias that module in my view module for access by the templates?
I can see why that is an improvement, but something still seems a little off the me