WORK IN PROGRESS
Draggable does not use this sensor by default
Picks up browser force touch events and triggers the events below on a source container. This sensor only works for Macbook Pros with force touch trackpads
drag:start
drag:move
drag:stop
drag:pressure
new ForceTouchSensor(containers: HTMLElement[]|NodeList|HTMLElement, options: Object): ForceTouchSensor
To create a force touch sensor, specify the containers it should pay attention to. Sensors will always
trigger sensor events on container element.
forceTouchSensor.attach(): void
Attaches sensors to the DOM
forceTouchSensor.detach(): void
Detaches sensors to the DOM
delay {Number}
This value will delay force touch start
When used in Safari with force touch track pad, make sure to add visual guidelines to the user to indicate that force needs to be used to start drag operation.
import {Draggable, Sensors} from '@shopify/draggable';
const draggable = new Draggable(containers, {
sensors: [Sensors.ForceTouchSensor],
});