This commit is contained in:
jelveh
2025-08-15 23:01:34 -07:00
parent 91e6749645
commit 89dd335208
2 changed files with 53 additions and 1 deletions
+50
View File
@@ -22,6 +22,7 @@ import path from "../lib/path.js"
import UIAlert from './UIAlert.js'
import launch_app from '../helpers/launch_app.js'
import item_icon from '../helpers/item_icon.js'
import UIContextMenu from './UIContextMenu.js'
async function UIWindowSearch(options){
let h = '';
@@ -253,4 +254,53 @@ $(document).on('click', '.search-result', async function(e){
$(this).closest('.window').close();
})
// Context menu for search results
$(document).on('contextmenu', '.search-result', async function(e){
e.preventDefault();
e.stopPropagation();
const fspath = $(this).data('path');
const fsuid = $(this).data('uid');
const is_dir = $(this).attr('data-is_dir') === 'true' || $(this).data('is_dir') === '1';
// Get the parent directory path
const parent_path = path.dirname(fspath);
// Build context menu items
const menuItems = [
{
html: i18n('open'),
onClick: async function() {
// Trigger the same logic as clicking on the search result
$(e.target).trigger('click');
}
}
];
// Only add "Open enclosing folder" if we're not already at root
if (parent_path && parent_path !== fspath && parent_path !== '/') {
menuItems.push('-'); // divider
menuItems.push({
html: i18n('open_containing_folder'),
onClick: async function() {
// Open the enclosing folder
UIWindow({
path: parent_path,
title: path.basename(parent_path) || window.root_dirname,
icon: window.icons['folder.svg'],
is_dir: true,
app: 'explorer',
});
// Close search window
$(e.target).closest('.window').close();
}
});
}
UIContextMenu({
items: menuItems
});
})
export default UIWindowSearch
+3 -1
View File
@@ -496,7 +496,9 @@ const en = {
'window_folder_empty': 'This folder is empty',
// Website Management
'manage_your_subdomains': 'Manage Your Subdomains'
'manage_your_subdomains': 'Manage Your Subdomains',
'open_containing_folder': 'Open Containing Folder',
}
};