I have list of users presented in table. Active users should be sorted above the inactive users.
I am trying to make this sort
using lodash sortBy
function, but unsuccessfully.
Here is how userArray
looks:
const userArray [
{
// I need to show users which have disabled = false first
// and then users with disabled = true
disabled: true, // <==========
email: "[email protected]",
firstName: "Harriet",
lastName: "Gaither",
role: "claimsHandlerSupervisor",
userId: "03VFpxtMWgY1jKDHDLcrWSw1qzx1",
},
{
disabled: false, // <===========
email: "[email protected]",
firstName: "Harriet",
lastName: "Gaither",
role: "claimsHandlerSupervisor",
userId: "03VFpxtMWgY1jKDHDLcrWSw1qzx1",
},
]
here is code pen with code with users array and sortBy loadsh function:
https://codepen.io/nikolatrajkovicq/pen/pGXdpM?editors=1112
Any adivce is welcome.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…