1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/utils/cleanConstraint.ts
olav 35262e404b refactor: clean up strategy parameter types (#944)
* refactor: fix splash page button background color

* refactor: regenerate OpenAPI client

* refactor: clean up strategy parameter types

* refactor: remove index signature from IConstraint

* refactor: fix never-seen status in features list
2022-05-04 15:16:34 +02:00

17 lines
478 B
TypeScript

import { singleValueOperators } from 'constants/operators';
import { IConstraint } from 'interfaces/strategy';
import { oneOf } from 'utils/oneOf';
import produce from 'immer';
export const cleanConstraint = (
constraint: Readonly<IConstraint>
): IConstraint => {
return produce(constraint, draft => {
if (oneOf(singleValueOperators, constraint.operator)) {
delete draft.values;
} else {
delete draft.value;
}
});
};