Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sorting by alphabetical order immutable.js

I would like to sort immutable.js orderedList by property name,

data.map(x => x.get("name")) returns the string, I want to sort my map by name in alphabetical order.

How to do that? I tried:

return data.sortBy((val) => {
    if (dir === "up") {
      return val.get("name");
    } else {
      return - val.get("name");
    }
  });
like image 979
lipenco Avatar asked Sep 14 '15 12:09

lipenco


1 Answers

var fiends = Immutable.fromJS([{name: 'Squirrel'}, {name: 'Cat'}, {name: 'Raccoon'}]);
var sorted = fiends.sortBy(
  (f) => f.get('name')
);
sorted.map(x => x.get('name')).toJS();  // ["Cat", "Raccoon", "Squirrel"]

With localCompare:

fiends.sort(
  (a, b) => a.get('name').localeCompare(b.get('name'))
);
like image 184
Luqmaan Avatar answered Nov 09 '22 16:11

Luqmaan