Files
plane/space/helpers/state.helper.ts

14 lines
444 B
TypeScript
Raw Normal View History

import { IState } from "@plane/types";
import { STATE_GROUPS } from "@/constants/state";
export const sortStates = (states: IState[]) => {
if (!states || states.length === 0) return;
return states.sort((stateA, stateB) => {
if (stateA.group === stateB.group) {
return stateA.sequence - stateB.sequence;
}
return Object.keys(STATE_GROUPS).indexOf(stateA.group) - Object.keys(STATE_GROUPS).indexOf(stateB.group);
});
};