Tree Lazy demo added
parent
00925f65b3
commit
3018da2fa4
|
@ -1,10 +1,20 @@
|
||||||
<template>
|
<template>
|
||||||
<DocSectionText v-bind="$attrs">
|
<DocSectionText v-bind="$attrs">
|
||||||
<p>Lazy loading is useful when dealing with huge datasets, in this example nodes are dynamically loaded on demand using <i>loading</i> property and <i>node-expand</i> method.</p>
|
<p>
|
||||||
|
Lazy loading is useful when dealing with huge datasets, in this example nodes are dynamically loaded on demand using <i>loading</i> property and <i>node-expand</i> method. Default value of <i>loadingMode</i> is <i>mask</i> and also
|
||||||
|
<i>icon</i> is available.
|
||||||
|
</p>
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
<div class="card flex justify-content-center">
|
<div class="card flex flex-wrap p-fluid gap-3">
|
||||||
|
<div class="flex-auto md:flex md:justify-content-start md:align-items-center flex-column">
|
||||||
|
<label for="mask" class="font-bold block mb-2">Mask Mode</label>
|
||||||
<Tree :value="nodes" @node-expand="onNodeExpand" :loading="loading" class="w-full md:w-30rem"></Tree>
|
<Tree :value="nodes" @node-expand="onNodeExpand" :loading="loading" class="w-full md:w-30rem"></Tree>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="flex-auto md:flex md:justify-content-start md:align-items-center flex-column">
|
||||||
|
<label for="mask" class="font-bold block mb-2">Icon Mode</label>
|
||||||
|
<Tree :value="nodes2" @node-expand="onNodeExpand2" loadingMode="icon" class="w-full md:w-30rem"></Tree>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<DocSectionCode :code="code" />
|
<DocSectionCode :code="code" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -13,16 +23,25 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
nodes: null,
|
nodes: null,
|
||||||
|
nodes2: null,
|
||||||
loading: false,
|
loading: false,
|
||||||
code: {
|
code: {
|
||||||
basic: `
|
basic: `
|
||||||
<Tree :value="nodes" @node-expand="onNodeExpand" :loading="loading" class="w-full md:w-30rem"></Tree>
|
<Tree :value="nodes" @node-expand="onNodeExpand" :loading="loading" class="w-full md:w-30rem"></Tree>
|
||||||
|
<Tree :value="nodes2" @node-expand="onNodeExpand2" loadingMode="icon" class="w-full md:w-30rem"></Tree>
|
||||||
`,
|
`,
|
||||||
options: `
|
options: `
|
||||||
<template>
|
<template>
|
||||||
<div class="card flex justify-content-center">
|
<div class="card flex flex-wrap p-fluid gap-3">
|
||||||
|
<div class="flex-auto md:flex md:justify-content-start md:align-items-center flex-column">
|
||||||
|
<label for="mask" class="font-bold block mb-2">Mask Mode</label>
|
||||||
<Tree :value="nodes" @node-expand="onNodeExpand" :loading="loading" class="w-full md:w-30rem"></Tree>
|
<Tree :value="nodes" @node-expand="onNodeExpand" :loading="loading" class="w-full md:w-30rem"></Tree>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="flex-auto md:flex md:justify-content-start md:align-items-center flex-column">
|
||||||
|
<label for="mask" class="font-bold block mb-2">Icon Mode</label>
|
||||||
|
<Tree :value="nodes2" @node-expand="onNodeExpand2" loadingMode="icon" class="w-full md:w-30rem"></Tree>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -30,15 +49,18 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
nodes: null,
|
nodes: null,
|
||||||
|
nodes2: null,
|
||||||
loading: false
|
loading: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
this.nodes2 = this.initateNodes2();
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.nodes = this.initateNodes();
|
this.nodes = this.initateNodes();
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
this.nodes2.map((node) => (node.loading = false));
|
||||||
}, 2000);
|
}, 2000);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -66,6 +88,30 @@ export default {
|
||||||
}, 500);
|
}, 500);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onNodeExpand2(node) {
|
||||||
|
if (!node.children) {
|
||||||
|
node.loading = true;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
let _node = { ...node };
|
||||||
|
|
||||||
|
_node.children = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < 3; i++) {
|
||||||
|
_node.children.push({
|
||||||
|
key: node.key + '-' + i,
|
||||||
|
label: 'Lazy ' + node.label + '-' + i
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let _nodes = { ...this.nodes2 };
|
||||||
|
|
||||||
|
_nodes[parseInt(node.key, 10)] = { ..._node, loading: false };
|
||||||
|
|
||||||
|
this.nodes2 = _nodes;
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
|
},
|
||||||
initateNodes() {
|
initateNodes() {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
|
@ -84,6 +130,28 @@ export default {
|
||||||
leaf: false
|
leaf: false
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
},
|
||||||
|
initateNodes2() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
key: '0',
|
||||||
|
label: 'Node 0',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '1',
|
||||||
|
label: 'Node 1',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '2',
|
||||||
|
label: 'Node 2',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -91,23 +159,33 @@ export default {
|
||||||
`,
|
`,
|
||||||
composition: `
|
composition: `
|
||||||
<template>
|
<template>
|
||||||
<div class="card flex justify-content-center">
|
<div class="card flex flex-wrap p-fluid gap-3">
|
||||||
|
<div class="flex-auto md:flex md:justify-content-start md:align-items-center flex-column">
|
||||||
|
<label for="mask" class="font-bold block mb-2">Mask Mode</label>
|
||||||
<Tree :value="nodes" @node-expand="onNodeExpand" :loading="loading" class="w-full md:w-30rem"></Tree>
|
<Tree :value="nodes" @node-expand="onNodeExpand" :loading="loading" class="w-full md:w-30rem"></Tree>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="flex-auto md:flex md:justify-content-start md:align-items-center flex-column">
|
||||||
|
<label for="mask" class="font-bold block mb-2">Icon Mode</label>
|
||||||
|
<Tree :value="nodes2" @node-expand="onNodeExpand2" loadingMode="icon" class="w-full md:w-30rem"></Tree>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
|
|
||||||
const nodes = ref(null);
|
const nodes = ref(null);
|
||||||
|
const nodes2 = ref(null);
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
|
nodes2.value = initiateNodes2();
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
nodes.value = initateNodes();
|
nodes.value = initateNodes();
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
|
nodes2.value.map((node) => (node.loading = false));
|
||||||
}, 2000);
|
}, 2000);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -136,6 +214,31 @@ const onNodeExpand = (node) => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onNodeExpand2 = (node) => {
|
||||||
|
if (!node.children) {
|
||||||
|
node.loading = true;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
let _node = { ...node };
|
||||||
|
|
||||||
|
_node.children = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < 3; i++) {
|
||||||
|
_node.children.push({
|
||||||
|
key: node.key + '-' + i,
|
||||||
|
label: 'Lazy ' + node.label + '-' + i
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let _nodes = { ...nodes2.value };
|
||||||
|
|
||||||
|
_nodes[parseInt(node.key, 10)] = { ..._node, loading: false };
|
||||||
|
|
||||||
|
nodes2.value = _nodes;
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const initateNodes = () => {
|
const initateNodes = () => {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
|
@ -155,6 +258,29 @@ const initateNodes = () => {
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const initateNodes2 = () => {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
key: '0',
|
||||||
|
label: 'Node 0',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '1',
|
||||||
|
label: 'Node 1',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '2',
|
||||||
|
label: 'Node 2',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
<\/script>
|
<\/script>
|
||||||
`,
|
`,
|
||||||
data: `
|
data: `
|
||||||
|
@ -189,10 +315,12 @@ const initateNodes = () => {
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
this.nodes2 = this.initateNodes2();
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.nodes = this.initateNodes();
|
this.nodes = this.initateNodes();
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
this.nodes2.map((node) => (node.loading = false));
|
||||||
}, 2000);
|
}, 2000);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -221,6 +349,30 @@ const initateNodes = () => {
|
||||||
}, 500);
|
}, 500);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onNodeExpand2(node) {
|
||||||
|
if (!node.children) {
|
||||||
|
node.loading = true;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
let _node = { ...node };
|
||||||
|
|
||||||
|
_node.children = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < 3; i++) {
|
||||||
|
_node.children.push({
|
||||||
|
key: node.key + '-' + i,
|
||||||
|
label: 'Lazy ' + node.label + '-' + i
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let _nodes = { ...this.nodes2 };
|
||||||
|
|
||||||
|
_nodes[parseInt(node.key, 10)] = { ..._node, loading: false };
|
||||||
|
|
||||||
|
this.nodes2 = _nodes;
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
|
},
|
||||||
initateNodes() {
|
initateNodes() {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
|
@ -239,6 +391,28 @@ const initateNodes = () => {
|
||||||
leaf: false
|
leaf: false
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
},
|
||||||
|
initateNodes2() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
key: '0',
|
||||||
|
label: 'Node 0',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '1',
|
||||||
|
label: 'Node 1',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '2',
|
||||||
|
label: 'Node 2',
|
||||||
|
leaf: false,
|
||||||
|
loading: true
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue