-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DataViews table layout: hide actions menu when there is only one action and is primary #67020
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -59,6 +59,12 @@ interface CompactItemActionsProps< Item > { | |||||||||||||
actions: Action< Item >[]; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
interface PrimaryActionsProps< Item > { | ||||||||||||||
item: Item; | ||||||||||||||
actions: Action< Item >[]; | ||||||||||||||
registry: ReturnType< typeof useRegistry >; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
function ButtonTrigger< Item >( { | ||||||||||||||
action, | ||||||||||||||
onClick, | ||||||||||||||
|
@@ -179,6 +185,13 @@ export function ActionsMenuGroup< Item >( { | |||||||||||||
); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
function hasOnlyOneActionAndIsPrimary< Item >( | ||||||||||||||
primaryActions: Action< Item >[], | ||||||||||||||
actions: Action< Item >[] | ||||||||||||||
) { | ||||||||||||||
return primaryActions.length === 1 && actions.length; | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @oandregal I believe the condition https://wordpress.github.io/gutenberg/?path=/story/dataviews-dataviews--default gutenberg/packages/dataviews/src/components/dataviews/stories/fixtures.tsx Lines 610 to 615 in b7d989e
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||
} | ||||||||||||||
|
||||||||||||||
export default function ItemActions< Item >( { | ||||||||||||||
item, | ||||||||||||||
actions, | ||||||||||||||
|
@@ -199,9 +212,21 @@ export default function ItemActions< Item >( { | |||||||||||||
eligibleActions: _eligibleActions, | ||||||||||||||
}; | ||||||||||||||
}, [ actions, item ] ); | ||||||||||||||
|
||||||||||||||
if ( isCompact ) { | ||||||||||||||
return <CompactItemActions item={ item } actions={ eligibleActions } />; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
if ( hasOnlyOneActionAndIsPrimary( primaryActions, actions ) ) { | ||||||||||||||
return ( | ||||||||||||||
<PrimaryActions | ||||||||||||||
item={ item } | ||||||||||||||
actions={ primaryActions } | ||||||||||||||
registry={ registry } | ||||||||||||||
/> | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
return ( | ||||||||||||||
<HStack | ||||||||||||||
spacing={ 1 } | ||||||||||||||
|
@@ -212,29 +237,11 @@ export default function ItemActions< Item >( { | |||||||||||||
width: 'auto', | ||||||||||||||
} } | ||||||||||||||
> | ||||||||||||||
{ !! primaryActions.length && | ||||||||||||||
primaryActions.map( ( action ) => { | ||||||||||||||
if ( 'RenderModal' in action ) { | ||||||||||||||
return ( | ||||||||||||||
<ActionWithModal | ||||||||||||||
key={ action.id } | ||||||||||||||
action={ action } | ||||||||||||||
items={ [ item ] } | ||||||||||||||
ActionTrigger={ ButtonTrigger } | ||||||||||||||
/> | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
return ( | ||||||||||||||
<ButtonTrigger | ||||||||||||||
key={ action.id } | ||||||||||||||
action={ action } | ||||||||||||||
onClick={ () => { | ||||||||||||||
action.callback( [ item ], { registry } ); | ||||||||||||||
} } | ||||||||||||||
items={ [ item ] } | ||||||||||||||
/> | ||||||||||||||
); | ||||||||||||||
} ) } | ||||||||||||||
<PrimaryActions | ||||||||||||||
item={ item } | ||||||||||||||
actions={ primaryActions } | ||||||||||||||
registry={ registry } | ||||||||||||||
/> | ||||||||||||||
<CompactItemActions item={ item } actions={ eligibleActions } /> | ||||||||||||||
</HStack> | ||||||||||||||
); | ||||||||||||||
|
@@ -262,3 +269,36 @@ function CompactItemActions< Item >( { | |||||||||||||
</Menu> | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
function PrimaryActions< Item >( { | ||||||||||||||
item, | ||||||||||||||
actions, | ||||||||||||||
registry, | ||||||||||||||
}: PrimaryActionsProps< Item > ) { | ||||||||||||||
if ( ! Array.isArray( actions ) || actions.length === 0 ) { | ||||||||||||||
return null; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
return actions.map( ( action ) => { | ||||||||||||||
if ( 'RenderModal' in action ) { | ||||||||||||||
return ( | ||||||||||||||
<ActionWithModal | ||||||||||||||
key={ action.id } | ||||||||||||||
action={ action } | ||||||||||||||
items={ [ item ] } | ||||||||||||||
ActionTrigger={ ButtonTrigger } | ||||||||||||||
/> | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
return ( | ||||||||||||||
<ButtonTrigger | ||||||||||||||
key={ action.id } | ||||||||||||||
action={ action } | ||||||||||||||
onClick={ () => { | ||||||||||||||
action.callback( [ item ], { registry } ); | ||||||||||||||
} } | ||||||||||||||
items={ [ item ] } | ||||||||||||||
/> | ||||||||||||||
); | ||||||||||||||
} ); | ||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not inline the check?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That could work as well. No big feelings either way. I suppose I thought it better to have it explain the why.