Skip to content
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

Merging in the disable-select-start PR #87

Closed
edsztukowski opened this issue Jun 4, 2020 · 3 comments
Closed

Merging in the disable-select-start PR #87

edsztukowski opened this issue Jun 4, 2020 · 3 comments

Comments

@edsztukowski
Copy link

Would you be willing to take a look at this PR soon? This library is really amazing, but this is the only thing causing issues for me at the moment. I'm integrating this with ReactDnD and need to be able to drag elements in addition to them being set as "selected" without the marquee.

Originally posted by @floifyed in #81 (comment)

@Jwrighty
Copy link

Have just switched over from react-selectable due to some of the performance issues and have this exact use case as well. Would be great to see this worked in

@edsztukowski
Copy link
Author

edsztukowski commented Jun 30, 2020

For what it's worth @Jwrighty, I sort of have a work around for this. In a parent component that contains <SelectableGroup> I have this state:

Parent State
const [ disableSelection, setDisableSelection ] = useState(false)

I pass down setDisableSelection to the children of <SelectableGroup> and am triggering it with onMouseEnter and onMouseLeave

Selectable Child
<div ref={props.selectableRef} onMouseEnter={(e) => props.setDisableSelection(true)} onMouseLeave={(e) => props.setDisableSelection(false)}>

The problem with this is that I also had to add an onClick event to this div to basically fake a selection on click, since it's disabling the ability to select.

@Jwrighty
Copy link

Jwrighty commented Jul 1, 2020

Thanks @edsztukowski this works perfectly, am already managing click selection state separately. Appreciate you looping back in on this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants