borybar

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!

Showing Posts 1 to 9

kokolegorille

kokolegorille

You can always redirect in case there is no user_cpm.

Another way is to use a conditional in the template… like this.

if assigns[:user_cpm] do
  -> usual stuff when there is a user_cpm
else
  -> display link to form
end

You case miss an end :slight_smile:

borybar

borybar OP

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

kokolegorille

Then try the code I put in my last post :slight_smile:

borybar

borybar OP

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:

<h2>Your Profile</h2>
          <ul>
          <%= if @current_user do %>
            <%= if assigns[:user_cpm] do %>
              -> <h2 style = "position:absolute; left:350px; top:275px;">User CPM: <br> <%= @user_cpm %></h2>
            <% else %>
              -> <%= link "Create Cpm", to: Routes.physical_profile_path(@conn, :new) %>%
          <% end %>
            <li>
              <%= link "Your Cpm", to: Routes.physical_profile_path(@conn, :index) %>
            </li> 
            <li>
              <%= link "Users", to: Routes.user_path(@conn, :index) %>
            </li>
            <li>
              <%= link "Foods", to: Routes.food_path(@conn, :index) %> 
            </li>
          <% end %>
          </ul>

What I get when I try to visit my main page is:


UndefinedFunctionError at GET /
function nil.id/0 is undefined

borybar

borybar OP

I suspect that it’s not even getting to my user_cpm variable as it doesn’t have a value in user variable in my controller as there is no users in db.

kokolegorille

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

borybar OP

So if I can’t use variable that have not been set yet, what can I do? Use case?

kokolegorille

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

borybar OP

Thank you for help. I managed to resolve my issue by using case

— All posts loaded —

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
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
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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

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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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
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