mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 21:22:11 -03:00
88 lines
2.9 KiB
JavaScript
88 lines
2.9 KiB
JavaScript
export class LoraContextMenu {
|
|
constructor() {
|
|
this.menu = document.getElementById('loraContextMenu');
|
|
this.currentCard = null;
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
document.addEventListener('click', () => this.hideMenu());
|
|
document.addEventListener('contextmenu', (e) => {
|
|
const card = e.target.closest('.lora-card');
|
|
if (!card) {
|
|
this.hideMenu();
|
|
return;
|
|
}
|
|
e.preventDefault();
|
|
this.showMenu(e.clientX, e.clientY, card);
|
|
});
|
|
|
|
this.menu.addEventListener('click', (e) => {
|
|
const action = e.target.closest('.context-menu-item')?.dataset.action;
|
|
if (!action || !this.currentCard) return;
|
|
|
|
switch(action) {
|
|
case 'detail':
|
|
this.currentCard.querySelector('.info-button').click();
|
|
break;
|
|
case 'civitai':
|
|
this.currentCard.querySelector('.civitai-button').click();
|
|
break;
|
|
case 'copyname':
|
|
this.currentCard.querySelector('.copy-button').click();
|
|
break;
|
|
case 'preview':
|
|
this.currentCard.querySelector('.preview-button').click();
|
|
break;
|
|
case 'delete':
|
|
this.currentCard.querySelector('.delete-button').click();
|
|
break;
|
|
case 'move':
|
|
// To be implemented
|
|
console.log('Move to folder feature coming soon');
|
|
break;
|
|
}
|
|
|
|
this.hideMenu();
|
|
});
|
|
}
|
|
|
|
showMenu(x, y, card) {
|
|
this.currentCard = card;
|
|
this.menu.style.display = 'block';
|
|
|
|
// 使用客户端坐标,考虑滚动位置
|
|
const scrollY = window.scrollY || window.pageYOffset;
|
|
const scrollX = window.scrollX || window.pageXOffset;
|
|
|
|
// 获取菜单尺寸
|
|
const menuRect = this.menu.getBoundingClientRect();
|
|
|
|
// 获取视口尺寸
|
|
const viewportWidth = document.documentElement.clientWidth;
|
|
const viewportHeight = document.documentElement.clientHeight;
|
|
|
|
// 根据鼠标位置和菜单尺寸计算最终位置
|
|
let finalX = x;
|
|
let finalY = y;
|
|
|
|
// 确保菜单不会超出右侧边界
|
|
if (x + menuRect.width > viewportWidth) {
|
|
finalX = x - menuRect.width;
|
|
}
|
|
|
|
// 确保菜单不会超出底部边界
|
|
if (y + menuRect.height > viewportHeight) {
|
|
finalY = y - menuRect.height;
|
|
}
|
|
|
|
// 设置菜单位置,考虑滚动偏移
|
|
this.menu.style.left = `${finalX + scrollX}px`;
|
|
this.menu.style.top = `${finalY + scrollY}px`;
|
|
}
|
|
|
|
hideMenu() {
|
|
this.menu.style.display = 'none';
|
|
this.currentCard = null;
|
|
}
|
|
} |