lucid-ui
Version:
A UI component library from Xandr.
35 lines • 902 B
JavaScript
import _ from 'lodash';
import * as DropMenu from '../DropMenu/DropMenu.reducers';
export function onChange(state, value) {
return {
...state,
value,
DropMenu: {
...state.DropMenu,
focusedIndex: null,
},
};
}
export function onSelect(state, selectedIndex) {
const value = _.get(state.suggestions, selectedIndex);
return onChange({
...state,
value,
DropMenu: {
...DropMenu.onSelect(state.DropMenu, selectedIndex),
selectedIndices: [],
},
}, value);
}
export function onExpand(state) {
return {
...state,
DropMenu: {
...state.DropMenu,
focusedIndex: null,
isExpanded: !_.isEmpty(state.value) && !_.isEmpty(state.suggestions),
},
};
}
export { DropMenu };
//# sourceMappingURL=Autocomplete.reducers.js.map