Skip to content

Instantly share code, notes, and snippets.

@funder7
Last active March 3, 2021 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funder7/ea808b63f40dfb96cf152d0889d1eec9 to your computer and use it in GitHub Desktop.
Save funder7/ea808b63f40dfb96cf152d0889d1eec9 to your computer and use it in GitHub Desktop.
Adding +/- buttons to vuetify treeview component, allowing to select/deselect all childrens of a group with a single click
<template>
<v-treeview
v-model="selection"
:items="items"
:loading="loading"
:return-object="showSelected"
open-all
selectable
selection-type="independent"
transition
>
<template v-slot:append="{ item, open }">
<template v-if="showButtons(item)">
<v-btn text @click="selectAllChilds(item, true)">
+
</v-btn>
<v-btn text @click="selectAllChilds(item, false)">
-
</v-btn>
</template>
</template>
</v-treeview>
</template>
<script>
export default {
name: 'TreeChildExample',
/*
* ... Your Vue code here ...
*/
data () {
return {
items: [
{
id : 1,
name : 'John Dahlback',
children : [
{
id : 2,
name : 'Mario Rossi',
children : [
{
id : 3,
name : 'Super user',
children : [
{
id : 4,
name : 'Item 1',
},
{
id : 5,
name : 'Item 2',
},
{
id : 6,
name : 'Item 3',
},
{
id : 7,
name : 'Item 4',
},
{
id : 8,
name : 'Item 5',
},
{
id : 9,
name : 'Item 6',
},
],
},
],
},
{
id : 4,
name : 'John Doe',
children : [],
},
],
},
],
}
},
methods: {
showButtons (item) {
return item.children != null && item.children.length > 0
},
selectAllChilds (item, shouldSelect) {
// Get all children Ids (extract from object)
const childIds = item.children.map((item) => item.id)
console.debug('childs ids: ', childIds)
// Set selection to childs + root item Id
const rootAndChilds = [ ...childIds, item.id ]
if (shouldSelect) {
// Select by keeping existing selection
console.info('existing sel: ', this.selection)
console.info('adding: ', rootAndChilds)
const finalSelection = [ ...this.selection, ...rootAndChilds ]
console.info('final selection: ', finalSelection)
this.selection = finalSelection
}
else {
// Remove
const difference = this.selection.filter(x => !rootAndChilds.includes(x))
console.info('difference: ', difference)
this.selection = difference
// this.selection.filter(it=> !this.selection.includes(rootAndChilds))
}
},
},
/*
* ... Your Vue code here ...
*/
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment