@snups/rjsf-utils
Version:
Utility functions for @snups/rjsf-core
28 lines (26 loc) • 1.69 kB
text/typescript
import { EnumOptionsType, RJSFSchema, StrictRJSFSchema } from './types';
import enumOptionsValueForIndex from './enumOptionsValueForIndex';
import deepEquals from './deepEquals';
/** Removes the enum option value at the `valueIndex` from the currently `selected` (list of) value(s). If `selected` is
* a list, then that list is updated to remove the enum option value with the `valueIndex` in `allEnumOptions`. If it is
* a single value, then if the enum option value with the `valueIndex` in `allEnumOptions` matches `selected`, undefined
* is returned, otherwise the `selected` value is returned.
*
* @param valueIndex - The index of the value to be removed from the selected list or single value
* @param selected - The current (list of) selected value(s)
* @param [allEnumOptions=[]] - The list of all the known enumOptions
* @returns - The updated `selected` with the enum option value at `valueIndex` in `allEnumOptions` removed from it,
* unless `selected` is a single value. In that case, if the `valueIndex` value matches `selected`, returns
* undefined, otherwise `selected`.
*/
export default function enumOptionsDeselectValue<S extends StrictRJSFSchema = RJSFSchema>(
valueIndex: string | number,
selected?: EnumOptionsType<S>['value'] | EnumOptionsType<S>['value'][],
allEnumOptions: EnumOptionsType<S>[] = [],
): EnumOptionsType<S>['value'] | EnumOptionsType<S>['value'][] | undefined {
const value = enumOptionsValueForIndex<S>(valueIndex, allEnumOptions);
if (Array.isArray(selected)) {
return selected.filter((v) => !deepEquals(v, value));
}
return deepEquals(value, selected) ? undefined : selected;
}