mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
improve options&extensions menu display..again..
This commit is contained in:
@ -6233,46 +6233,39 @@ $(document).ready(function () {
|
||||
}
|
||||
});
|
||||
|
||||
let isAnimating = false;
|
||||
const optionsDiv = $("#options");
|
||||
const optionsButtonDiv = $("#options_button");
|
||||
var button = $('#options_button');
|
||||
var menu = $('#options');
|
||||
|
||||
function toggleOptions() {
|
||||
function showMenu() {
|
||||
showBookmarksButtons();
|
||||
if ((isAnimating) ||
|
||||
(optionsDiv.is(":visible") && optionsDiv.is(":hover"))) {
|
||||
return;
|
||||
}
|
||||
isAnimating = true;
|
||||
menu.stop().fadeIn(250);
|
||||
optionsPopper.update();
|
||||
optionsDiv.toggle(200, () => isAnimating = false);
|
||||
}
|
||||
|
||||
//show/hide options on hoverstate/click
|
||||
optionsButtonDiv.on('mouseenter click', () => {
|
||||
if (optionsDiv.is(':visible')) return;
|
||||
setTimeout(() => toggleOptions(), 200);
|
||||
function hideMenu() {
|
||||
menu.stop().fadeOut(250);
|
||||
optionsPopper.update();
|
||||
}
|
||||
|
||||
function isMouseOverButtonOrMenu() {
|
||||
return menu.is(':hover') || button.is(':hover');
|
||||
}
|
||||
|
||||
button.on('mouseenter click', function () { showMenu(); });
|
||||
button.on('mouseleave', function () {
|
||||
//delay to prevent menu hiding when mouse leaves button into menu
|
||||
setTimeout(() => {
|
||||
if (!isMouseOverButtonOrMenu()) { hideMenu(); }
|
||||
}, 100)
|
||||
});
|
||||
|
||||
optionsButtonDiv.on('mouseleave', () => {
|
||||
if (optionsDiv.is(':hidden')) return;
|
||||
setTimeout(() => toggleOptions(), 200);
|
||||
menu.on('mouseleave', function () {
|
||||
//delay to prevent menu hide when mouseleaves menu into button
|
||||
setTimeout(() => {
|
||||
if (!isMouseOverButtonOrMenu()) { hideMenu(); }
|
||||
}, 100)
|
||||
});
|
||||
|
||||
optionsDiv.on('mouseleave', () => {
|
||||
setTimeout(() => toggleOptions(), 200);
|
||||
})
|
||||
|
||||
//close options menu if open and user clicked outside it and button
|
||||
$(document).on('click touchend', (e) => {
|
||||
const target = e.target;
|
||||
if (![optionsDiv[0], optionsButtonDiv[0]].includes(target) &&
|
||||
!optionsDiv.is(':hover') &&
|
||||
!optionsButtonDiv.is(':hover') &&
|
||||
!isAnimating &&
|
||||
optionsDiv.is(":visible")) {
|
||||
setTimeout(() => toggleOptions(), 200);
|
||||
}
|
||||
$(document).on('click', function () {
|
||||
if (!isMouseOverButtonOrMenu() && menu.is(':visible')) { hideMenu(); }
|
||||
});
|
||||
|
||||
///////////// OPTIMIZED LISTENERS FOR LEFT SIDE OPTIONS POPUP MENU //////////////////////
|
||||
@ -6336,6 +6329,8 @@ $(document).ready(function () {
|
||||
}
|
||||
is_delete_mode = true;
|
||||
}
|
||||
console.log('clicked item, should hide options');
|
||||
hideMenu();
|
||||
});
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -236,7 +236,7 @@ function addExtensionsButtonAndMenu() {
|
||||
|
||||
$(button).on('click', function () {
|
||||
popper.update()
|
||||
dropdown.toggle(200);
|
||||
dropdown.fadeIn(250);
|
||||
});
|
||||
|
||||
$("html").on('touchstart mousedown', function (e) {
|
||||
@ -244,7 +244,7 @@ function addExtensionsButtonAndMenu() {
|
||||
if (dropdown.is(':visible')
|
||||
&& clickTarget.closest(button).length == 0
|
||||
&& clickTarget.closest(dropdown).length == 0) {
|
||||
$(dropdown).hide(200);
|
||||
$(dropdown).fadeOut(250);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -165,6 +165,9 @@ function onANMenuItemClick() {
|
||||
}, 250);
|
||||
|
||||
}
|
||||
//duplicate options menu close handler from script.js
|
||||
//because this listener takes priority
|
||||
$("#options").stop().fadeOut(250);
|
||||
} else {
|
||||
toastr.warning(`Select a character before trying to use Author's Note`, '', { timeOut: 2000 });
|
||||
}
|
||||
|
@ -583,8 +583,9 @@ function addSDGenButtons() {
|
||||
`
|
||||
const dropdownHtml = `
|
||||
<div id="sd_dropdown">
|
||||
<span>Send me a picture of:</span>
|
||||
|
||||
<ul class="list-group">
|
||||
<span>Send me a picture of:</span>
|
||||
<li class="list-group-item" id="sd_you" data-value="you">Yourself</li>
|
||||
<li class="list-group-item" id="sd_face" data-value="face">Your Face</li>
|
||||
<li class="list-group-item" id="sd_me" data-value="me">Me</li>
|
||||
@ -608,7 +609,7 @@ function addSDGenButtons() {
|
||||
messageButton.hide();
|
||||
|
||||
let popper = Popper.createPopper(button.get(0), dropdown.get(0), {
|
||||
placement: 'bottom',
|
||||
placement: 'top',
|
||||
});
|
||||
|
||||
$(document).on('click', '.sd_message_gen', sdMessageButton);
|
||||
@ -619,10 +620,10 @@ function addSDGenButtons() {
|
||||
if (target.is(button) && !dropdown.is(":visible") && $("#send_but").css('display') === 'flex') {
|
||||
e.preventDefault();
|
||||
|
||||
dropdown.show(200);
|
||||
dropdown.fadeIn(250);
|
||||
popper.update();
|
||||
} else {
|
||||
dropdown.hide(200);
|
||||
dropdown.fadeOut(250);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -562,7 +562,9 @@ hr {
|
||||
|
||||
.options-content a,
|
||||
#extensionsMenu>div,
|
||||
.list-group>div {
|
||||
.list-group>div,
|
||||
.list-group .list-group-item,
|
||||
#sd_dropdown .list-group span {
|
||||
color: var(--SmartThemeBodyColor);
|
||||
padding: 5px 5px;
|
||||
padding-bottom: 5px;
|
||||
|
Reference in New Issue
Block a user