-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48afe01
commit 316f944
Showing
4 changed files
with
193 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
<template> | ||
<DocSectionText v-bind="$attrs"></DocSectionText> | ||
<div class="card flex justify-content-center"> | ||
<TreeSelect | ||
v-model="selectedValue" | ||
:options="nodes" | ||
placeholder="Select Item" | ||
:pt="{ | ||
root: { class: 'w-full md:w-30rem' }, | ||
tree: { | ||
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, | ||
selectedValue: null, | ||
code: { | ||
basic: ` | ||
<TreeSelect | ||
v-model="selectedValue" | ||
:options="nodes" | ||
placeholder="Select Item" | ||
:pt="{ | ||
root: { class: 'w-full md:w-30rem' }, | ||
tree: { | ||
content: ({ props, state, context }) => ({ | ||
class: context.expanded ? 'bg-blue-100' : 'undefined' | ||
}) | ||
} | ||
}" | ||
/>`, | ||
options: ` | ||
<template> | ||
<div class="card flex justify-content-center"> | ||
<TreeSelect | ||
v-model="selectedValue" | ||
:options="nodes" | ||
placeholder="Select Item" | ||
:pt="{ | ||
root: { class: 'w-full md:w-30rem' }, | ||
tree: { | ||
content: ({ props, state, context }) => ({ | ||
class: context.expanded ? 'bg-blue-100' : 'undefined' | ||
}) | ||
} | ||
}" | ||
/> | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
data() { | ||
return { | ||
nodes: null, | ||
selectedValue: null, | ||
} | ||
}, | ||
mounted() { | ||
NodeService.getTreeNodes().then((data) => (this.nodes = data)); | ||
} | ||
} | ||
<\/script>`, | ||
composition: ` | ||
<template> | ||
<div class="card flex justify-content-center"> | ||
<TreeSelect | ||
v-model="selectedValue" | ||
:options="nodes" | ||
placeholder="Select Item" | ||
:pt="{ | ||
root: { class: 'w-full md:w-30rem' }, | ||
tree: { | ||
content: ({ props, state, context }) => ({ | ||
class: context.expanded ? 'bg-blue-100' : 'undefined' | ||
}) | ||
} | ||
}" | ||
/> | ||
</div> | ||
</template> | ||
<script setup> | ||
import { ref, onMounted } from 'vue'; | ||
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<template> | ||
<div class="doc-main"> | ||
<div class="doc-intro"> | ||
<h1>TreeSelect 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.treeselect', | ||
label: 'TreeSelect PT Options', | ||
component: DocApiTable, | ||
data: getPTOption('TreeSelect') | ||
}, | ||
{ | ||
id: 'pt.demo', | ||
label: 'Demo', | ||
component: PtDoc | ||
} | ||
] | ||
}; | ||
} | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters