For my 2017 GSoC project, I've added four contextual menu items, which will be displayed whenever a user right clicks on a file in the file tree. They are:
New Folder
New File
Rename
Delete
Apart from Copy, Paste and Move contextual menu itens that I'm going to add shortly. Is there any other contextual menu item you would like me to add? I'm up for suggestions.
Valuable option.
To do this, I'm assuming I would have to zip the file(s) first, especially if it's a folder, then trigger the start of the download. I'm not sure if there are endpoints available for this. I might have to build those endpoints.
So should I separate Copy and Paste from Duplicate? they are essentially the same thing, except duplicate may only create a copy within the parent folder of the file.
as much as possible I would keep the names consistent between top menu and context menu.
I think "find in path..." is a useful context menu
the popup needs to have "apply" and "cancel" buttons.
if you have an download context menu I'd consider a "upload here" context menu. Since you might have a preexisting zip that should fit in a subdir. You might also want to upload single files
+1 ... though some of these things might be out of the scope of the original GSoC project it's worth keeping them in the backlog. @b4oshany ... thoughts?
I really like @espenmn's download feature.
@djay, I will add the download contextual menu to the list of additional features to do. I'm assuming that I can accomplish this by using JavaScript only, similar to how the search within files works, with the capability of zipping files on the client side. I will definitely, rename and take more consideration in the naming of menu items.
Just a note. There are some limitations with zipping on the client side. For large enough files client side zipping didn't work for us. This is why we ended up using server side zipping here:
Bear in mind that this was almost 3 years ago and things may have changed since then.