-
Notifications
You must be signed in to change notification settings - Fork 16
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
Using default cursors #1411
Using default cursors #1411
Conversation
Your Render PR Server URL is https://gaming-ui-stage-pr-1411.onrender.com. Follow its progress at https://dashboard.render.com/static/srv-c45e20k7o9q5la7f56c0. |
Your Render PR Server URL is https://storage-ui-stage-pr-1411.onrender.com. Follow its progress at https://dashboard.render.com/static/srv-c45e2147o9q5la7f56lg. |
Your Render PR Server URL is https://files-ui-stage-pr-1411.onrender.com. Follow its progress at https://dashboard.render.com/static/srv-c45e21k7o9q5la7f5720. |
Hey Tanmoy, this looks good in macOS Chrome & Firefox, can see that the cursor is an arrow now when hovering over a folder. It only changes to a pointer when hovering over a checkbox or kebab menu icon which makes sense 🙂 This should reduce some confusion but still might not appease the users who don't like the double click. A suggestion that might be out of the context of this PR - perhaps we could consider adding a pointer when hovering over the folder name and making the folder name itself a single click to enter the folder? We can keep the double click if a user is hovering on the row. This is how folder navigation works in OneDrive but the current way is more similar to Google Drive. (cc @sweetpea22) |
@asnaith and @sweetpea22 I agree, let's continue the conversation in #1415 |
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.
Working well but I think the implementation can be changed to solve the ground problem rather than overriding it.
...es/files-ui/src/Components/Modules/FileBrowsers/views/FileSystemItem/FileSystemTableItem.tsx
Outdated
Show resolved
Hide resolved
…nsafe/ui-monorepo into mnt/navigation-cursors-1408
Yes makes sense! The UX you suggested is also used by dropbox. Will continue in #1415 |
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.
💯
@@ -171,7 +171,6 @@ const FileSystemTableItem = React.forwardRef( | |||
droppable: isFolder && (isOverMove || isOverUpload) | |||
})} | |||
type="grid" | |||
rowSelectable={true} |
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.
Dont we still want the rows selectable just with different cursors?
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.
The selectable
prop from what I could see only changed the cursor and allows an "onClick" prop that we don't use anyway. So having it to false doesn't seem to change the behavior and actually just acts on the cursor for us, which is nice.
closes #1408