primevue-mirror/apps/showcase/doc/treetable/TemplateDoc.vue

182 lines
6.1 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Custom content at <i>header</i> and <i>footer</i> slots are supported via templating.</p>
</DocSectionText>
2024-02-21 07:31:43 +00:00
<DeferredDemo @load="loadDemoData">
<div class="card">
2024-05-03 06:34:31 +00:00
<TreeTable :value="nodes" tableStyle="min-width: 50rem">
2024-02-21 07:31:43 +00:00
<template #header>
<div class="text-xl font-bold">File Viewer</div>
</template>
2024-05-03 06:34:31 +00:00
<Column field="name" header="Name" expander style="width: 250px"></Column>
<Column field="size" header="Size" style="width: 150px"></Column>
<Column field="type" header="Type" style="width: 150px"></Column>
<Column style="width: 10rem">
2024-02-21 07:31:43 +00:00
<template #body>
<div class="flex flex-wrap gap-2">
<Button type="button" icon="pi pi-search" rounded />
<Button type="button" icon="pi pi-pencil" rounded severity="success" />
</div>
</template>
</Column>
<template #footer>
2024-05-20 12:14:38 +00:00
<div class="flex justify-start">
2024-04-16 07:35:56 +00:00
<Button icon="pi pi-refresh" label="Reload" severity="warn" />
2023-02-28 08:29:30 +00:00
</div>
</template>
2024-02-21 07:31:43 +00:00
</TreeTable>
</div>
</DeferredDemo>
2023-02-28 08:29:30 +00:00
<DocSectionCode :code="code" :service="['NodeService']" />
</template>
<script>
import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
nodes: null,
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-05-03 06:34:31 +00:00
<TreeTable :value="nodes" tableStyle="min-width: 50rem">
2023-02-28 08:29:30 +00:00
<template #header>
<div class="text-xl font-bold">File Viewer</div>
</template>
2024-05-03 06:34:31 +00:00
<Column field="name" header="Name" expander style="width: 250px"></Column>
<Column field="size" header="Size" style="width: 150px"></Column>
<Column field="type" header="Type" style="width: 150px"></Column>
<Column style="width: 10rem">
2023-02-28 08:29:30 +00:00
<template #body>
<div class="flex flex-wrap gap-2">
2023-03-03 12:15:20 +00:00
<Button type="button" icon="pi pi-search" rounded />
<Button type="button" icon="pi pi-pencil" rounded severity="success" />
2023-02-28 08:29:30 +00:00
</div>
</template>
</Column>
<template #footer>
2024-05-20 12:14:38 +00:00
<div class="flex justify-start">
2024-04-16 07:35:56 +00:00
<Button icon="pi pi-refresh" label="Reload" severity="warn" />
2023-02-28 08:29:30 +00:00
</div>
</template>
2023-10-15 09:38:39 +00:00
</TreeTable>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
2024-05-03 06:34:31 +00:00
<TreeTable :value="nodes" tableStyle="min-width: 50rem">
2023-02-28 08:29:30 +00:00
<template #header>
<div class="text-xl font-bold">File Viewer</div>
</template>
2024-05-03 06:34:31 +00:00
<Column field="name" header="Name" expander style="width: 250px"></Column>
<Column field="size" header="Size" style="width: 150px"></Column>
<Column field="type" header="Type" style="width: 150px"></Column>
<Column style="width: 10rem">
2023-02-28 08:29:30 +00:00
<template #body>
<div class="flex flex-wrap gap-2">
2023-03-03 12:15:20 +00:00
<Button type="button" icon="pi pi-search" rounded/>
<Button type="button" icon="pi pi-pencil" rounded severity="success" />
2023-02-28 08:29:30 +00:00
</div>
</template>
</Column>
<template #footer>
2024-05-20 12:14:38 +00:00
<div class="flex justify-start">
2024-04-16 07:35:56 +00:00
<Button icon="pi pi-refresh" label="Reload" severity="warn" />
2023-02-28 08:29:30 +00:00
</div>
</template>
</TreeTable>
</div>
</template>
<script>
import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
nodes: null,
}
},
mounted() {
NodeService.getTreeTableNodes().then((data) => (this.nodes = data));
}
}
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
2024-05-03 06:34:31 +00:00
<TreeTable :value="nodes" tableStyle="min-width: 50rem">
2023-02-28 08:29:30 +00:00
<template #header>
<div class="text-xl font-bold">File Viewer</div>
</template>
2024-05-03 06:34:31 +00:00
<Column field="name" header="Name" expander style="width: 250px"></Column>
<Column field="size" header="Size" style="width: 150px"></Column>
<Column field="type" header="Type" style="width: 150px"></Column>
<Column style="width: 10rem">
2023-02-28 08:29:30 +00:00
<template #body>
<div class="flex flex-wrap gap-2">
2023-03-03 12:15:20 +00:00
<Button type="button" icon="pi pi-search" rounded/>
<Button type="button" icon="pi pi-pencil" rounded severity="success" />
2023-02-28 08:29:30 +00:00
</div>
</template>
</Column>
<template #footer>
2024-05-20 12:14:38 +00:00
<div class="flex justify-start">
2024-04-16 07:35:56 +00:00
<Button icon="pi pi-refresh" label="Reload" severity="warn" />
2023-02-28 08:29:30 +00:00
</div>
</template>
</TreeTable>
</div>
</template>
<script setup>
import { ref, onMounted } from 'vue';
import { NodeService } from '@/service/NodeService';
onMounted(() => {
NodeService.getTreeTableNodes().then((data) => (nodes.value = data));
});
const nodes = ref();
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-02-28 08:29:30 +00:00
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' }]
}
]
},
...
`
}
};
},
2024-02-21 07:31:43 +00:00
methods: {
loadDemoData() {
NodeService.getTreeTableNodes().then((data) => (this.nodes = data));
}
2023-02-28 08:29:30 +00:00
}
};
</script>