UNPKG

gridstack-profile

Version:

TypeScript/JS lib for dashboard layout and creation, responsive, mobile support, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)

338 lines 15.5 kB
/** * dd-draggable.ts 8.2.1-dev * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ import { DDManager } from './dd-manager'; import { Utils } from './utils'; import { DDBaseImplement } from './dd-base-impl'; import { isTouch, touchend, touchmove, touchstart, pointerdown } from './dd-touch'; // make sure we are not clicking on known object that handles mouseDown const skipMouseDown = 'button,select,option,[contenteditable="true"],.ui-resizable-handle'; // let count = 0; // TEST class DDDraggable extends DDBaseImplement { constructor(el, option = {}) { super(); this.el = el; this.option = option; // get the element that is actually supposed to be dragged by let handleName = option.handle.substring(1); this.dragEl = el.classList.contains(handleName) ? el : el.querySelector(option.handle) || el; // create var event binding so we can easily remove and still look like TS methods (unlike anonymous functions) this._mouseDown = this._mouseDown.bind(this); this._mouseMove = this._mouseMove.bind(this); this._mouseUp = this._mouseUp.bind(this); this.enable(); } on(event, callback) { super.on(event, callback); } off(event) { super.off(event); } enable() { if (this.disabled === false) return; super.enable(); this.dragEl.addEventListener('mousedown', this._mouseDown); if (isTouch) { this.dragEl.addEventListener('touchstart', touchstart); this.dragEl.addEventListener('pointerdown', pointerdown); // this.dragEl.style.touchAction = 'none'; // not needed unlike pointerdown doc comment } this.el.classList.remove('ui-draggable-disabled'); } disable(forDestroy = false) { if (this.disabled === true) return; super.disable(); this.dragEl.removeEventListener('mousedown', this._mouseDown); if (isTouch) { this.dragEl.removeEventListener('touchstart', touchstart); this.dragEl.removeEventListener('pointerdown', pointerdown); } if (!forDestroy) this.el.classList.add('ui-draggable-disabled'); } destroy() { if (this.dragTimeout) window.clearTimeout(this.dragTimeout); delete this.dragTimeout; if (this.dragging) this._mouseUp(this.mouseDownEvent); this.disable(true); delete this.el; delete this.helper; delete this.option; super.destroy(); } updateOption(opts) { Object.keys(opts).forEach(key => this.option[key] = opts[key]); return this; } /** @internal call when mouse goes down before a dragstart happens */ _mouseDown(e) { // don't let more than one widget handle mouseStart if (DDManager.mouseHandled) return; if (e.button !== 0) return true; // only left click // make sure we are not clicking on known object that handles mouseDown, or ones supplied by the user if (e.target.closest(skipMouseDown)) return true; if (this.option.cancel) { if (e.target.closest(this.option.cancel)) return true; } // REMOVE: why would we get the event if it wasn't for us or child ? // make sure we are clicking on a drag handle or child of it... // Note: we don't need to check that's handle is an immediate child, as mouseHandled will prevent parents from also handling it (lowest wins) // let className = this.option.handle.substring(1); // let el = e.target as HTMLElement; // while (el && !el.classList.contains(className)) { el = el.parentElement; } // if (!el) return; this.mouseDownEvent = e; delete this.dragging; delete DDManager.dragElement; delete DDManager.dropElement; // document handler so we can continue receiving moves as the item is 'fixed' position, and capture=true so WE get a first crack document.addEventListener('mousemove', this._mouseMove, true); // true=capture, not bubble document.addEventListener('mouseup', this._mouseUp, true); if (isTouch) { this.dragEl.addEventListener('touchmove', touchmove); this.dragEl.addEventListener('touchend', touchend); } e.preventDefault(); // preventDefault() prevents blur event which occurs just after mousedown event. // if an editable content has focus, then blur must be call if (document.activeElement) document.activeElement.blur(); DDManager.mouseHandled = true; return true; } /** @internal method to call actual drag event */ _callDrag(e) { if (!this.dragging) return; const ev = Utils.initEvent(e, { target: this.el, type: 'drag' }); if (this.option.drag) { this.option.drag(ev, this.ui()); } this.triggerEvent('drag', ev); } /** @internal called when the main page (after successful mousedown) receives a move event to drag the item around the screen */ _mouseMove(e) { // console.log(`${count++} move ${e.x},${e.y}`) let s = this.mouseDownEvent; if (this.dragging) { this._dragFollow(e); // delay actual grid handling drag until we pause for a while if set if (DDManager.pauseDrag) { const pause = Number.isInteger(DDManager.pauseDrag) ? DDManager.pauseDrag : 100; if (this.dragTimeout) window.clearTimeout(this.dragTimeout); this.dragTimeout = window.setTimeout(() => this._callDrag(e), pause); } else { this._callDrag(e); } } else if (Math.abs(e.x - s.x) + Math.abs(e.y - s.y) > 3) { /** * don't start unless we've moved at least 3 pixels */ this.dragging = true; DDManager.dragElement = this; // if we're dragging an actual grid item, set the current drop as the grid (to detect enter/leave) let grid = this.el.gridstackNode?.grid; if (grid) { DDManager.dropElement = grid.el.ddElement.ddDroppable; } else { delete DDManager.dropElement; } this.helper = this._createHelper(e); this._setupHelperContainmentStyle(); this.dragOffset = this._getDragOffset(e, this.el, this.helperContainment); const ev = Utils.initEvent(e, { target: this.el, type: 'dragstart' }); this._setupHelperStyle(e); if (this.option.start) { this.option.start(ev, this.ui()); } this.triggerEvent('dragstart', ev); } e.preventDefault(); // needed otherwise we get text sweep text selection as we drag around return true; } /** @internal call when the mouse gets released to drop the item at current location */ _mouseUp(e) { document.removeEventListener('mousemove', this._mouseMove, true); document.removeEventListener('mouseup', this._mouseUp, true); if (isTouch) { this.dragEl.removeEventListener('touchmove', touchmove, true); this.dragEl.removeEventListener('touchend', touchend, true); } if (this.dragging) { delete this.dragging; // reset the drop target if dragging over ourself (already parented, just moving during stop callback below) if (DDManager.dropElement?.el === this.el.parentElement) { delete DDManager.dropElement; } this.helperContainment.style.position = this.parentOriginStylePosition || null; if (this.helper === this.el) { this._removeHelperStyle(); } else { this.helper.remove(); } const ev = Utils.initEvent(e, { target: this.el, type: 'dragstop' }); if (this.option.stop) { this.option.stop(ev); // NOTE: destroy() will be called when removing item, so expect NULL ptr after! } this.triggerEvent('dragstop', ev); // call the droppable method to receive the item if (DDManager.dropElement) { DDManager.dropElement.drop(e); } } delete this.helper; delete this.mouseDownEvent; delete DDManager.dragElement; delete DDManager.dropElement; delete DDManager.mouseHandled; e.preventDefault(); } /** @internal create a clone copy (or user defined method) of the original drag item if set */ _createHelper(event) { let helper = this.el; if (typeof this.option.helper === 'function') { helper = this.option.helper(event); } else if (this.option.helper === 'clone') { helper = Utils.cloneNode(this.el); } if (!document.body.contains(helper)) { Utils.appendTo(helper, this.option.appendTo === 'parent' ? this.el.parentElement : this.option.appendTo); } if (helper === this.el) { this.dragElementOriginStyle = DDDraggable.originStyleProp.map(prop => this.el.style[prop]); } return helper; } /** @internal set the fix position of the dragged item */ _setupHelperStyle(e) { this.helper.classList.add('ui-draggable-dragging'); // TODO: set all at once with style.cssText += ... ? https://stackoverflow.com/questions/3968593 const style = this.helper.style; style.pointerEvents = 'none'; // needed for over items to get enter/leave // style.cursor = 'move'; // TODO: can't set with pointerEvents=none ! (done in CSS as well) style['min-width'] = 0; // since we no longer relative to our parent and we don't resize anyway (normally 100/#column %) style.width = this.dragOffset.width + 'px'; style.height = this.dragOffset.height + 'px'; style.willChange = 'left, top'; style.position = 'fixed'; // let us drag between grids by not clipping as parent .grid-stack is position: 'relative' this._dragFollow(e); // now position it style.transition = 'none'; // show up instantly setTimeout(() => { if (this.helper) { style.transition = null; // recover animation } }, 0); return this; } /** @internal restore back the original style before dragging */ _removeHelperStyle() { this.helper.classList.remove('ui-draggable-dragging'); let node = this.helper?.gridstackNode; // don't bother restoring styles if we're gonna remove anyway... if (!node?._isAboutToRemove && this.dragElementOriginStyle) { let helper = this.helper; // don't animate, otherwise we animate offseted when switching back to 'absolute' from 'fixed'. // TODO: this also removes resizing animation which doesn't have this issue, but others. // Ideally both would animate ('move' would immediately restore 'absolute' and adjust coordinate to match, // then trigger a delay (repaint) to restore to final dest with animate) but then we need to make sure 'resizestop' // is called AFTER 'transitionend' event is received (see https://github.com/gridstack/gridstack.js/issues/2033) let transition = this.dragElementOriginStyle['transition'] || null; helper.style.transition = this.dragElementOriginStyle['transition'] = 'none'; // can't be NULL #1973 DDDraggable.originStyleProp.forEach(prop => helper.style[prop] = this.dragElementOriginStyle[prop] || null); setTimeout(() => helper.style.transition = transition, 50); // recover animation from saved vars after a pause (0 isn't enough #1973) } delete this.dragElementOriginStyle; return this; } /** @internal updates the top/left position to follow the mouse */ _dragFollow(e) { let containmentRect = { left: 0, top: 0 }; // if (this.helper.style.position === 'absolute') { // we use 'fixed' // const { left, top } = this.helperContainment.getBoundingClientRect(); // containmentRect = { left, top }; // } const style = this.helper.style; const offset = this.dragOffset; style.left = e.clientX + offset.offsetLeft - containmentRect.left + 'px'; style.top = e.clientY + offset.offsetTop - containmentRect.top + 'px'; } /** @internal */ _setupHelperContainmentStyle() { this.helperContainment = this.helper.parentElement; if (this.helper.style.position !== 'fixed') { this.parentOriginStylePosition = this.helperContainment.style.position; if (window.getComputedStyle(this.helperContainment).position.match(/static/)) { this.helperContainment.style.position = 'relative'; } } return this; } /** @internal */ _getDragOffset(event, el, parent) { // in case ancestor has transform/perspective css properties that change the viewpoint let xformOffsetX = 0; let xformOffsetY = 0; if (parent) { const testEl = document.createElement('div'); Utils.addElStyles(testEl, { opacity: '0', position: 'fixed', top: 0 + 'px', left: 0 + 'px', width: '1px', height: '1px', zIndex: '-999999', }); parent.appendChild(testEl); const testElPosition = testEl.getBoundingClientRect(); parent.removeChild(testEl); xformOffsetX = testElPosition.left; xformOffsetY = testElPosition.top; // TODO: scale ? } const targetOffset = el.getBoundingClientRect(); return { left: targetOffset.left, top: targetOffset.top, offsetLeft: -event.clientX + targetOffset.left - xformOffsetX, offsetTop: -event.clientY + targetOffset.top - xformOffsetY, width: targetOffset.width, height: targetOffset.height }; } /** @internal TODO: set to public as called by DDDroppable! */ ui() { const containmentEl = this.el.parentElement; const containmentRect = containmentEl.getBoundingClientRect(); const offset = this.helper.getBoundingClientRect(); return { position: { top: offset.top - containmentRect.top, left: offset.left - containmentRect.left } /* not used by GridStack for now... helper: [this.helper], //The object arr representing the helper that's being dragged. offset: { top: offset.top, left: offset.left } // Current offset position of the helper as { top, left } object. */ }; } } /** @internal properties we change during dragging, and restore back */ DDDraggable.originStyleProp = ['transition', 'pointerEvents', 'position', 'left', 'top', 'minWidth', 'willChange']; export { DDDraggable }; //# sourceMappingURL=dd-draggable.js.map