2022-09-06 12:03:37 +00:00
|
|
|
<template>
|
2023-03-24 15:07:46 +00:00
|
|
|
<fieldset :class="['p-fieldset p-component', { 'p-fieldset-toggleable': toggleable }]" v-bind="ptm('root')">
|
|
|
|
<legend class="p-fieldset-legend" v-bind="ptm('legend')">
|
2022-09-14 11:26:01 +00:00
|
|
|
<slot v-if="!toggleable" name="legend">
|
2023-03-24 15:07:46 +00:00
|
|
|
<span :id="ariaId + '_header'" class="p-fieldset-legend-text" v-bind="ptm('legendtitle')">{{ legend }}</span>
|
2022-09-06 12:03:37 +00:00
|
|
|
</slot>
|
2022-12-08 11:04:25 +00:00
|
|
|
<a
|
|
|
|
v-if="toggleable"
|
|
|
|
:id="ariaId + '_header'"
|
|
|
|
v-ripple
|
|
|
|
tabindex="0"
|
|
|
|
role="button"
|
|
|
|
:aria-controls="ariaId + '_content'"
|
|
|
|
:aria-expanded="!d_collapsed"
|
|
|
|
:aria-label="buttonAriaLabel"
|
|
|
|
@click="toggle"
|
|
|
|
@keydown="onKeyDown"
|
2023-03-24 15:07:46 +00:00
|
|
|
v-bind="{ ...toggleButtonProps, ...ptm('toggler') }"
|
2022-12-08 11:04:25 +00:00
|
|
|
>
|
2023-03-24 15:07:46 +00:00
|
|
|
<slot name="togglericon" :collapsed="d_collapsed">
|
2023-04-11 06:48:49 +00:00
|
|
|
<component :is="d_collapsed ? 'PlusIcon' : 'MinusIcon'" v-bind="ptm('togglericon')" class="p-fieldset-toggler" />
|
2023-03-24 15:07:46 +00:00
|
|
|
</slot>
|
2022-09-06 12:03:37 +00:00
|
|
|
<slot name="legend">
|
2023-03-24 15:07:46 +00:00
|
|
|
<span class="p-fieldset-legend-text" v-bind="ptm('legendtitle')">{{ legend }}</span>
|
2022-09-06 12:03:37 +00:00
|
|
|
</slot>
|
|
|
|
</a>
|
|
|
|
</legend>
|
|
|
|
<transition name="p-toggleable-content">
|
2023-03-24 15:07:46 +00:00
|
|
|
<div v-show="!d_collapsed" :id="ariaId + '_content'" class="p-toggleable-content" role="region" :aria-labelledby="ariaId + '_header'" v-bind="ptm('toggleablecontent')">
|
|
|
|
<div class="p-fieldset-content" v-bind="ptm('content')">
|
2022-09-06 12:03:37 +00:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</fieldset>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-03-31 21:51:41 +00:00
|
|
|
import BaseComponent from 'primevue/basecomponent';
|
2022-09-06 12:03:37 +00:00
|
|
|
import Ripple from 'primevue/ripple';
|
2023-04-11 06:48:49 +00:00
|
|
|
import MinusIcon from 'primevue/icon/minus';
|
|
|
|
import PlusIcon from 'primevue/icon/plus';
|
2022-12-08 11:04:25 +00:00
|
|
|
import { UniqueComponentId } from 'primevue/utils';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Fieldset',
|
2023-03-31 21:51:41 +00:00
|
|
|
extends: BaseComponent,
|
2022-09-06 12:03:37 +00:00
|
|
|
emits: ['update:collapsed', 'toggle'],
|
|
|
|
props: {
|
|
|
|
legend: String,
|
|
|
|
toggleable: Boolean,
|
2022-09-14 11:26:01 +00:00
|
|
|
collapsed: Boolean,
|
2022-12-08 11:04:25 +00:00
|
|
|
toggleButtonProps: {
|
|
|
|
type: null,
|
|
|
|
default: null
|
|
|
|
}
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2022-09-14 11:26:01 +00:00
|
|
|
d_collapsed: this.collapsed
|
|
|
|
};
|
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
|
|
|
}
|
|
|
|
},
|
2022-09-14 11:26:01 +00:00
|
|
|
computed: {
|
2022-09-06 12:03:37 +00:00
|
|
|
ariaId() {
|
|
|
|
return UniqueComponentId();
|
2022-12-08 11:04:25 +00:00
|
|
|
},
|
|
|
|
buttonAriaLabel() {
|
|
|
|
return this.toggleButtonProps && this.toggleButtonProps['aria-label'] ? this.toggleButtonProps['aria-label'] : this.legend;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
directives: {
|
2022-09-14 11:26:01 +00:00
|
|
|
ripple: Ripple
|
2023-04-11 06:48:49 +00:00
|
|
|
},
|
|
|
|
components: {
|
|
|
|
PlusIcon,
|
|
|
|
MinusIcon
|
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>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.p-fieldset-legend > a,
|
|
|
|
.p-fieldset-legend > span {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-fieldset-toggleable .p-fieldset-legend a {
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-fieldset-legend-text {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
</style>
|