borybar
Hi,
I am displaying users cpm based on their submitted form. It all works until I am creating a new user who doesn’t have such cpm yet. Then I get an error. I understand that I need to use case in which I check either there is a cpm or not, if not I return a link to needed form. I was wondering how to do it, as I am not sure what I should write in such case.
My page_controller:
def index(conn, _params, current_user) do
user = current_user.id
user_pps = Cpm.list_user_pp(current_user)
user_pp = Cpm.get_user_pp!(current_user, user)
user_bmr = Bmr.bmr_for_user(user_pp)
user_cpm = Float.floor(Bmr.cpm_for_user(user_pp, user_bmr))
case user_cpm do
{:ok} -> returns first cpm
{:error} -> returns a link to a form
render(conn, "index.html", user: user, userp_pps: user_pps, user_cpm: user_cpm)
Thanks for help!
Trending in Questions
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
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
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
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
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
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kokolegorille
You can always redirect in case there is no user_cpm.
Another way is to use a conditional in the template… like this.
You case miss an end
borybar
Thanks for the reply!
What if I don’t want to redirect from start? I want to keep a user on the front page so he has access to different things, only if he wants to he can click a button to redirect to my form
kokolegorille
Then try the code I put in my last post
borybar
I have tried your recommendation but I guess I am doing something wrong. I will be very grateful for your help.
This is my template now:
What I get when I try to visit my main page is:
borybar
I suspect that it’s not even getting to my
user_cpmvariable as it doesn’t have a value inuservariable in my controller as there is no users in db.kokolegorille
Try replacing @current_user with assigns[:current_user]
The first will fail if not set, the second will return nil.
You cannot use variable that have not been set.
If current_user is not set, it will fail with the error You see…
borybar
So if I can’t use variable that have not been set yet, what can I do? Use
case?kokolegorille
No, use assigns[:current_user] in the template…
or test that the value exists.
You cannot use current_user.id if it is not set.
borybar
Thank you for help. I managed to resolve my issue by using
case