/** * @class MoveUpTune * @classdesc Editor's default tune that moves up selected block * * @copyright 2018 */ import $ from '../dom'; import { API, BlockTune } from '../../../types'; /** * */ export default class MoveUpTune implements BlockTune { /** * Set Tool is Tune */ public static readonly isTune = true; /** * Property that contains Editor.js API methods * * @see {@link docs/api.md} */ private readonly api: API; /** * Styles * * @type {{wrapper: string}} */ private CSS = { button: 'ce-settings__button', wrapper: 'ce-tune-move-up', animation: 'wobble', }; /** * MoveUpTune constructor * * @param {API} api - Editor's API */ constructor({ api }) { this.api = api; } /** * Create "MoveUp" button and add click event listener * * @returns {HTMLElement} */ public render(): HTMLElement { const moveUpButton = $.make('div', [this.CSS.button, this.CSS.wrapper], {}); moveUpButton.appendChild($.svg('arrow-up', 14, 14)); this.api.listeners.on( moveUpButton, 'click', (event) => this.handleClick(event as MouseEvent, moveUpButton), false ); /** * Enable tooltip module on button */ this.api.tooltip.onHover(moveUpButton, this.api.i18n.t('Move up')); return moveUpButton; } /** * Move current block up * * @param {MouseEvent} event - click event * @param {HTMLElement} button - clicked button */ public handleClick(event: MouseEvent, button: HTMLElement): void { const currentBlockIndex = this.api.blocks.getCurrentBlockIndex(); const currentBlock = this.api.blocks.getBlockByIndex(currentBlockIndex); const previousBlock = this.api.blocks.getBlockByIndex(currentBlockIndex - 1); if (currentBlockIndex === 0 || !currentBlock || !previousBlock) { button.classList.add(this.CSS.animation); window.setTimeout(() => { button.classList.remove(this.CSS.animation); }, 500); return; } const currentBlockElement = currentBlock.holder; const previousBlockElement = previousBlock.holder; /** * Here is two cases: * - when previous block has negative offset and part of it is visible on window, then we scroll * by window's height and add offset which is mathematically difference between two blocks * * - when previous block is visible and has offset from the window, * than we scroll window to the difference between this offsets. */ const currentBlockCoords = currentBlockElement.getBoundingClientRect(), previousBlockCoords = previousBlockElement.getBoundingClientRect(); let scrollUpOffset; if (previousBlockCoords.top > 0) { scrollUpOffset = Math.abs(currentBlockCoords.top) - Math.abs(previousBlockCoords.top); } else { scrollUpOffset = window.innerHeight - Math.abs(currentBlockCoords.top) + Math.abs(previousBlockCoords.top); } window.scrollBy(0, -1 * scrollUpOffset); /** Change blocks positions */ this.api.blocks.move(currentBlockIndex - 1); /** Hide the Tooltip */ this.api.tooltip.hide(); } }