How would you order a list of items in AngularJS in random order? I was thinking that the built-in orderBy
filter would work but I'm not sure how without adding some additional data to the model. Something like would be great.
item in items | orderBy:random
My next thought was to create a custom filter but I'd prefer to avoid that if there is something better already available.
orderBy
can take a function parameter, just likearray.sort
so you can use your HTML above and define a functionrandom
on the scope like:This will return a random value sometimes negative, sometimes positive, sometimes 0, which will randomly sort the array.
Doing a quick fiddle sh0ber method seems to work well: http://jsfiddle.net/owenmead/fa4v8/1/
Angular's orderBy uses JavaScript's sort() on a copy of the list. Looking at another answer, certain browsers are stable in their sort, others are not. Perhaps just test the fiddle in a few browsers and you should be good to go: Array.sort Sorting Stability in Different Browsers
PS. Couldn't comment on sh0ber's answer as I don't have 50 rep