Skip to content

Instantly share code, notes, and snippets.

@viola
Created July 7, 2011 20:00
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save viola/1070410 to your computer and use it in GitHub Desktop.
Save viola/1070410 to your computer and use it in GitHub Desktop.
Example of fetching Hash (key,value) to the simple_form collection.
-- model
some sort of constant hash:
HASH_NAME = {
0 => "Choose:",
1 => "On-Campus Recruiting - CSO",·
2 => "CSO Staff Referral",
3 => "Faculty Contact",·
4 => "Career Day",·
5 => "CSO Summer Job Listing",·
6 => "Alumni Contact",·
7 => "Personal Contact",·
8 => "Other"·
}
-- view
<%= f.input :some_field, :collection => Model::HASH_NAME.sort.map {|k,v| [v,k]} %>
This would output nice select with select-value as hash key and select-name as hash value, such as:
<select id="form_application_job_source" class="select required" name="form_application[job_source]">
<option value="0">Choose:</option>
<option value="1">On-Campus Recruiting - CSO</option>
<option value="2">CSO Staff Referral</option>
<option value="3">Faculty Contact</option>
<option value="4">Career Day</option>
<option value="5">CSO Summer Job Listing</option>
<option value="6">Alumni Contact</option>
<option selected="selected" value="7">Personal Contact</option>
<option value="8">Other</option>
</select>
@viola
Copy link
Author

viola commented Mar 23, 2012

Thx man! I'm happy to hear that some of my gists are useful.

@mkuklis
Copy link

mkuklis commented May 1, 2012

Wiola I was just looking for this too and found this :) Thanks!

@viola
Copy link
Author

viola commented May 1, 2012

awesome thx Michal!!

@gerwitz
Copy link

gerwitz commented Jun 28, 2012

SImple code but it was still easier to google and find this than scratch it out. Thanks.

@viola
Copy link
Author

viola commented Jun 29, 2012

yw!

@csgavino
Copy link

Saved me a lot of time too, thank you.

@easy2use
Copy link

easy2use commented May 1, 2013

Awesome - great help for a newb. Thanks

@mahemoff
Copy link

Thanks for this. You can also use invert to do the transform:

<%= f.input :some_field, :collection => Model::HASH_NAME.sort.invert %>

@Libranner
Copy link

Thank you!

@eos87
Copy link

eos87 commented Nov 5, 2013

Thanks and +1 for @mahemoff solution

@rreynier
Copy link

@viola: Thanks for posting this, it is exactly what I was looking for!

@mahemoff: I am unable to get your invert method to work. I get the following error:

undefined method `invert' for [["abc", "ABC"], ["cde", "CDE"]]:Array

Here is my hash:

  KINDS = {
    'abc' => 'ABC',
    'cde' => 'CDE'
  }

Here is the view:

<%= f.input :kind, :collection => ProductComponent::KINDS.sort.invert %>

@rreynier
Copy link

@mahemoff Actually, I just figured it out. I had to invert then sort. Doing sort first was causing the error.

So: <%= f.input :kind, :collection => ProductComponent::KINDS.invert.sort%>

@uriklar
Copy link

uriklar commented Dec 1, 2013

Perfect! exactly what i was looking for. Thanks!

@akkdio
Copy link

akkdio commented Feb 21, 2014

Appreciate the post. Saved me.

@bmcharek
Copy link

bmcharek commented Jun 2, 2014

6 months later, still very useful post. Thanks viola and others :).

update for my particular case

Since I needed some translation, only half of my problem was solved. So I ran into this gem https://github.com/brainspec/enumerize and voila. I don't need a collection anymore for my simple_form.

@jonnyjava
Copy link

Inspired by this great gist I did the following

MY_LIST = ["Choose:", "On-Campus Recruiting - CSO", "CSO Staff Referral","Faculty Contact", "Career Day", "CSO Summer Job Listing", "Alumni Contact", "Personal Contact", "Other"]
HASH_NAME = Hash[MY_LIST.map.with_index{ |obj, i| [i, obj] }]

This let me manage the list separately and add elements if needed!

@seoyoochan
Copy link

I appreciate that!

@zx1986
Copy link

zx1986 commented Dec 14, 2014

感謝你!thanks for the tip!

@sankalpsingha
Copy link

Thank you so much for this!! Saved me a ton of time! :)

@phantom42
Copy link

Exactly what I needed. Thanks!

@carlflor
Copy link

carlflor commented Sep 4, 2015

wonderful! thank you!

@robinjfisher
Copy link

Thanks for this. Very useful!

@abaldwin88
Copy link

sort method is no longer needed in ruby >1.9

Hashes enumerate their values in the order that the corresponding keys were inserted.
http://ruby-doc.org/core-1.9.3/Hash.html

@irenemoreno
Copy link

Five years later... it has been really helpful. Gracias!

@jonathanroehm
Copy link

Amazingly helpful. Saved a ton of time. Thank you!

@araslanov-e
Copy link

f.input :some_field, :collection => Model::HASH_NAME, value_method: :first, label_method: :last

@mark-craig
Copy link

6 years later! Thank you so much!

@evanlouden
Copy link

Again. Thanks! Exactly what I needed today.

@shamca65
Copy link

shamca65 commented Dec 26, 2018

Thanks! - Helped me troubleshoot getting my MDB select working properly:
"


<%= options_for_select(Customer::PROVINCES.map {|k,v| [v,k]}) %>

"

@Augustin-Grenne
Copy link

Still a relevant and very useful thread, thanks all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment