Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/landing/history/src/internal/ |
Upload File : |
import {PENDING, REDO, RESOLVED, UNDO} from './constants'; import type {History} from '../history'; /** * Offsets history by offset length * @param {History} history * @param {Integer} offsetValue */ export default function offset(history: History, offsetValue: number): Promise<History> { if (history.commandState === PENDING) { return Promise.resolve(history); } let position = history.position + offsetValue; let {state} = history; if (offsetValue < 0 && history.state !== UNDO) { position += 1; state = UNDO; } if (offsetValue > 0 && history.state !== REDO) { position -= 1; state = REDO; } if (position <= history.stack.length - 1 && position >= 0) { history.position = position; history.state = state; const entry = history.stack[position]; if (entry) { const command = history.commands[entry.command]; if (command) { history.commandState = PENDING; return command[state](entry) .then(() => { history.commandState = RESOLVED; return history; }) .catch(() => { history.commandState = RESOLVED; return offset(history, offsetValue); }); } } } return Promise.resolve(history); }