1) Port the file/storage manager to React. Fixes #7313

2) Allow users to delete files/folders from the storage manager. Fixes #4607
3) Allow users to search within the file/storage manager. Fixes #7389
4) Fixed an issue where new folders cannot be created in the save dialog. Fixes #7524
This commit is contained in:
Aditya Toshniwal
2022-07-19 15:27:47 +05:30
committed by Akshay Joshi
parent 4585597388
commit 4808df5e95
76 changed files with 2907 additions and 3927 deletions

View File

@@ -9,7 +9,7 @@
define('misc.bgprocess', [
'sources/pgadmin', 'sources/gettext', 'sources/url_for', 'underscore',
'jquery', 'pgadmin.browser', 'alertify',
'jquery', 'pgadmin.browser', 'alertify', 'pgadmin.tools.file_manager',
], function(
pgAdmin, gettext, url_for, _, $, pgBrowser, Alertify
) {
@@ -625,9 +625,7 @@ define('misc.bgprocess', [
var self = this;
if(self.current_storage_dir) {
pgBrowser.Events.trigger(
'pgadmin:tools:storage_manager', self.current_storage_dir
);
pgAdmin.Tools.FileManager.openStorageManager(self.current_storage_dir);
}
},
});