152 lines
4.9 KiB
Vue
152 lines
4.9 KiB
Vue
|
<template>
|
||
|
<DocSectionText v-bind="$attrs">
|
||
|
<p>TreeSelect offers multiple slots for customization through templating.</p>
|
||
|
</DocSectionText>
|
||
|
<div class="card flex justify-center">
|
||
|
<TreeSelect v-model="selectedValue" :options="nodes" placeholder="Select Item" class="md:w-80 w-full">
|
||
|
<template #dropdownicon>
|
||
|
<i class="pi pi-search" />
|
||
|
</template>
|
||
|
<template #header>
|
||
|
<div class="font-medium px-3 py-2">Available Files</div>
|
||
|
</template>
|
||
|
<template #footer>
|
||
|
<div class="px-3 pt-1 pb-2 flex justify-between">
|
||
|
<Button label="Add New" severity="secondary" text size="small" icon="pi pi-plus" />
|
||
|
<Button label="Remove All" severity="danger" text size="small" icon="pi pi-plus" />
|
||
|
</div>
|
||
|
</template>
|
||
|
</TreeSelect>
|
||
|
</div>
|
||
|
<DocSectionCode :code="code" :service="['NodeService']" v-bind="$attrs" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { NodeService } from '/service/NodeService';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
nodes: null,
|
||
|
selectedValue: null,
|
||
|
code: {
|
||
|
basic: `
|
||
|
<TreeSelect v-model="selectedValue" :options="nodes" placeholder="Select Item" class="md:w-80 w-full">
|
||
|
<template #dropdownicon>
|
||
|
<i class="pi pi-search" />
|
||
|
</template>
|
||
|
<template #header>
|
||
|
<div class="font-medium px-3 py-2">Available Files</div>
|
||
|
</template>
|
||
|
<template #footer>
|
||
|
<div class="px-3 pt-1 pb-2 flex justify-between">
|
||
|
<Button label="Add New" severity="secondary" text size="small" icon="pi pi-plus" />
|
||
|
<Button label="Remove All" severity="danger" text size="small" icon="pi pi-plus" />
|
||
|
</div>
|
||
|
</template>
|
||
|
</TreeSelect>
|
||
|
`,
|
||
|
options: `
|
||
|
<template>
|
||
|
<div class="card flex justify-center">
|
||
|
<TreeSelect v-model="selectedValue" :options="nodes" placeholder="Select Item" class="md:w-80 w-full">
|
||
|
<template #dropdownicon>
|
||
|
<i class="pi pi-search" />
|
||
|
</template>
|
||
|
<template #header>
|
||
|
<div class="font-medium px-3 py-2">Available Files</div>
|
||
|
</template>
|
||
|
<template #footer>
|
||
|
<div class="px-3 pt-1 pb-2 flex justify-between">
|
||
|
<Button label="Add New" severity="secondary" text size="small" icon="pi pi-plus" />
|
||
|
<Button label="Remove All" severity="danger" text size="small" icon="pi pi-plus" />
|
||
|
</div>
|
||
|
</template>
|
||
|
</TreeSelect>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { NodeService } from './service/NodeService';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
nodes: null,
|
||
|
selectedValue: null,
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
NodeService.getTreeNodes().then((data) => (this.nodes = data));
|
||
|
}
|
||
|
}
|
||
|
<\/script>
|
||
|
`,
|
||
|
composition: `
|
||
|
<template>
|
||
|
<div class="card flex justify-center">
|
||
|
<TreeSelect v-model="selectedValue" :options="nodes" placeholder="Select Item" class="md:w-80 w-full">
|
||
|
<template #dropdownicon>
|
||
|
<i class="pi pi-search" />
|
||
|
</template>
|
||
|
<template #header>
|
||
|
<div class="font-medium px-3 py-2">Available Files</div>
|
||
|
</template>
|
||
|
<template #footer>
|
||
|
<div class="px-3 pt-1 pb-2 flex justify-between">
|
||
|
<Button label="Add New" severity="secondary" text size="small" icon="pi pi-plus" />
|
||
|
<Button label="Remove All" severity="danger" text size="small" icon="pi pi-plus" />
|
||
|
</div>
|
||
|
</template>
|
||
|
</TreeSelect>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref, onMounted } from 'vue';
|
||
|
import { NodeService } from './service/NodeService';
|
||
|
|
||
|
const nodes = ref(null);
|
||
|
const selectedValue = ref(null);
|
||
|
|
||
|
onMounted(() => {
|
||
|
NodeService.getTreeNodes().then((data) => (nodes.value = data));
|
||
|
});
|
||
|
<\/script>
|
||
|
`,
|
||
|
data: `
|
||
|
{
|
||
|
key: '0',
|
||
|
label: 'Documents',
|
||
|
data: 'Documents Folder',
|
||
|
icon: 'pi pi-fw pi-inbox',
|
||
|
children: [
|
||
|
{
|
||
|
key: '0-0',
|
||
|
label: 'Work',
|
||
|
data: 'Work Folder',
|
||
|
icon: 'pi pi-fw pi-cog',
|
||
|
children: [
|
||
|
{ key: '0-0-0', label: 'Expenses.doc', icon: 'pi pi-fw pi-file', data: 'Expenses Document' },
|
||
|
{ key: '0-0-1', label: 'Resume.doc', icon: 'pi pi-fw pi-file', data: 'Resume Document' }
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
key: '0-1',
|
||
|
label: 'Home',
|
||
|
data: 'Home Folder',
|
||
|
icon: 'pi pi-fw pi-home',
|
||
|
children: [{ key: '0-1-0', label: 'Invoices.txt', icon: 'pi pi-fw pi-file', data: 'Invoices for this month' }]
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
...`
|
||
|
}
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
NodeService.getTreeNodes().then((data) => (this.nodes = data));
|
||
|
}
|
||
|
};
|
||
|
</script>
|