Refactor #3965 - For Panel
parent
9911c8f601
commit
f80ed4137c
|
@ -1,10 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div :class="containerClass" v-bind="ptm('root')">
|
<div :class="classes.root" v-bind="ptm('root')">
|
||||||
<div class="p-panel-header" v-bind="ptm('header')">
|
<div :class="classes.header" v-bind="ptm('header')">
|
||||||
<slot :id="ariaId + '_header'" name="header" class="p-panel-title">
|
<slot :id="ariaId + '_header'" name="header" :class="classes.title">
|
||||||
<span v-if="header" :id="ariaId + '_header'" class="p-panel-title" v-bind="ptm('title')">{{ header }}</span>
|
<span v-if="header" :id="ariaId + '_header'" :class="classes.title" v-bind="ptm('title')">{{ header }}</span>
|
||||||
</slot>
|
</slot>
|
||||||
<div class="p-panel-icons" v-bind="ptm('icons')">
|
<div :class="classes.icons" v-bind="ptm('icons')">
|
||||||
<slot name="icons"></slot>
|
<slot name="icons"></slot>
|
||||||
<button
|
<button
|
||||||
v-if="toggleable"
|
v-if="toggleable"
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
v-ripple
|
v-ripple
|
||||||
type="button"
|
type="button"
|
||||||
role="button"
|
role="button"
|
||||||
class="p-panel-header-icon p-panel-toggler p-link"
|
:class="classes.toggler"
|
||||||
:aria-label="buttonAriaLabel"
|
:aria-label="buttonAriaLabel"
|
||||||
:aria-controls="ariaId + '_content'"
|
:aria-controls="ariaId + '_content'"
|
||||||
:aria-expanded="!d_collapsed"
|
:aria-expanded="!d_collapsed"
|
||||||
|
@ -27,11 +27,11 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<transition name="p-toggleable-content">
|
<transition name="p-toggleable-content">
|
||||||
<div v-show="!d_collapsed" :id="ariaId + '_content'" class="p-toggleable-content" role="region" :aria-labelledby="ariaId + '_header'" v-bind="ptm('toggleablecontent')">
|
<div v-show="!d_collapsed" :id="ariaId + '_content'" :class="classes.toggleablecontent" role="region" :aria-labelledby="ariaId + '_header'" v-bind="ptm('toggleablecontent')">
|
||||||
<div class="p-panel-content" v-bind="ptm('content')">
|
<div :class="classes.content" v-bind="ptm('content')">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="$slots.footer" class="p-panel-footer" v-bind="ptm('footer')">
|
<div v-if="$slots.footer" :class="classes.footer" v-bind="ptm('footer')">
|
||||||
<slot name="footer"></slot>
|
<slot name="footer"></slot>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -44,7 +44,11 @@ import BaseComponent from 'primevue/basecomponent';
|
||||||
import MinusIcon from 'primevue/icons/minus';
|
import MinusIcon from 'primevue/icons/minus';
|
||||||
import PlusIcon from 'primevue/icons/plus';
|
import PlusIcon from 'primevue/icons/plus';
|
||||||
import Ripple from 'primevue/ripple';
|
import Ripple from 'primevue/ripple';
|
||||||
|
import { useStyle } from 'primevue/usestyle';
|
||||||
import { UniqueComponentId } from 'primevue/utils';
|
import { UniqueComponentId } from 'primevue/utils';
|
||||||
|
import { getComputedClasses, styles } from './PanelStyle';
|
||||||
|
|
||||||
|
const styleInstance = useStyle(styles, { id: 'primevue_panel_style', manual: true });
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Panel',
|
name: 'Panel',
|
||||||
|
@ -67,6 +71,12 @@ export default {
|
||||||
watch: {
|
watch: {
|
||||||
collapsed(newValue) {
|
collapsed(newValue) {
|
||||||
this.d_collapsed = newValue;
|
this.d_collapsed = newValue;
|
||||||
|
},
|
||||||
|
isUnstyled: {
|
||||||
|
immediate: true,
|
||||||
|
handler(newValue) {
|
||||||
|
!newValue && styleInstance.load();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -89,11 +99,11 @@ export default {
|
||||||
ariaId() {
|
ariaId() {
|
||||||
return UniqueComponentId();
|
return UniqueComponentId();
|
||||||
},
|
},
|
||||||
containerClass() {
|
|
||||||
return ['p-panel p-component', { 'p-panel-toggleable': this.toggleable }];
|
|
||||||
},
|
|
||||||
buttonAriaLabel() {
|
buttonAriaLabel() {
|
||||||
return this.toggleButtonProps && this.toggleButtonProps['aria-label'] ? this.toggleButtonProps['aria-label'] : this.header;
|
return this.toggleButtonProps && this.toggleButtonProps['aria-label'] ? this.toggleButtonProps['aria-label'] : this.header;
|
||||||
|
},
|
||||||
|
classes() {
|
||||||
|
return this.isUnstyled ? {} : getComputedClasses(this.$props, this.$data);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
|
@ -105,25 +115,3 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
|
||||||
.p-panel-header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.p-panel-title {
|
|
||||||
line-height: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.p-panel-header-icon {
|
|
||||||
display: inline-flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
cursor: pointer;
|
|
||||||
text-decoration: none;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
export const styles = `
|
||||||
|
.p-panel-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-panel-title {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-panel-header-icon {
|
||||||
|
display: inline-flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
export const getComputedClasses = (props, states) => ({
|
||||||
|
root: ['p-panel p-component', { 'p-panel-toggleable': props.toggleable }],
|
||||||
|
header: 'p-panel-header',
|
||||||
|
title: 'p-panel-title',
|
||||||
|
icons: 'p-panel-icons',
|
||||||
|
toggler: 'p-panel-header-icon p-panel-toggler p-link',
|
||||||
|
toggleablecontent: 'p-toggleable-content',
|
||||||
|
content: 'p-panel-content',
|
||||||
|
footer: 'p-panel-footer'
|
||||||
|
});
|
Loading…
Reference in New Issue