Merge pull request #15065 from light-and-ray/resizeHandle_handle_double_tap

resizeHandle handle double tap
This commit is contained in:
AUTOMATIC1111 2024-03-02 06:37:19 +03:00 committed by GitHub
commit 817d9b15f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
const GRADIO_MIN_WIDTH = 320; const GRADIO_MIN_WIDTH = 320;
const PAD = 16; const PAD = 16;
const DEBOUNCE_TIME = 100; const DEBOUNCE_TIME = 100;
const DOUBLE_TAP_DELAY = 200; //ms
const R = { const R = {
tracking: false, tracking: false,
@ -10,6 +11,7 @@
leftCol: null, leftCol: null,
leftColStartWidth: null, leftColStartWidth: null,
screenX: null, screenX: null,
lastTapTime: null,
}; };
let resizeTimer; let resizeTimer;
@ -47,6 +49,14 @@
} }
function setup(parent) { function setup(parent) {
function onDoubleClick(evt) {
evt.preventDefault();
evt.stopPropagation();
parent.style.gridTemplateColumns = parent.style.originalGridTemplateColumns;
}
const leftCol = parent.firstElementChild; const leftCol = parent.firstElementChild;
const rightCol = parent.lastElementChild; const rightCol = parent.lastElementChild;
@ -69,6 +79,14 @@
if (evt.button !== 0) return; if (evt.button !== 0) return;
} else { } else {
if (evt.changedTouches.length !== 1) return; if (evt.changedTouches.length !== 1) return;
const currentTime = new Date().getTime();
if (R.lastTapTime && currentTime - R.lastTapTime <= DOUBLE_TAP_DELAY) {
onDoubleClick(evt);
return;
}
R.lastTapTime = currentTime;
} }
evt.preventDefault(); evt.preventDefault();
@ -89,12 +107,7 @@
}); });
}); });
resizeHandle.addEventListener('dblclick', (evt) => { resizeHandle.addEventListener('dblclick', onDoubleClick);
evt.preventDefault();
evt.stopPropagation();
parent.style.gridTemplateColumns = parent.style.originalGridTemplateColumns;
});
afterResize(parent); afterResize(parent);
} }