aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2023-09-27 09:15:58 +0800
committerGitHub <noreply@github.com>2023-09-27 01:15:58 +0000
commit6967c13ad2de927f4d9bad65930db5fb383ca1d4 (patch)
tree303ec2535497b42f9cbf82d0a0dd49e006602c80 /web_src/js
parent709c2fad8a5c8f8dd270f9b291343d3a37d665e0 (diff)
downloadgitea-6967c13ad2de927f4d9bad65930db5fb383ca1d4.tar.gz
gitea-6967c13ad2de927f4d9bad65930db5fb383ca1d4.zip
Fix some animation bugs (#27287)
Fix #27286 Replace #27279
Diffstat (limited to 'web_src/js')
-rw-r--r--web_src/js/modules/fomantic.js72
1 files changed, 43 insertions, 29 deletions
diff --git a/web_src/js/modules/fomantic.js b/web_src/js/modules/fomantic.js
index 3d4a66c1ea..9b52a5d429 100644
--- a/web_src/js/modules/fomantic.js
+++ b/web_src/js/modules/fomantic.js
@@ -25,41 +25,55 @@ export function initGiteaFomantic() {
return escape(text, preserveHTML) + svg('octicon-x', 16, `${className.delete} icon`);
};
+ const transitionNopBehaviors = new Set([
+ 'clear queue', 'stop', 'stop all', 'destroy',
+ 'force repaint', 'repaint', 'reset',
+ 'looping', 'remove looping', 'disable', 'enable',
+ 'set duration', 'save conditions', 'restore conditions',
+ ]);
// stand-in for removed transition module
- $.fn.transition = function (arg) {
- if (arg === 'is supported') return true;
- if (arg === 'is animating') return false;
- if (arg === 'is inward') return false;
- if (arg === 'is outward') return false;
- if (arg === 'stop all') return;
+ $.fn.transition = function (arg0, arg1, arg2) {
+ if (arg0 === 'is supported') return true;
+ if (arg0 === 'is animating') return false;
+ if (arg0 === 'is inward') return false;
+ if (arg0 === 'is outward') return false;
- const isIn = arg?.animation?.endsWith(' in');
- const isOut = arg?.animation?.endsWith(' out');
+ let argObj;
+ if (typeof arg0 === 'string') {
+ // many behaviors are no-op now. https://fomantic-ui.com/modules/transition.html#/usage
+ if (transitionNopBehaviors.has(arg0)) return this;
+ // now, the arg0 is an animation name, the syntax: (animation, duration, complete)
+ argObj = {animation: arg0, ...(arg1 && {duration: arg1}), ...(arg2 && {onComplete: arg2})};
+ } else if (typeof arg0 === 'object') {
+ argObj = arg0;
+ } else {
+ throw new Error(`invalid argument: ${arg0}`);
+ }
- let ret;
- if (arg === 'show' || isIn) {
- arg?.onStart?.(this);
- ret = this.each((_, el) => {
+ const isAnimationIn = argObj.animation?.startsWith('show') || argObj.animation?.endsWith(' in');
+ const isAnimationOut = argObj.animation?.startsWith('hide') || argObj.animation?.endsWith(' out');
+ this.each((_, el) => {
+ let toShow = isAnimationIn;
+ if (!isAnimationIn && !isAnimationOut) {
+ // If the animation is not in/out, then it must be a toggle animation.
+ // Fomantic uses computed styles to check "visibility", but to avoid unnecessary arguments, here it only checks the class.
+ toShow = this.hasClass('hidden'); // maybe it could also check "!this.hasClass('visible')", leave it to the future until there is a real problem.
+ }
+ argObj.onStart?.call(el);
+ if (toShow) {
el.classList.remove('hidden');
- el.classList.add('visible');
- if (isIn) el.classList.add('transition');
- if (arg?.displayType) el.style.setProperty('display', arg.displayType, 'important');
- arg?.onShow?.(this);
- });
- arg?.onComplete?.(this);
- } else if (arg === 'hide' || isOut) {
- arg?.onStart?.(this);
- ret = this.each((_, el) => {
+ el.classList.add('visible', 'transition');
+ if (argObj.displayType) el.style.setProperty('display', argObj.displayType, 'important');
+ argObj.onShow?.call(el);
+ } else {
el.classList.add('hidden');
- el.classList.remove('visible');
- // don't remove the transition class because fomantic didn't do it either
+ el.classList.remove('visible'); // don't remove the transition class because the Fomantic animation style is `.hidden.transition`.
el.style.removeProperty('display');
- arg?.onHidden?.(this);
- });
- arg?.onComplete?.(this);
- }
-
- return ret;
+ argObj.onHidden?.call(el);
+ }
+ argObj.onComplete?.call(el);
+ });
+ return this;
};
initFomanticApiPatch();