Selecto

Selecto.js is a component that allows you to select elements in the drag ar...

README

src="https://img.shields.io/static/v1.svg?label=&message=Vue2&style=flat-square&color=3fb984">    alt="Vue"
src="https://img.shields.io/static/v1.svg?label=&message=Vue3&style=flat-square&color=3fb984">    alt="Svelte"
src="https://img.shields.io/static/v1.svg?label=&message=Svelte&style=flat-square&color=C82B38">    alt="Lit" src="https://img.shields.io/static/v1.svg?label=&message=Lit&style=flat-square&color=4E8EE0">

Selecto.js is a component that allows you to select elements in the drag area using the mouse or touch.

Demo / API / Main Project


⚙️ Installation

npm

  1. ``` sh
  2. $ npm install selecto
  3. ```

scripts


  1. ``` html
  2. <script src="//daybrush.com/selecto/release/latest/dist/selecto.min.js"></script>
  3. ```

🚀 How to use


Option Behaviors

If you want to prevent select from inside and no click
    selectFromInside: false
    selectByClick: false (default)
If you want to include it regardless of hitTest when selecting from the inside
    selectFromInside: true (default)
    selectByClick: true
If you want to finish right away (selectStart and selectEnd occur at the same time) without dragging when selecting from inside
    selectFromInside: false
    selectByClick: true
    preventDragFromInside: true (default)
    clickBySelectEnd: false (default)
If you want to selectEnd(click) after stopping drag and mouse(touch)
    selectFromInside: false
    selectByClick: true
    clickBySelectEnd: true

  1. ``` js
  2. import Selecto from "selecto";

  3. const selecto = new Selecto({
  4.     // The container to add a selection element
  5.     container: document.body,
  6.     // Selecto's root container (No transformed container. (default: null)
  7.     rootContainer: null,
  8.     // The area to drag selection element (default: container)
  9.     dragContainer: Element,
  10.     // Targets to select. You can register a queryselector or an Element.
  11.     selectableTargets: [".target", document.querySelector(".target2")],
  12.     // Whether to select by click (default: true)
  13.     selectByClick: true,
  14.     // Whether to select from the target inside (default: true)
  15.     selectFromInside: true,
  16.     // After the select, whether to select the next target with the selected target (deselected if the target is selected again).
  17.     continueSelect: false,
  18.     // Determines which key to continue selecting the next target via keydown and keyup.
  19.     toggleContinueSelect: "shift",
  20.     // The container for keydown and keyup events
  21.     keyContainer: window,
  22.     // The rate at which the target overlaps the drag area to be selected. (default: 100)
  23.     hitRate: 100,
  24. });

  25. selecto.on("select", e => {
  26.     e.added.forEach(el => {
  27.         el.classList.add("selected");
  28.     });
  29.     e.removed.forEach(el => {
  30.         el.classList.remove("selected");
  31.     });
  32. });
  33. ```

Do you want to select accurately?

Since selecto basically checks using getBoundingClientRect, it is not accurate if the object is rotated or distorted.

If you want to check accurately, use getElementRect option with the following code

See Example

  1. ```ts
  2. import Selecto from "selecto";
  3. import { getElementInfo } from "moveable"; // (13kb function) if you use react, use react-moveable

  4. const selecto = new Selecto({
  5.     ...,
  6.     // (target: HTMLElement | SVGElement ) => { pos1: number[], pos2: number[], pos3: number[], pos4: number[] }
  7.     // pos1: left top
  8.     // pos2: right top
  9.     // pos3: left bottom
  10.     // pos4: right bottom
  11.     getElementRect: getElementInfo,
  12. });
  13. ```

📦 Packages

|Package Name| Version |Description|
|---|---|---|
|[**react-selecto**](https://github.com/daybrush/selecto/tree/master/packages/react-selecto)|[![](https://img.shields.io/npm/v/react-selecto.svg?style=flat-square)](https://npmjs.com/package/react-selecto)|A
|[**ngx-selecto**](https://github.com/daybrush/selecto/tree/master/packages/ngx-selecto)|[![](https://img.shields.io/npm/v/ngx-selecto.svg?style=flat-square)](https://npmjs.com/package/ngx-selecto)|An
|[**vue-selecto**](https://github.com/daybrush/selecto/tree/master/packages/vue-selecto)|[![](https://img.shields.io/npm/v/vue-selecto.svg?style=flat-square)](https://npmjs.com/package/vue-selecto)|A
|[**vue3-selecto**](https://github.com/daybrush/selecto/tree/master/packages/vue3-selecto)|[![](https://img.shields.io/npm/v/vue3-selecto.svg?style=flat-square)](https://npmjs.com/package/vue-selecto)|A
|[**preact-selecto**](https://github.com/daybrush/selecto/tree/master/packages/preact-selecto)|[![](https://img.shields.io/npm/v/preact-selecto.svg?style=flat-square)](https://npmjs.com/package/preact-selecto)|A
|[**svelte-selecto**](https://github.com/daybrush/selecto/tree/master/packages/svelte-selecto)|[![](https://img.shields.io/npm/v/svelte-selecto.svg?style=flat-square)](https://npmjs.com/package/svelte-selecto)|A
|[**lit-selecto**](https://github.com/daybrush/selecto/tree/master/packages/lit-selecto)|[![](https://img.shields.io/npm/v/lit-selecto.svg?style=flat-square)](https://npmjs.com/package/lit-selecto)|A


⭐️ Show Your Support

Please give a ⭐️ if this project helped you!

👏 Contributing


If you have any questions or requests or want to contribute to selecto or other packages, please write the issue or give me a Pull Request freely.

🐞 Bug Report


If you find a bug, please report to us opening a new Issue on GitHub.


📝 License


This project is MIT licensed.

  1. ```
  2. MIT License

  3. Copyright (c) 2020 Daybrush

  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:

  10. The above copyright notice and this permission notice shall be included in all
  11. copies or substantial portions of the Software.

  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  18. SOFTWARE.
  19. ```