Skip to content

Commit

Permalink
Refactor #3965 - For Panel
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed May 16, 2023
1 parent 9911c8f commit f80ed41
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 34 deletions.
56 changes: 22 additions & 34 deletions components/lib/panel/Panel.vue
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<template>
<div :class="containerClass" v-bind="ptm('root')">
<div class="p-panel-header" v-bind="ptm('header')">
<slot :id="ariaId + '_header'" name="header" class="p-panel-title">
<span v-if="header" :id="ariaId + '_header'" class="p-panel-title" v-bind="ptm('title')">{{ header }}</span>
<div :class="classes.root" v-bind="ptm('root')">
<div :class="classes.header" v-bind="ptm('header')">
<slot :id="ariaId + '_header'" name="header" :class="classes.title">
<span v-if="header" :id="ariaId + '_header'" :class="classes.title" v-bind="ptm('title')">{{ header }}</span>
</slot>
<div class="p-panel-icons" v-bind="ptm('icons')">
<div :class="classes.icons" v-bind="ptm('icons')">
<slot name="icons"></slot>
<button
v-if="toggleable"
:id="ariaId + '_header'"
v-ripple
type="button"
role="button"
class="p-panel-header-icon p-panel-toggler p-link"
:class="classes.toggler"
:aria-label="buttonAriaLabel"
:aria-controls="ariaId + '_content'"
:aria-expanded="!d_collapsed"
Expand All @@ -27,11 +27,11 @@
</div>
</div>
<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 class="p-panel-content" v-bind="ptm('content')">
<div v-show="!d_collapsed" :id="ariaId + '_content'" :class="classes.toggleablecontent" role="region" :aria-labelledby="ariaId + '_header'" v-bind="ptm('toggleablecontent')">
<div :class="classes.content" v-bind="ptm('content')">
<slot></slot>
</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>
</div>
</div>
Expand All @@ -44,7 +44,11 @@ import BaseComponent from 'primevue/basecomponent';
import MinusIcon from 'primevue/icons/minus';
import PlusIcon from 'primevue/icons/plus';
import Ripple from 'primevue/ripple';
import { useStyle } from 'primevue/usestyle';
import { UniqueComponentId } from 'primevue/utils';
import { getComputedClasses, styles } from './PanelStyle';
const styleInstance = useStyle(styles, { id: 'primevue_panel_style', manual: true });
export default {
name: 'Panel',
Expand All @@ -67,6 +71,12 @@ export default {
watch: {
collapsed(newValue) {
this.d_collapsed = newValue;
},
isUnstyled: {
immediate: true,
handler(newValue) {
!newValue && styleInstance.load();
}
}
},
methods: {
Expand All @@ -89,11 +99,11 @@ export default {
ariaId() {
return UniqueComponentId();
},
containerClass() {
return ['p-panel p-component', { 'p-panel-toggleable': this.toggleable }];
},
buttonAriaLabel() {
return this.toggleButtonProps && this.toggleButtonProps['aria-label'] ? this.toggleButtonProps['aria-label'] : this.header;
},
classes() {
return this.isUnstyled ? {} : getComputedClasses(this.$props, this.$data);
}
},
components: {
Expand All @@ -105,25 +115,3 @@ export default {
}
};
</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>
32 changes: 32 additions & 0 deletions components/lib/panel/PanelStyle.js
Original file line number Diff line number Diff line change
@@ -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'
});

0 comments on commit f80ed41

Please sign in to comment.