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

Added 'disableSelectStartList' to disable select start on certain items #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ The `<SelectableGroup />` component accepts a few optional props:
- `mixedDeselect` (Boolean) When enabled items can be selected and deselected with selectbox at the same time, `enableDeselect` should be set to `true`.
- `scrollContainer` (String) Selector of scroll container which will be used to calculate selectbox position. If not specified SelectableGroup element will be used as scroll container.
- `ignoreList` (Array) Array of ignored selectors.
- `disableSelectStartList` (Array) Array of selectors where select lasso can not be started by dragging mouse. Useful if you want to enable drag of selectables.
- `clickableClassName` (String) On elements with specified selector click item containing this element will be selected.
- `tolerance` (Number) The amount of buffer to add around your `<SelectableGroup />` container, in pixels.
- `className` (String) Class of selectable group element.
Expand Down
41 changes: 41 additions & 0 deletions src/SelectableGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ type TProcessItemOptions = TSelectItemsOptions & {
export type TSelectableGroupProps = {
globalMouse?: boolean
ignoreList?: string[]
disableSelectStartList?: string[]
scrollSpeed?: number
minimumSpeedFactor?: number
allowClickWithoutSelected?: boolean
Expand Down Expand Up @@ -92,6 +93,7 @@ class SelectableGroup extends Component<TSelectableGroupProps> {
tolerance: 0,
globalMouse: false,
ignoreList: [],
disableSelectStartList: [],
scrollSpeed: 0.25,
minimumSpeedFactor: 60,
duringSelection: noop,
Expand Down Expand Up @@ -146,6 +148,12 @@ class SelectableGroup extends Component<TSelectableGroupProps> {

ignoreListNodes: HTMLElement[] = []

disableSelectStartCheckCache = new Map<HTMLElement, boolean>()

disableSelectStartList = this.props.disableSelectStartList!

disableSelectStartListNodes: HTMLElement[] = []

selectbox: Maybe<Selectbox> = null

selectableGroup: Maybe<HTMLElement> = null
Expand Down Expand Up @@ -471,10 +479,36 @@ class SelectableGroup extends Component<TSelectableGroupProps> {
return shouldBeIgnored
}

isInDisableSelectStartList(target: HTMLElement | null) {
if (!target) {
return
}

if (this.disableSelectStartCheckCache.get(target) !== undefined) {
return this.disableSelectStartCheckCache.get(target)
}

const shouldBeIgnored = this.disableSelectStartListNodes.some(
disableSelectStartNode =>
target === disableSelectStartNode || disableSelectStartNode.contains(target)
)

this.disableSelectStartCheckCache.set(target, shouldBeIgnored)

return shouldBeIgnored
}

updateWhiteListNodes() {
this.ignoreListNodes = Array.from(document.querySelectorAll(this.ignoreList.join(', ')))
}

updateDisableSelectStartListNodes() {
this.disableSelectStartListNodes =
this.disableSelectStartList.length > 0
? Array.from(document.querySelectorAll(this.disableSelectStartList.join(', ')))
: []
}

mouseDown = (e: Event) => {
const isNotLeftButtonClick =
!e.type.includes('touch') &&
Expand All @@ -489,13 +523,20 @@ class SelectableGroup extends Component<TSelectableGroupProps> {
}

this.updateWhiteListNodes()
this.updateDisableSelectStartListNodes()

if (this.isInIgnoreList(e.target as HTMLElement)) {
this.mouseDownStarted = false

return
}

if (this.isInDisableSelectStartList(e.target as HTMLElement)) {
this.mouseDownStarted = false

return
}

if (this.props.resetOnStart) {
this.clearSelection()
}
Expand Down
4 changes: 4 additions & 0 deletions website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,10 @@ <h3>
scroll container.
</li>
<li><code>ignoreList</code> (Array) Array of ignored selectors.</li>
<li>
<code>disableSelectStartList</code> (Array) Array of selectors where select lasso can not
be started by dragging mouse. Useful if you want to enable drag of selectables.
</li>
<li>
<code>clickableClassName</code> (String) On element with specified selector click item
cotaining this element will be selected.
Expand Down