mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
14 lines
443 B
TypeScript
14 lines
443 B
TypeScript
import { STATE_GROUPS } from "@plane/constants";
|
|
import { IState } from "@plane/types";
|
|
|
|
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);
|
|
});
|
|
};
|