mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
56 lines
1.6 KiB
JavaScript
56 lines
1.6 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import './select_dialogue';
|
|
import './create_dialogue';
|
|
import './storage_dialogue';
|
|
|
|
define('misc.file_manager', [
|
|
'sources/gettext', 'sources/url_for', 'jquery', 'underscore',
|
|
'sources/pgadmin', 'pgadmin.alertifyjs',
|
|
], function(gettext, url_for, $, _, pgAdmin, Alertify) {
|
|
pgAdmin = pgAdmin || window.pgAdmin || {};
|
|
|
|
/*
|
|
*
|
|
*
|
|
* Hmm... this module is already been initialized, we can refer to the old
|
|
* object from here.
|
|
*/
|
|
if (pgAdmin.FileManager) {
|
|
return pgAdmin.FileManager;
|
|
}
|
|
|
|
pgAdmin.FileManager = {
|
|
init: function() {
|
|
if (this.initialized) {
|
|
return;
|
|
}
|
|
|
|
this.initialized = true;
|
|
|
|
},
|
|
// Call dialogs subject to dialog_type param
|
|
show_dialog: function(params) {
|
|
let dialogWidth = pgAdmin.Browser.stdW.calc(pgAdmin.Browser.stdW.md);
|
|
let dialogHeight = pgAdmin.Browser.stdH.calc(pgAdmin.Browser.stdH.lg);
|
|
if (params.dialog_type == 'create_file') {
|
|
Alertify.createModeDlg(params).resizeTo(dialogWidth, dialogHeight);
|
|
} else if(params.dialog_type == 'storage_dialog') {
|
|
Alertify.fileStorageDlg(params).resizeTo(dialogWidth, dialogHeight);
|
|
}
|
|
else {
|
|
Alertify.fileSelectionDlg(params).resizeTo(dialogWidth, dialogHeight);
|
|
}
|
|
},
|
|
};
|
|
|
|
return pgAdmin.FileManager;
|
|
});
|