-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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: Implement isItemClickable
and onClickItem
props
#66365
Conversation
isClickable
and onClickable
propsisItemClickable
and onClickItem
props
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.
Tested this and it works well for me.
} | ||
}, | ||
tabIndex: isClickable ? 0 : undefined, | ||
onKeyDown: ( event: React.KeyboardEvent ) => { |
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.
Should make this undefined
if isClickable is false. Same for onClick prop
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.
There is an if inside both functions to ensure that the callback is invoked only when the item is clickable
.
gutenberg/packages/dataviews/src/dataviews-layouts/hooks/use-clickable-item-props.ts
Lines 25 to 32 in 507d60b
onKeyDown: ( event: React.KeyboardEvent ) => { | |
if ( | |
( event.key === 'Enter' || event.key === '' ) && | |
isClickable | |
) { | |
onClickItem( item ); | |
} | |
}, |
gutenberg/packages/dataviews/src/dataviews-layouts/hooks/use-clickable-item-props.ts
Lines 19 to 23 in 507d60b
onClick: () => { | |
if ( isClickable ) { | |
onClickItem( item ); | |
} | |
}, |
I'm fine with replacing both with something like this if you prefer:
onKeyDown: ! isClickable
? undefined
: ( event: React.KeyboardEvent ) => {
if ( event.key === 'Enter' || event.key === '' ) {
onClickItem( item );
}
},
onClick: ! isClickable
? undefined
: () => {
onClickItem( 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.
yeah I just thought avoiding the handlers on things that are not "button" would be best.
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.
Fixed with c9e418b!
packages/dataviews/src/dataviews-layouts/hooks/use-clickable-item-props.ts
Outdated
Show resolved
Hide resolved
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.
I want to acknowledge this is one possible approach, I know you folks are not entirely convinced. I'm not entirely ready to make this layout specific personally.
Would you be ok with moving forward here and judging this over time?
Co-authored-by: Riad Benguella <benguella@gmail.com>
The proposed approach works for me. Merging this PR will fix this regression: #66588. We can continue to iterate as needed 💪 |
isItemClickable
and onClickItem
propsisItemClickable
and onClickItem
props
@@ -64,6 +70,26 @@ | |||
overflow: hidden; | |||
} | |||
|
|||
.dataviews-view-grid__primary-field.dataviews-view-grid__primary-field--clickable |
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.
We want these styles to be applied to the title only if the layout supports the item being "clickable". Either we assume these classes become public API (so they should be stable) or we need to figure out better ways to do this.
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.
Thanks for your work on this, Luigi!
I find a bit problematic that consumers need to target dataviews internal classes (so they become public API). This is an area I'd like us to iterate on.
Other than that, I think we should try this approach to gauge whether it's good enough.
packages/dataviews/src/dataviews-layouts/hooks/use-clickable-item-props.ts
Outdated
Show resolved
Hide resolved
@@ -17,8 +17,13 @@ | |||
|
|||
.dataviews-view-grid__primary-field { | |||
min-height: $grid-unit-40; // Preserve layout when there is no ellipsis button | |||
|
|||
&--clickable { | |||
width: fit-content; |
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 is this needed, and why only for --clickable
?
packages/dataviews/src/dataviews-layouts/hooks/use-clickable-item-props.ts
Outdated
Show resolved
Hide resolved
@@ -17,8 +17,13 @@ | |||
|
|||
.dataviews-view-grid__primary-field { | |||
min-height: $grid-unit-40; // Preserve layout when there is no ellipsis button | |||
|
|||
&--clickable { |
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.
Is &--clickable
the best way to achieve this? We don't seem to do this in Gutenberg (we have only one occurrence of &--is-hex
). What does this do that couldn't be achieved by targeting &[role="button"]
?
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.
I agree the way this handles the classes needs to be iterated, see related conversation #66365 (comment)
In discussing with Riad IRL the idea was to land this PR and iterate.
I want to build on top of this PR, so I've pushed changes to address @mcsf feedback. This PR is not perfect and we need to iterate, but I'm going to merge to unblock related work. |
Thanks for addressing most of it, @oandregal! I'm quite fine with merging it as is. Let's address the rest afterwards. |
…ress#66365) Co-authored-by: gigitux <gigitux@git.wordpress.org> Co-authored-by: oandregal <oandregal@git.wordpress.org> Co-authored-by: louwie17 <louwie17@git.wordpress.org> Co-authored-by: youknowriad <youknowriad@git.wordpress.org> Co-authored-by: mcsf <mcsf@git.wordpress.org> Co-authored-by: jameskoster <jameskoster@git.wordpress.org>
What?
This PR fixes #66338.
This PR fixes #66588.
This PR adds two props to the Data Views library:
onClick
This callback is triggered when the user clicks on a media field or a primary field.
isClickable
This function determines if a media field or a primary field are clickable. It takes an item as an argument and returns a boolean value indicating whether the item can be clicked.
Why?
These two callbacks allow developers to implement click handlers for the media field and primary field at the consumer level, rather than within a specific field.
How?
Testing Instructions
Ensure that
Quick Edit in DataViews
andQuick Edit in DataViews
are enabled.Testing Instructions for Keyboard
Screenshots or screencast