最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Sorting objects based on a string value property in TypeScript - Stack Overflow

programmeradmin0浏览0评论

I have an array of objects and the definition for an object looks something like this:

export class AccountInfo {
  accountUid: string;
  userType: string;
  firstName: string;
  middleName: string;
  lastName: string;
}

NOTE: The reason I don't have userType as an enum is because the object is populated by a database call and I couldn't figure out a clean way to have the string returned from the db populate the enum.

I want to sort the array so that objects with a userType of 'STAFF' appear first, followed by 'TEACHER', then 'PARENT', then 'STUDENT'.

I have an array of objects and the definition for an object looks something like this:

export class AccountInfo {
  accountUid: string;
  userType: string;
  firstName: string;
  middleName: string;
  lastName: string;
}

NOTE: The reason I don't have userType as an enum is because the object is populated by a database call and I couldn't figure out a clean way to have the string returned from the db populate the enum.

I want to sort the array so that objects with a userType of 'STAFF' appear first, followed by 'TEACHER', then 'PARENT', then 'STUDENT'.

Share Improve this question asked Apr 22, 2017 at 21:26 TovrikTheThirdTovrikTheThird 5112 gold badges7 silver badges23 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 13

You can store the order in an array, then just use indexOf with sort to achieve your goal. See the code example below:

const humans = [{
  accountUid: "1",
  userType: "TEACHER",
}, {
  accountUid: "2",
  userType: "STAFF",
}, {
  accountUid: "3",
  userType: "STUDENT",
}, {
  accountUid: "4",
  userType: "PARENT",
}];

const order = ['STAFF', 'TEACHER', 'PARENT', 'STUDENT'];

const result = humans.sort((a, b) => order.indexOf(a.userType) - order.indexOf(b.userType));

console.log(result)

If you can't use ES6, just use:

humans.sort(function(a, b){
    return order.indexOf(a.userType) - order.indexOf(b.userType);
});

Here is another way to do it, probably have an order object to store the orders

const actionOrder = {
    "EAT" : 1,
    "SLEEP" : 2,
    "PLAY" : 3,
} as const;

const users = [{
    name: "Mike",
    action: "PLAY"
}, {
    name: "John",
    action: "EAT"
}, {
    name: "Harry",
    action: "SLEEP"
}
];

users.sort((a,b) => {
    return actionOrder[a.action] - actionOrder[b.action];
});

console.log(users);
发布评论

评论列表(0)

  1. 暂无评论