如何在<v-treeview> Vuetify中添加新节点

时间:2019-02-16 10:39:15

标签: javascript vue.js vuetify.js

我目前正在使用Vuetify进行树形视图。树形视图使用以下结构:

      items: [
    {
      id: 1,
      name: 'Applications :',
      children: [
        { id: 2, name: 'Calendar : app' },
        { id: 3, name: 'Chrome : app' },
        { id: 4, name: 'Webstorm : app' }
      ]
    },
    {
      id: 5,
      name: 'Documents :',
      children: [
        {
          id: 6,
          name: 'vuetify :',
          children: [
            {
              id: 7,
              name: 'src :',
              children: [
                { id: 8, name: 'index : ts' },
                { id: 9, name: 'bootstrap : ts' }
              ]
            }
          ]
        },
        {
          id: 10,
          name: 'material2 :',
          children: [
            {
              id: 11,
              name: 'src :',
              children: [
                { id: 12, name: 'v-btn : ts' },
                { id: 13, name: 'v-card : ts' },
                { id: 14, name: 'v-window : ts' }
              ]
            }
          ]
        }
      ]
    },
    {
      id: 15,
      name: 'Downloads :',
      children: [
        { id: 16, name: 'October : pdf' },
        { id: 17, name: 'November : pdf' },
        { id: 18, name: 'Tutorial : html' }
      ]
    },
    {
      id: 19,
      name: 'Videos :',
      children: [
        {
          id: 20,
          name: 'Tutorials :',
          children: [
            { id: 21, name: 'Basic layouts : mp4' },
            { id: 22, name: 'Advanced techniques : mp4' },
            { id: 23, name: 'All about app : dir' }
          ]
        },
        { id: 24, name: 'Intro : mov' },
        { id: 25, name: 'Conference introduction : avi' }
      ]
    }
  ]
})

它看起来像这样:

enter image description here

我的问题是在此结构中添加一个新节点,例如,如果我想在应用程序下添加一个子代,则代码可能如下所示:

this.items[0].children.push(newObject)

或者如果我想在src下添加?那么它可能看起来像这样:

this.items[1].children[0].children.push(newObject)

如果我想更深入一点,它可能看起来像这样:

this.items[0].children[0].children[0].children[0].children[0].children.push(newObject)

如您所见,我添加节点的方式会有所不同,代码也会根据我要添加节点的位置和深度而变化。这意味着没有单一的代码可以满足所有位置。另外,我可以添加和嵌套尽可能多的节点。 示例是Google驱动器我该如何处理?我没有足够的想法,正在寻找可能有帮助的建议。

1 个答案:

答案 0 :(得分:1)

如果直接从树中添加节点,最简单的方法是使用作用域插槽。例如,您可以使用append插槽向每个项目添加内容。由于该项目已传递到插槽,因此您可以将其传递给可以轻松地向该对象添加子项的函数。

<v-app>
  <v-treeview :items="items">
    <template slot="append" slot-scope="{ item }">
      <v-btn @click="addChild(item);">Add child</v-btn>
    </template>
  </v-treeview>
</v-app>
addChild(item) {
  if (!item.children) {
    this.$set(item, "children", []);
  }

  const name = `${item.name} (${item.children.length})`;
  const id = this.nextId++;
  item.children.push({
    id,
    name
  });
}

否则,只需递归地穿过树,直到找到要添加的项目。

findItem(id, items = null) {
  if (!items) {
    items = this.items;
  }

  return items.reduce((acc, item) => {
    if (acc) {
      return acc;
    }

    if (item.id === id) {
      return item;
    }

    if (item.children) {
      return this.findItem(id, item.children);
    }

    return acc;
  }, null);
}

您可以在codeandbox中看到一个示例。

Edit How to add a new node in <v-treeview> Vuetify