I'm trying to generate a fairly simple page, which is basically an easy way to just see the associated ":token" with any particular "tc_uid". This should contain a input field box and a submit button. When a "tc_uid" is entered and hitting submit, the form should pull the ":token" param value and then display this on the page. The idea is to enter a "tc_uid" and the page will display the corresponding token for that account.
In the console I am able to get this working fine by doing a
lookup = Devices.find_by_tc_uid(23444)
-- I put in the example tc_uid. This would naturally always be different and entered in the web form I am trying to create.
which renders
Device Load (0.4ms) SELECT `devices`.* FROM `devices` WHERE `devices`.`tc_uid` =
188320 LIMIT 1
#<Device:0x007ffee1301488> {
:id => 681,
:token => "80b88ffca87e7c5dd21efda3618f96c03a69745b07029d53f1e29a0c8d4ce96a",
:tc_uid => 188320,
:updated_at => Fri, 01 Jun 2012 06:44:32 UTC +00:00,
:created_at => Mon, 20 Feb 2012 18:49:11 UTC +00:00,
:state => "inactive"
}
lookup[:token]
"80b88ffca87e7c5dd21efda3618f96c03a69745b07029d53f1e29a0c8d4ce96a"
Works fine in the console but now trying to create a way to do this web based. I know my example is incomplete and a bit lost in the direction to get this complete and working.
Thanks
Controller:
class Admin::PushNotificationsController < Admin::BaseController
def devices
@token = Device.find_by_tc_uid(params[:tc_uid])
end
View:
%h1.page-header Lookup Device Tokens
- if current_user.has_admin_role?(:superuser)
= render 'device_form'
Partial View, device form:
= semantic_form_for(@token, :url = "#", :html => { :method => :get }) do |f|
= f.semantic_errors
= f.inputs do
= f.input :tc_uid
= f.actions do
= f.action :submit, :label => "lookup now"
All of this also brings up a point.. should I be trying to use Formtastic for this type of feature? Since I am not creating or editing any active record attribute perhaps this is not the best idea.