Here is the problem that I have been trying to solve, but I haven't found a way that doesn't feel like an outright hack. I have 2 objects, Warehouse and StateCity. The Warehouse object has a foreign key to a StateCity object ( state_city_id ).
Now when a user creates a Warehouse, I would like them to be able to input the State and City. Currently they can do so, and I just check the submitted params for the State and City and then create or find the corresponding ActiveRecord object. Now when they go to view the Warehouse in my view I've oscillated between using a helper to extract the State/City from the StateCity object if it exists and adding a method on my model to perform the same function like below
def show_state( warehouse )
if warehouse.state_city.nil? == false
return warehouse.state_city.state
end
return ""
end
def show_city( warehouse )
if warehouse.state_city.nil? == false
return warehouse.state_city.city
end
return ""
end
Unfortunately, neither the helper method or fattening up the model with extra functions seems very natural as I have to use one for the creation of the object and another for the vieiwng of the object.
I was wondering if anyone has any advice on a better way to solve the Warehouse-StateCity problem. Any help is greatly appreciated.