phphe/he-tree-vue

TargetPath is updated late?

TheHussein opened this issue · 3 comments

Hello, I'm trying to make a drag and drop tree where nodes can only be moved inside same level, to do this I used function droppable and I'm using the 2nd store parameter. startPath works fine but targetPath is being set late and is undefined, how can I work around this?

  methods: {
    isNodeDroppable(tree, store) {
      console.log(store);
      console.log(store.startPath + "-" + store.targetPath);
      return true;
    },
  },

Screen Shot 2020-09-22 at 1 03 05 PM

Using eachDroppable instead of droppable fixed my issues:

    isNodeDroppable(currentPath, tree, treeDataStore) {
      console.log(treeDataStore.startPath + "==>" + currentPath);
      return true;
    },

Full code for same level same parent updates only:

  methods: {
    isNodeDroppable(currentPath, tree, treeDataStore) {
      let startPath = treeDataStore.startPath;
      return (
        this.isSameLevel(startPath, currentPath) &&
        this.isSameParent(startPath, currentPath)
      );
    },
    isSameLevel(startPath, currentPath) {
      if (startPath.length === currentPath.length + 1) {
        return true;
      }
      return false;
    },
    isSameParent(startPath, currentPath) {
      if (
        startPath[startPath.length - 2] !== currentPath[currentPath.length - 1]
      ) {
        return false;
      }
      return true;
    },
  },
phphe commented

isNodeDroppable is an internal method, it is not recommended to modify. It is recommended to use prop eachDroppable.