Tree pt demo updates
parent
6dd476f920
commit
6382a616fa
|
@ -0,0 +1,123 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs"></DocSectionText>
|
||||
<div class="card flex justify-content-center">
|
||||
<Tree
|
||||
:value="nodes"
|
||||
:pt="{
|
||||
root: { class: 'w-full md:w-30rem' },
|
||||
content: ({ props, state, context }) => ({
|
||||
class: context.expanded ? 'bg-blue-100' : 'undefined'
|
||||
})
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
<DocSectionCode :code="code" :service="['NodeService']" v-bind="$attrs" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { NodeService } from '@/service/NodeService';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
nodes: null,
|
||||
code: {
|
||||
basic: `
|
||||
<Tree
|
||||
:value="nodes"
|
||||
:pt="{
|
||||
root: { class: 'w-full md:w-30rem' },
|
||||
content: ({ props, state, context }) => ({
|
||||
class: context.expanded ? 'bg-blue-100' : 'undefined'
|
||||
})
|
||||
}"
|
||||
/>`,
|
||||
options: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<Tree
|
||||
:value="nodes"
|
||||
:pt="{
|
||||
root: { class: 'w-full md:w-30rem' },
|
||||
content: ({ props, state, context }) => ({
|
||||
class: context.expanded ? 'bg-blue-100' : 'undefined'
|
||||
})
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { NodeService } from '@/service/NodeService';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
nodes: null
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
NodeService.getTreeNodes().then((data) => (this.nodes = data));
|
||||
}
|
||||
}
|
||||
<\/script>`,
|
||||
composition: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<Tree
|
||||
:value="nodes"
|
||||
:pt="{
|
||||
root: { class: 'w-full md:w-30rem' },
|
||||
content: ({ props, state, context }) => ({
|
||||
class: context.expanded ? 'bg-blue-100' : 'undefined'
|
||||
})
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue';
|
||||
import { NodeService } from '@/service/NodeService';
|
||||
|
||||
const nodes = 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>
|
|
@ -0,0 +1,8 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>{{ $attrs.description }}</p>
|
||||
</DocSectionText>
|
||||
<div class="card">
|
||||
<img class="w-full" src="https://primefaces.org/cdn/primevue/images/pt/wireframe-placeholder.jpg" />
|
||||
</div>
|
||||
</template>
|
|
@ -0,0 +1,41 @@
|
|||
<template>
|
||||
<div class="doc-main">
|
||||
<div class="doc-intro">
|
||||
<h1>Tree Pass Through</h1>
|
||||
</div>
|
||||
<DocSections :docs="docs" />
|
||||
</div>
|
||||
<DocSectionNav :docs="docs" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||||
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
|
||||
import PtDoc from './PTDoc.vue';
|
||||
import PTImage from './PTImage.vue';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
docs: [
|
||||
{
|
||||
id: 'pt.image',
|
||||
label: 'Wireframe',
|
||||
component: PTImage
|
||||
},
|
||||
{
|
||||
id: 'pt.doc.tree',
|
||||
label: 'Tree PT Options',
|
||||
component: DocApiTable,
|
||||
data: getPTOption('Tree')
|
||||
},
|
||||
{
|
||||
id: 'pt.demo',
|
||||
label: 'Demo',
|
||||
component: PtDoc
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<DocComponent title="Vue Tree Component" header="Tree" description="Tree is used to display hierarchical data." :componentDocs="docs" :apiDocs="['Tree']" />
|
||||
<DocComponent title="Vue Tree Component" header="Tree" description="Tree is used to display hierarchical data." :componentDocs="docs" :apiDocs="['Tree']" :ptTabComponent="ptComponent" />
|
||||
</template>
|
||||
<script>
|
||||
import AccessibilityDoc from '@/doc/tree/AccessibilityDoc.vue';
|
||||
|
@ -9,11 +9,12 @@ import EventsDoc from '@/doc/tree/EventsDoc.vue';
|
|||
import FilterDoc from '@/doc/tree/FilterDoc.vue';
|
||||
import ImportDoc from '@/doc/tree/ImportDoc.vue';
|
||||
import LazyDoc from '@/doc/tree/LazyDoc.vue';
|
||||
import StyleDoc from '@/doc/tree/StyleDoc.vue';
|
||||
import TemplateDoc from '@/doc/tree/TemplateDoc.vue';
|
||||
import PTComponent from '@/doc/tree/pt/index.vue';
|
||||
import CheckboxDoc from '@/doc/tree/selection/CheckboxDoc.vue';
|
||||
import MultipleDoc from '@/doc/tree/selection/MultipleDoc.vue';
|
||||
import SingleDoc from '@/doc/tree/selection/SingleDoc.vue';
|
||||
import StyleDoc from '@/doc/tree/StyleDoc.vue';
|
||||
import TemplateDoc from '@/doc/tree/TemplateDoc.vue';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
|
@ -85,7 +86,8 @@ export default {
|
|||
label: 'Accessibility',
|
||||
component: AccessibilityDoc
|
||||
}
|
||||
]
|
||||
],
|
||||
ptComponent: PTComponent
|
||||
};
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue