primevue-mirror/components/lib/panel/Panel.vue

96 lines
3.2 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2023-05-19 10:33:07 +00:00
<div :class="css('root')" data-pc-name="panel" v-bind="ptm('root')">
<div :class="css('header')" v-bind="ptm('header')">
<slot :id="ariaId + '_header'" name="header" :class="css('title')">
<span v-if="header" :id="ariaId + '_header'" :class="css('title')" v-bind="ptm('title')">{{ header }}</span>
2022-09-06 12:03:37 +00:00
</slot>
2023-05-19 10:33:07 +00:00
<div :class="css('icons')" v-bind="ptm('icons')">
2022-09-06 12:03:37 +00:00
<slot name="icons"></slot>
2022-09-14 11:26:01 +00:00
<button
v-if="toggleable"
:id="ariaId + '_header'"
v-ripple
type="button"
role="button"
2023-05-19 10:33:07 +00:00
:class="css('toggler')"
2022-12-08 11:04:25 +00:00
:aria-label="buttonAriaLabel"
2022-09-14 11:26:01 +00:00
:aria-controls="ariaId + '_content'"
:aria-expanded="!d_collapsed"
@click="toggle"
@keydown="onKeyDown"
2023-03-21 12:24:34 +00:00
v-bind="{ ...toggleButtonProps, ...ptm('toggler') }"
2022-09-14 11:26:01 +00:00
>
2023-04-05 08:07:25 +00:00
<slot name="togglericon" :collapsed="d_collapsed">
<component :is="d_collapsed ? 'PlusIcon' : 'MinusIcon'" v-bind="ptm('togglericon')" />
2023-03-21 15:53:39 +00:00
</slot>
2022-09-06 12:03:37 +00:00
</button>
</div>
</div>
<transition name="p-toggleable-content">
2023-05-19 10:33:07 +00:00
<div v-show="!d_collapsed" :id="ariaId + '_content'" :class="css('toggleablecontent')" role="region" :aria-labelledby="ariaId + '_header'" v-bind="ptm('toggleablecontent')">
<div :class="css('content')" v-bind="ptm('content')">
2022-09-06 12:03:37 +00:00
<slot></slot>
</div>
2023-05-19 10:33:07 +00:00
<div v-if="$slots.footer" :class="css('footer')" v-bind="ptm('footer')">
2023-03-31 13:42:19 +00:00
<slot name="footer"></slot>
</div>
2022-09-06 12:03:37 +00:00
</div>
</transition>
</div>
</template>
<script>
import MinusIcon from 'primevue/icons/minus';
import PlusIcon from 'primevue/icons/plus';
2022-09-06 12:03:37 +00:00
import Ripple from 'primevue/ripple';
2022-12-08 11:04:25 +00:00
import { UniqueComponentId } from 'primevue/utils';
2023-05-19 10:33:07 +00:00
import BasePanel from './BasePanel';
2022-09-06 12:03:37 +00:00
export default {
name: 'Panel',
2023-05-19 10:33:07 +00:00
extends: BasePanel,
2022-09-06 12:03:37 +00:00
emits: ['update:collapsed', 'toggle'],
data() {
return {
d_collapsed: this.collapsed
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
},
watch: {
collapsed(newValue) {
this.d_collapsed = newValue;
}
},
methods: {
toggle(event) {
this.d_collapsed = !this.d_collapsed;
this.$emit('update:collapsed', this.d_collapsed);
this.$emit('toggle', {
originalEvent: event,
value: this.d_collapsed
});
2022-09-14 11:26:01 +00:00
},
onKeyDown(event) {
if (event.code === 'Enter' || event.code === 'Space') {
this.toggle(event);
event.preventDefault();
}
2022-09-06 12:03:37 +00:00
}
},
computed: {
ariaId() {
return UniqueComponentId();
},
2022-12-08 11:04:25 +00:00
buttonAriaLabel() {
return this.toggleButtonProps && this.toggleButtonProps['aria-label'] ? this.toggleButtonProps['aria-label'] : this.header;
2022-09-06 12:03:37 +00:00
}
},
2023-04-03 08:27:41 +00:00
components: {
PlusIcon,
MinusIcon
},
2022-09-06 12:03:37 +00:00
directives: {
2022-09-14 11:26:01 +00:00
ripple: Ripple
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>