Skip to content

Commit

Permalink
Fix #6389: Passthrough accordiontab not tab
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Apr 12, 2024
1 parent 7a3210f commit bc7dcb0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion components/doc/accordion/theming/tailwinddoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const TRANSITIONS = {
const Tailwind = {
accordion: {
root: 'mb-1',
tab: {
accordiontab: {
root: 'mb-1',
header: ({ props }) => ({
className: classNames(
Expand Down
18 changes: 9 additions & 9 deletions components/lib/accordion/Accordion.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const Accordion = React.forwardRef((inProps, ref) => {
}
};

return mergeProps(ptm(`tab.${key}`, { tab: tabMetaData }), ptm(`tab.${key}`, { tab: tabMetaData }), ptm(`tab.${key}`, tabMetaData), ptmo(getTabProp(tab, 'pt'), key, tabMetaData));
return mergeProps(ptm(`accordiontab.${key}`, { tab: tabMetaData }), ptm(`accordiontab.${key}`, { tab: tabMetaData }), ptm(`accordiontab.${key}`, tabMetaData), ptmo(getTabProp(tab, 'pt'), key, tabMetaData));
};

const onTabHeaderClick = (event, tab, index) => {
Expand Down Expand Up @@ -203,7 +203,7 @@ export const Accordion = React.forwardRef((inProps, ref) => {
const tabIndex = getTabProp(tab, 'disabled') ? -1 : getTabProp(tab, 'tabIndex');
const headerTitleProps = mergeProps(
{
className: cx('tab.headertitle')
className: cx('accordiontab.headertitle')
},
getTabPT(tab, 'headertitle', index)
);
Expand All @@ -212,15 +212,15 @@ export const Accordion = React.forwardRef((inProps, ref) => {
const headerIconProps = mergeProps(
{
'aria-hidden': 'true',
className: cx('tab.headericon')
className: cx('accordiontab.headericon')
},
getTabPT(tab, 'headericon', index)
);
const icon = selected ? props.collapseIcon || <ChevronDownIcon {...headerIconProps} /> : props.expandIcon || <ChevronRightIcon {...headerIconProps} />;
const toggleIcon = IconUtils.getJSXIcon(icon, { ...headerIconProps }, { props, selected });
const headerProps = mergeProps(
{
className: classNames(getTabProp(tab, 'headerClassName'), getTabProp(tab, 'className'), cx('tab.header', { selected, getTabProp, tab })),
className: classNames(getTabProp(tab, 'headerClassName'), getTabProp(tab, 'className'), cx('accordiontab.header', { selected, getTabProp, tab })),
style,
'data-p-highlight': selected,
'data-p-disabled': getTabProp(tab, 'disabled')
Expand All @@ -232,7 +232,7 @@ export const Accordion = React.forwardRef((inProps, ref) => {
{
id: headerId,
href: '#' + ariaControls,
className: cx('tab.headeraction'),
className: cx('accordiontab.headeraction'),
role: 'button',
tabIndex,
onClick: (e) => onTabHeaderClick(e, tab, index),
Expand Down Expand Up @@ -263,7 +263,7 @@ export const Accordion = React.forwardRef((inProps, ref) => {
{
id: contentId,
ref: contentRef,
className: classNames(getTabProp(tab, 'contentClassName'), getTabProp(tab, 'className'), cx('tab.toggleablecontent')),
className: classNames(getTabProp(tab, 'contentClassName'), getTabProp(tab, 'className'), cx('accordiontab.toggleablecontent')),
style,
role: 'region',
'aria-labelledby': ariaLabelledby
Expand All @@ -273,14 +273,14 @@ export const Accordion = React.forwardRef((inProps, ref) => {

const contentProps = mergeProps(
{
className: cx('tab.content')
className: cx('accordiontab.content')
},
getTabPT(tab, 'content', index)
);

const transitionProps = mergeProps(
{
classNames: cx('tab.transition'),
classNames: cx('accordiontab.transition'),
timeout: { enter: 1000, exit: 450 },
in: selected,
unmountOnExit: true,
Expand Down Expand Up @@ -308,7 +308,7 @@ export const Accordion = React.forwardRef((inProps, ref) => {
const rootProps = mergeProps(
{
key,
className: cx('tab.root', { selected })
className: cx('accordiontab.root', { selected })
},
AccordionTabBase.getCOtherProps(tab),
getTabPT(tab, 'root', index)
Expand Down
2 changes: 1 addition & 1 deletion components/lib/accordion/AccordionBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ObjectUtils, classNames } from '../utils/Utils';

const classes = {
root: 'p-accordion p-component',
tab: {
accordiontab: {
root: ({ selected }) =>
classNames('p-accordion-tab', {
'p-accordion-tab-active': selected
Expand Down
4 changes: 4 additions & 0 deletions components/lib/accordion/accordion.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,10 @@ export interface AccordionPassThroughOptions {
* Uses to pass attributes to the root's DOM element.
*/
root?: AccordionPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
/**
* Uses to pass attributes to accordion tabs.
*/
accordiontab?: AccordionTabPassThroughOptions;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion components/lib/passthrough/tailwind/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const Tailwind = {
},
accordion: {
root: 'mb-1',
tab: {
accordiontab: {
root: 'mb-1',
header: ({ context }) => {
return {
Expand Down

0 comments on commit bc7dcb0

Please sign in to comment.