X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/b030c1398bc909ebceec092907134da99b439695..refs/pull/4191/head:/resources/js/services/animations.js diff --git a/resources/js/services/animations.js b/resources/js/services/animations.js index 12b8077cf..bc983c807 100644 --- a/resources/js/services/animations.js +++ b/resources/js/services/animations.js @@ -5,6 +5,53 @@ */ const animateStylesCleanupMap = new WeakMap(); +/** + * Animate the css styles of an element using FLIP animation techniques. + * Styles must be an object where the keys are style properties, camelcase, and the values + * are an array of two items in the format [initialValue, finalValue] + * @param {Element} element + * @param {Object} styles + * @param {Number} animTime + * @param {Function} onComplete + */ +function animateStyles(element, styles, animTime = 400, onComplete = null) { + const styleNames = Object.keys(styles); + for (const style of styleNames) { + element.style[style] = styles[style][0]; + } + + const cleanup = () => { + for (const style of styleNames) { + element.style[style] = null; + } + element.style.transition = null; + element.removeEventListener('transitionend', cleanup); + animateStylesCleanupMap.delete(element); + if (onComplete) onComplete(); + }; + + setTimeout(() => { + element.style.transition = `all ease-in-out ${animTime}ms`; + for (const style of styleNames) { + element.style[style] = styles[style][1]; + } + + element.addEventListener('transitionend', cleanup); + animateStylesCleanupMap.set(element, cleanup); + }, 15); +} + +/** + * Run the active cleanup action for the given element. + * @param {Element} element + */ +function cleanupExistingElementAnimation(element) { + if (animateStylesCleanupMap.has(element)) { + const oldCleanup = animateStylesCleanupMap.get(element); + oldCleanup(); + } +} + /** * Fade in the given element. * @param {Element} element @@ -15,7 +62,7 @@ export function fadeIn(element, animTime = 400, onComplete = null) { cleanupExistingElementAnimation(element); element.style.display = 'block'; animateStyles(element, { - opacity: ['0', '1'] + opacity: ['0', '1'], }, animTime, () => { if (onComplete) onComplete(); }); @@ -30,7 +77,7 @@ export function fadeIn(element, animTime = 400, onComplete = null) { export function fadeOut(element, animTime = 400, onComplete = null) { cleanupExistingElementAnimation(element); animateStyles(element, { - opacity: ['1', '0'] + opacity: ['1', '0'], }, animTime, () => { element.style.display = 'none'; if (onComplete) onComplete(); @@ -113,50 +160,3 @@ export function transitionHeight(element, animTime = 400) { animateStyles(element, animStyles, animTime); }; } - -/** - * Animate the css styles of an element using FLIP animation techniques. - * Styles must be an object where the keys are style properties, camelcase, and the values - * are an array of two items in the format [initialValue, finalValue] - * @param {Element} element - * @param {Object} styles - * @param {Number} animTime - * @param {Function} onComplete - */ -function animateStyles(element, styles, animTime = 400, onComplete = null) { - const styleNames = Object.keys(styles); - for (let style of styleNames) { - element.style[style] = styles[style][0]; - } - - const cleanup = () => { - for (let style of styleNames) { - element.style[style] = null; - } - element.style.transition = null; - element.removeEventListener('transitionend', cleanup); - animateStylesCleanupMap.delete(element); - if (onComplete) onComplete(); - }; - - setTimeout(() => { - element.style.transition = `all ease-in-out ${animTime}ms`; - for (let style of styleNames) { - element.style[style] = styles[style][1]; - } - - element.addEventListener('transitionend', cleanup); - animateStylesCleanupMap.set(element, cleanup); - }, 15); -} - -/** - * Run the active cleanup action for the given element. - * @param {Element} element - */ -function cleanupExistingElementAnimation(element) { - if (animateStylesCleanupMap.has(element)) { - const oldCleanup = animateStylesCleanupMap.get(element); - oldCleanup(); - } -} \ No newline at end of file