212 lines
7.1 KiB
Vue
Executable File
212 lines
7.1 KiB
Vue
Executable File
<template>
|
|
<div>
|
|
<div class="content-section introduction">
|
|
<div class="feature-intro">
|
|
<h1>PanelMenu</h1>
|
|
<p>PanelMenu is a hybrid of Accordion and Tree components.</p>
|
|
</div>
|
|
<AppDemoActions />
|
|
</div>
|
|
|
|
<div class="content-section implementation">
|
|
<div class="card">
|
|
<h5>Default</h5>
|
|
<PanelMenu :model="items" />
|
|
|
|
<h5>Programmatic</h5>
|
|
<div class="mb-3">
|
|
<Button type="button" icon="pi pi-plus" label="Expand All" @click="expandAll" class="mr-2" />
|
|
<Button type="button" icon="pi pi-minus" label="Collapse All" @click="collapseAll" />
|
|
</div>
|
|
<PanelMenu v-model:expandedKeys="expandedKeys" :model="items" />
|
|
</div>
|
|
</div>
|
|
|
|
<PanelMenuDoc />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PanelMenuDoc from './PanelMenuDoc';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
expandedKeys: {},
|
|
items: [
|
|
{
|
|
key: '0',
|
|
label: 'File',
|
|
icon: 'pi pi-fw pi-file',
|
|
items: [
|
|
{
|
|
key: '0_0',
|
|
label: 'New',
|
|
icon: 'pi pi-fw pi-plus',
|
|
items: [
|
|
{
|
|
key: '0_0_0',
|
|
label: 'Bookmark',
|
|
icon: 'pi pi-fw pi-bookmark'
|
|
},
|
|
{
|
|
key: '0_0_1',
|
|
label: 'Video',
|
|
icon: 'pi pi-fw pi-video'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
key: '0_1',
|
|
label: 'Delete',
|
|
icon: 'pi pi-fw pi-trash'
|
|
},
|
|
{
|
|
key: '0_2',
|
|
label: 'Export',
|
|
icon: 'pi pi-fw pi-external-link'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
key: '1',
|
|
label: 'Edit',
|
|
icon: 'pi pi-fw pi-pencil',
|
|
items: [
|
|
{
|
|
key: '1_0',
|
|
label: 'Left',
|
|
icon: 'pi pi-fw pi-align-left'
|
|
},
|
|
{
|
|
key: '1_1',
|
|
label: 'Right',
|
|
icon: 'pi pi-fw pi-align-right'
|
|
},
|
|
{
|
|
key: '1_2',
|
|
label: 'Center',
|
|
icon: 'pi pi-fw pi-align-center'
|
|
},
|
|
{
|
|
key: '1_3',
|
|
label: 'Justify',
|
|
icon: 'pi pi-fw pi-align-justify'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
key: '2',
|
|
label: 'Users',
|
|
icon: 'pi pi-fw pi-user',
|
|
items: [
|
|
{
|
|
key: '2_0',
|
|
label: 'New',
|
|
icon: 'pi pi-fw pi-user-plus'
|
|
},
|
|
{
|
|
key: '2_1',
|
|
label: 'Delete',
|
|
icon: 'pi pi-fw pi-user-minus'
|
|
},
|
|
{
|
|
key: '2_2',
|
|
label: 'Search',
|
|
icon: 'pi pi-fw pi-users',
|
|
items: [
|
|
{
|
|
key: '2_2_0',
|
|
label: 'Filter',
|
|
icon: 'pi pi-fw pi-filter',
|
|
items: [
|
|
{
|
|
key: '2_2_0_0',
|
|
label: 'Print',
|
|
icon: 'pi pi-fw pi-print'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
key: '2_2_1',
|
|
icon: 'pi pi-fw pi-bars',
|
|
label: 'List'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
key: '3',
|
|
label: 'Events',
|
|
icon: 'pi pi-fw pi-calendar',
|
|
items: [
|
|
{
|
|
key: '3_0',
|
|
label: 'Edit',
|
|
icon: 'pi pi-fw pi-pencil',
|
|
items: [
|
|
{
|
|
key: '3_0_0',
|
|
label: 'Save',
|
|
icon: 'pi pi-fw pi-calendar-plus'
|
|
},
|
|
{
|
|
key: '3_0_0',
|
|
label: 'Delete',
|
|
icon: 'pi pi-fw pi-calendar-minus'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
key: '3_1',
|
|
label: 'Archieve',
|
|
icon: 'pi pi-fw pi-calendar-times',
|
|
items: [
|
|
{
|
|
key: '3_1_0',
|
|
label: 'Remove',
|
|
icon: 'pi pi-fw pi-calendar-minus'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|
|
},
|
|
methods: {
|
|
expandAll() {
|
|
for (let node of this.items) {
|
|
this.expandNode(node);
|
|
}
|
|
|
|
this.expandedKeys = {
|
|
...this.expandedKeys
|
|
};
|
|
},
|
|
collapseAll() {
|
|
this.expandedKeys = {};
|
|
},
|
|
expandNode(node) {
|
|
if (node.items && node.items.length) {
|
|
this.expandedKeys[node.key] = true;
|
|
|
|
for (let child of node.items) {
|
|
this.expandNode(child);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
components: {
|
|
PanelMenuDoc: PanelMenuDoc
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.p-panelmenu {
|
|
width: 22rem;
|
|
}
|
|
</style>
|