| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import { usePropsAlias } from './use-props-alias.mjs';
- import { UPDATE_MODEL_EVENT, CHANGE_EVENT } from '../../../../constants/event.mjs';
- const useMove = (props, checkedState, emit) => {
- const propsAlias = usePropsAlias(props);
- const _emit = (value, direction, movedKeys) => {
- emit(UPDATE_MODEL_EVENT, value);
- emit(CHANGE_EVENT, value, direction, movedKeys);
- };
- const addToLeft = () => {
- const currentValue = props.modelValue.slice();
- checkedState.rightChecked.forEach((item) => {
- const index = currentValue.indexOf(item);
- if (index > -1) {
- currentValue.splice(index, 1);
- }
- });
- _emit(currentValue, "left", checkedState.rightChecked);
- };
- const addToRight = () => {
- let currentValue = props.modelValue.slice();
- const itemsToBeMoved = props.data.filter((item) => {
- const itemKey = item[propsAlias.value.key];
- return checkedState.leftChecked.includes(itemKey) && !props.modelValue.includes(itemKey);
- }).map((item) => item[propsAlias.value.key]);
- currentValue = props.targetOrder === "unshift" ? itemsToBeMoved.concat(currentValue) : currentValue.concat(itemsToBeMoved);
- if (props.targetOrder === "original") {
- currentValue = props.data.filter((item) => currentValue.includes(item[propsAlias.value.key])).map((item) => item[propsAlias.value.key]);
- }
- _emit(currentValue, "right", checkedState.leftChecked);
- };
- return {
- addToLeft,
- addToRight
- };
- };
- export { useMove };
- //# sourceMappingURL=use-move.mjs.map
|