overtone
overtone

Reputation: 1093

Ruby array equivalent of active record.where(criteria)

This may be a really long stretch but would make life a fair bit easier if it existed.

Heres the scenario any case. I have an array of hashes with one key whos value is another hash........Yeah, I know.

Heres a better explanation:

@myArrayOfStuff[0]
@myArrayOfStuff[0]["single-key"]
@myArrayOfStuff[0]["single-key"]["object-identifier"]

The first returns a hash. The second would return an object (called page in my case but example uses different names) The third returns whatever variable I have reference as object-identifier.

Simple enough.

What I'd like to do is pick make another array where object-identifiers value is not nil or is greater than x. Something Similar to the activerecord.where method.

@x = @myArrayOfStuff.where(["single-key"]["object-identifier"]) > 3orwhatever

Obviously this doesn't work as the syntax is attrocious. But is there another way of going about it? Another route to try might possibly be to sort the array by this variable. Something like

@x = @myArrayOfStuff.sort {|x,y| y <=> x } 

However I dont really understand whats going on with ruby's sort method. Can anyone help?

Upvotes: 6

Views: 12030

Answers (2)

Gabe Coyne
Gabe Coyne

Reputation: 341

collection = [
  {a:1, b:2, c:3},
  {a:2, b:3, c:4}
]
where = {a:1}
collection.select{|item|
  where.map{|k,v|
    item[k] == v ? true : nil
  }.compact.length == where.length
}

Upvotes: 0

Gazler
Gazler

Reputation: 84150

You can use the select method.

@x = @my_array_of_stuff.select {|v| v["single-key"]["object-identifier"] > 3}

Upvotes: 22

Related Questions